/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, #1a1a2e, #0f0f1a);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 1. Interactive Cursor Glow Layer */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* ================= HEADER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link { text-decoration: none; }

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff0055, #6600ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.1s ease-out;
    display: inline-block;
}

nav a {
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ff0055, #6600ff);
    transition: 0.3s ease;
}

nav a:hover { color: #ff0055; }
nav a:hover::after { width: 100%; }

/* ================= HERO & VISUALIZER ================= */
.hero {
    text-align: center;
    padding: 80px 20px;
    flex: 1;
}

.visualizer-container {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#visualizer {
    width: 350px;
    height: 100%;
    filter: drop-shadow(0 0 12px #ff0055);
}

.play-btn {
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #ff0055, #6600ff);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

/* ================= JINGLES ================= */
.jingle-container {
    text-align: center;
    margin: 20px auto;
}

.jingle-btn.icon-only {
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jingle-btn.icon-only:hover {
    background: linear-gradient(45deg, #ff0055, #6600ff);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 0, 85, 0.5);
}

.flag-img { width: 35px; height: auto; pointer-events: none; }

/* ================= ABOUT SECTION ================= */
.about {
    position: relative;
    margin: 60px;
    padding: 80px 40px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    text-align: center;
}

.about::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,0,85,0.15), transparent 60%);
    animation: rotateGlow 12s linear infinite;
    z-index: 1;
}

.about-content { position: relative; z-index: 2; }

/* ================= CONTACT PAGE (RESTORED) ================= */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 80px 20px;
}

form {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 50px 40px;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

/* The Animated Glowing Border around Form */
form::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff0055, #6600ff, #00ffe0);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    animation: contactGlow 6s linear infinite;
}

@keyframes contactGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Inputs Visibility Fix */
input, textarea {
    width: 100%;
    margin: 15px 0;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
    font-family: inherit;
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

form button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #ff0055, #6600ff);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover { transform: scale(1.02); box-shadow: 0 0 15px #ff0055; }

/* ================= FOOTER ================= */
footer {
    padding: 40px;
    text-align: center;
    background: rgba(0,0,0,0.8);
    margin-top: auto;
}