        :root {
            --primary: #6200ea;
            --secondary: #03dac6;
            --dark: #121212;
            --light: #ffffff;
            --gradient: linear-gradient(90deg, #6200ea, #bb86fc);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            padding: 20px 0;
            width: 100%;
            top: 0;
            z-index: 100;
            background-color: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.7em;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        .btn {
            background: var(--gradient);
            color: var(--light);
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(98, 0, 234, 0.3);
        }
        
        .btnlisten {
            background: var(--gradient);
            color: var(--light);
            padding: 2px 12px;
            margin: 2px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btnlisten:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(98, 0, 234, 0.3);
        }
        
         a {
            color: #8ac0f6;
            text-decoration: none;
            transition: color 0.3s ease;
            }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('crowd.jpeg') no-repeat center center/cover;
            filter: brightness(40%);
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex-basis: 30%;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(98, 0, 234, 0.2);
        }
        
        .step-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .step h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Duel Preview Section */
        .duel-preview {
            padding: 100px 0;
            background-color: rgba(255, 255, 255, 0.02);
        }
        
        .duel-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            perspective: 1000px;
        }
        
        .duel-card {
            flex: 1;
            max-width: 350px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.5s;
            position: relative;
        }
        
        .duel-card:hover {
            transform: rotateY(10deg);
        }
        
        .card-image {
            width: 100%;
            height: 200px;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: var(--secondary);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .vote-btn {
            width: 100%;
            margin-top: 20px;
            background: var(--gradient);
            color: var(--light);
            padding: 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        
        .vote-btn:hover {
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        footer {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex-basis: 23%;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient);
            border-radius: 1.5px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            font-size: 18px;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
 form {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

iframe {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #1eba54;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}

button:hover {
    background-color: #1ed760;
}


.musiccontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.song-card {
    background: #1e192b;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 320px;
}

.video-card {
    background: #1e192b;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 420px;
}

.resultscontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    
}



.results-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .step {
                flex-basis: 45%;
            }
            
            .duel-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .duel-card {
                max-width: 450px;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .step {
                flex-basis: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-column {
                flex-basis: 48%;
            }
            
            .mobile-menu {
                display: block;
                font-size: 24px;
                cursor: pointer;
            }
            
            nav {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .footer-column {
                flex-basis: 100%;
            }
        }
        
        
@media (max-width: 768px) {
    .musiccontainer form {
        flex-direction: column;
        align-items: center;
    }

    .song-card {
        width: 100%;
        padding: 0;
        max-width: 350px;
    }

    iframe {
        width: 100%;
        height: 152px;
    }
}

 .vote-button:disabled {
            background-color: gray !important;
            cursor: not-allowed;
        }

   