:root {
            --primary: #C41E3A;
            --secondary: #1a1a1a;
            --accent: #FFD700;
            --text-light: #f5f5f5;
            --text-dark: #1a1a1a;
            --gradient-1: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
            --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #0a0a0a;
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(10px);
            padding: 0.8rem 5%;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            animation: slideDown 0.8s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.8rem;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 3px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 5% 50px;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-text h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 0.9;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .hero-text p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #cccccc;
            font-weight: 300;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-image .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: rotate(-2deg);
            transition: transform 0.5s ease;
        }

        .hero-image .image-container:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(20%) contrast(110%);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: var(--gradient-1);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1px;
            text-align: center;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--text-light);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(196, 30, 58, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        /* Stats Bar */
        .stats-bar {
            background: rgba(196, 30, 58, 0.1);
            padding: 2rem 5%;
            border-top: 1px solid rgba(196, 30, 58, 0.3);
            border-bottom: 1px solid rgba(196, 30, 58, 0.3);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #cccccc;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 6rem 5%;
            background: var(--gradient-2);
        }

        .timeline-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 6vw, 4rem);
            text-align: center;
            margin-bottom: 3rem;
            color: var(--accent);
            letter-spacing: 5px;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--primary);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            animation: fadeInUp 1s ease;
        }

        .timeline-year {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .timeline-content p {
            color: #cccccc;
            line-height: 1.8;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            border: 4px solid var(--secondary);
            box-shadow: 0 0 0 4px var(--primary);
        }

        /* About Section */
        .about {
            padding: 6rem 5%;
            background: #0a0a0a;
        }

        .about .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: fadeInUp 1s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(196, 30, 58, 0.2), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(196, 30, 58, 0.1);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
        }

        .about-card h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .about-card p {
            color: #cccccc;
            line-height: 1.8;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Social Media Section */
        .social-media-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }

        .social-media-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(196, 30, 58, 0.1), transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
            pointer-events: none;
        }

        .social-media-section .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .social-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #cccccc;
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .social-media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .social-media-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .social-media-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-media-card:hover::before {
            opacity: 1;
        }

        .social-media-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .social-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .social-icon svg {
            width: 50px;
            height: 50px;
            transition: all 0.4s ease;
        }

        .social-media-card:hover .social-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .social-media-card:hover .social-icon svg {
            transform: scale(1.1);
        }

        /* Facebook Styling */
        .social-media-card.facebook .social-icon {
            background: linear-gradient(135deg, #1877F2 0%, #0d5dbf 100%);
            box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
        }

        .social-media-card.facebook .social-icon svg {
            color: white;
        }

        .social-media-card.facebook:hover {
            border-color: #1877F2;
            box-shadow: 0 20px 60px rgba(24, 119, 242, 0.4);
        }

        .social-media-card.facebook h3 {
            color: #1877F2;
        }

        /* Instagram Styling */
        .social-media-card.instagram .social-icon {
            background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
            box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
        }

        .social-media-card.instagram .social-icon svg {
            color: white;
        }

        .social-media-card.instagram:hover {
            border-color: #E1306C;
            box-shadow: 0 20px 60px rgba(225, 48, 108, 0.4);
        }

        .social-media-card.instagram h3 {
            background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* YouTube Styling */
        .social-media-card.youtube .social-icon {
            background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
        }

        .social-media-card.youtube .social-icon svg {
            color: white;
        }

        .social-media-card.youtube:hover {
            border-color: #FF0000;
            box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
        }

        .social-media-card.youtube h3 {
            color: #FF0000;
        }

        /* Twitter/X Styling */
        .social-media-card.twitter .social-icon {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .social-media-card.twitter .social-icon svg {
            color: white;
        }

        .social-media-card.twitter:hover {
            border-color: #000000;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        }

        .social-media-card.twitter h3 {
            color: #ffffff;
        }

        .social-info h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .social-handle {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .social-followers {
            color: #cccccc;
            font-size: 0.95rem;
            font-weight: 300;
        }

        /* Pulse animation for icons */
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            }
            50% {
                box-shadow: 0 10px 50px rgba(255, 215, 0, 0.6);
            }
        }

        .social-media-card:hover .social-icon {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Vote Section */
        .vote-section {
            padding: clamp(6rem, 10vw, 10rem) 5%;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .vote-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .vote-section .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .vote-section h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3rem, 8vw, 6rem);
            color: var(--text-light);
            margin-bottom: 2rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            letter-spacing: 8px;
            animation: slideInScale 1s ease;
        }

        @keyframes slideInScale {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .vote-section p {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            margin-bottom: 3rem;
            color: var(--text-light);
            font-weight: 300;
            line-height: 1.8;
        }

        .vote-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: rgba(0, 0, 0, 0.3);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: scale(1.05);
            border-color: var(--accent);
            background: rgba(0, 0, 0, 0.5);
        }

        .stat-number {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .btn-vote {
            background: var(--accent);
            color: var(--secondary);
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            padding: 1.5rem 4rem;
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4); }
            50% { box-shadow: 0 15px 70px rgba(255, 215, 0, 0.7); }
        }

        .btn-vote:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.8);
        }

        /* Music Section */
        .music {
            padding: 6rem 5%;
            background: #0a0a0a;
        }

        .music .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .music-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(58, 58, 58, 0.9) 100%);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 1s ease;
            transform-style: preserve-3d;
            position: relative;
        }

        .music-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.15), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .music-card:hover::before {
            opacity: 1;
        }

        .music-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 60px rgba(196, 30, 58, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
            border-color: var(--primary);
        }

        .music-card-image {
            height: 200px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-light);
            letter-spacing: 3px;
            position: relative;
            overflow: hidden;
        }

        .music-card-image::after {
            content: '▶';
            position: absolute;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .music-card:hover .music-card-image::after {
            opacity: 1;
        }

        .music-card-content {
            padding: 2rem;
        }

        .music-card h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--accent);
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .music-card .year {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .music-card .views {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .music-card .views::before {
            content: '👁';
            font-size: 1.2rem;
        }

        .music-card p {
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .music-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: rgba(196, 30, 58, 0.2);
            color: var(--accent);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(196, 30, 58, 0.3);
        }

        /* Achievements Section */
        .achievements {
            padding: 6rem 5%;
            background: var(--gradient-2);
        }

        .achievements .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .achievement-card {
            background: rgba(255, 215, 0, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--accent);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .achievement-card:hover::before {
            opacity: 1;
        }

        .achievement-card:hover {
            transform: translateX(10px) scale(1.02);
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .achievement-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .achievement-card h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .achievement-card p {
            color: #cccccc;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: #0a0a0a;
        }

        .contact .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            animation: fadeInLeft 1s ease;
        }

        .contact-info h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: var(--accent);
            margin-bottom: 2rem;
            letter-spacing: 3px;
        }

        .contact-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(196, 30, 58, 0.1);
            transform: translateX(10px);
        }

        .contact-item h4 {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item p {
            color: #cccccc;
            font-size: 1rem;
        }

        .contact-item a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--accent);
        }

        .contact-form {
            animation: fadeInRight 1s ease;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: var(--text-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: #000;
            padding: 3rem 5%;
            text-align: center;
            border-top: 2px solid var(--primary);
        }

        footer p {
            color: #888;
            font-size: 0.9rem;
        }

        footer .tagline {
            color: var(--accent);
            font-weight: 700;
            margin-top: 1rem;
            font-size: 1.1rem;
            font-style: italic;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 60px);
                background: rgba(26, 26, 26, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s ease;
                gap: 1.5rem;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-image::before {
                display: none;
            }

            .hero-image .image-container {
                transform: rotate(0);
            }

            .cta-buttons {
                justify-content: center;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                flex-direction: column !important;
                padding-left: 50px;
            }

            .timeline-content {
                width: 100%;
            }

            .timeline-dot {
                left: 20px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .vote-section {
                padding: 4rem 5%;
            }
        }

        @media (max-width: 640px) {
            .stats-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .music-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }

            .social-media-grid {
                grid-template-columns: 1fr;
            }

            .social-media-card {
                padding: 2rem 1.5rem;
            }

            .social-icon {
                width: 80px;
                height: 80px;
            }

            .social-icon svg {
                width: 40px;
                height: 40px;
            }

            .btn {
                width: 100%;
            }
        }
        
        