body {
    background-color: #000;
    color: #0ff;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.radio-display {
    background: rgba(0, 20, 30, 0.7);
    border: 2px solid #0ff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.radio-display::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(0, 255, 255, 0) 20%, 
        rgba(0, 255, 255, 0.1) 40%, 
        rgba(0, 255, 255, 0) 60%, 
        rgba(0, 255, 255, 0.1) 80%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    border-radius: 15px;
}

h1, h2 {
    color: #0ff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
    border-bottom: 1px solid #0ff;
    padding-bottom: 5px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #0ff;
    object-fit: cover;
    margin-right: 20px;
}

.header-content {
    display: flex;
    align-items: center;
}

.flag {
    width: 100px;
    height: auto;
    margin-left: 20px;
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.brand-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 3px #0ff);
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.glass-text {
    background: rgba(0, 50, 70, 0.3);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #0ff;
    margin: 15px 0;
    backdrop-filter: blur(5px);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #0ff;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.freq-display {
    background: #001a1a;
    border: 1px solid #0ff;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
    margin: 5px;
    font-family: 'Digital', monospace;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .profile-img {
        margin: 0 0 20px 0;
    }
    
    .flag {
        margin: 20px 0 0 0;
    }
}
