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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Header/Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 5%;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: #000;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(Assets/Images/Hero_Image/);
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            padding: 2rem;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 1.5rem;
            letter-spacing: -3px;
        }

        .hero p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            text-transform: uppercase;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 2px solid #fff;
        }

        .cta-button:hover {
            background: transparent;
            color: #fff;
        }

        /* About Section */
        .about {
            padding: 8rem 5%;
            background: #000;
            color: #fff;
            border-bottom: 1px solid #222;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about .section-title {
            color: #fff;
            margin-bottom: 2.5rem;
        }

        .about-text {
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* Gallery Section */
        .gallery {
            padding: 8rem 5%;
            background: #fff;
            color: #000;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 4rem;
            opacity: 0.7;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .show-card {
            background: #000;
            color: #fff;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            border: 1px solid #000;
        }

        .show-card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .show-card:hover {
            transform: translateY(-10px);
        }

        .show-image {
            width: 100%;
            height: 0;
            padding-bottom: 75%; /* 4:3 aspect ratio (3/4 = 0.75 = 75%) */
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            display: block;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #333;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            transition: filter 0.4s ease;
            cursor: pointer;
        }

        .show-card:hover .show-image {
            filter: grayscale(0%);
        }

        /* YouTube play button cursor effect */
        .show-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 0, 0, 0.9);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .show-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-40%, -50%);
            width: 0;
            height: 0;
            border-left: 30px solid white;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            pointer-events: none;
        }

        .show-card:hover .show-image::after,
        .show-card:hover .show-image::before {
            opacity: 1;
        }

        /* Spotify logo for tile 4 (Caffeinated Intelligence) */
        .show-card:nth-child(4) .show-image::after {
            background: #1DB954; /* Spotify green */
            width: 90px;
            height: 90px;
        }

        .show-card:nth-child(4) .show-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border: none;
            z-index: 2;
        }

        /* Disable hover effects for last 2 tiles (Coming Soon) */
        .show-card:nth-child(5):hover .show-image,
        .show-card:nth-child(6):hover .show-image {
            filter: grayscale(100%);
        }

        .show-card:nth-child(5):hover .show-image::after,
        .show-card:nth-child(5):hover .show-image::before,
        .show-card:nth-child(6):hover .show-image::after,
        .show-card:nth-child(6):hover .show-image::before {
            opacity: 0;
        }

        .show-card:nth-child(5) .show-image,
        .show-card:nth-child(6) .show-image {
            cursor: default;
        }

        .show-info {
            padding: 2rem;
        }

        .show-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }

        .show-info p {
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.8;
        }

        .show-meta {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.6;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 5%;
            background: #000;
            text-align: center;
        }

        .contact .section-title {
            color: #fff;
            margin-bottom: 2rem;
        }

        .contact p {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 3rem;
            opacity: 0.8;
        }

        .contact-email {
            display: inline-block;
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 1rem 2rem;
            border: 1px solid #fff;
            transition: all 0.3s ease;
            margin-bottom: 3rem;
        }

        .contact-email:hover {
            background: #fff;
            color: #000;
        }

        .social-links {
            display: flex;
            gap: 2.5rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 4rem;
        }

        .social-link {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

        .social-link svg {
            width: 32px;
            height: 32px;
            fill: #fff;
            transition: all 0.3s ease;
        }

        .social-link:hover svg {
            fill: #666;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            padding: 3rem 5%;
            background: #000;
            border-top: 1px solid #333;
            text-align: center;
            font-weight: 300;
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            header {
                padding: 1.5rem 5%;
            }
            
            .gallery, .contact {
                padding: 5rem 5%;
            }
        }