        /* Remove white space at top */
        body {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Ensure hero section starts at very top */
        .hero {
            margin-top: 0 !important;
        }

        /* Remove any WordPress padding/margin */
        .entry-content,
        .site-content,
        article {
            margin: 0 !important;
            padding: 0 !important;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 2rem;
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            z-index: 10;
        }

        .logo-container {
            margin-bottom: 3rem;
            animation: floatIn 1s ease-out;
            position: relative;
            display: inline-block;
            max-width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-tagline {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 1rem;
            opacity: 0.8;
            animation: slideUp 0.8s ease-out 0.1s both;
        }

        .logo-container h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            color: #1a1a1a;
            line-height: 1.1;
            animation: slideUp 0.8s ease-out 0.2s both;
        }

        .stick-figure {
            position: absolute;
            right: -60px;
            top: 50%;
            width: 100px;
            height: auto;
            z-index: 10;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: #2a2a2a;
            margin-bottom: 2rem;
            font-weight: 300;
            animation: slideUp 0.8s ease-out 0.4s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: #1a1a1a;
            color: #FFD700;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out 0.6s both;
            border: 3px solid #1a1a1a;
        }

        .cta-button:hover {
            background: transparent;
            color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::after {
            content: '↓';
            font-size: 2rem;
            color: #1a1a1a;
            opacity: 0.5;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: #fff;
        }

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

        .about h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        .about p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 1.5rem;
        }

        .about p.highlight {
            font-size: 1.5rem;
            color: #1a1a1a;
            font-weight: 500;
        }

        /* Shows Section */
        .shows {
            padding: 6rem 2rem;
            background: #f8f8f8;
        }

        .shows-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .shows h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 3rem;
            text-align: center;
            color: #1a1a1a;
        }

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

        .show-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .show-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: #FFD700;
        }

        .show-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .show-card p {
            font-size: 1.1rem;
            color: #4a4a4a;
            line-height: 1.6;
        }

        /* Upcoming Shows */
        .upcoming {
            background: #FFD700;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
        }

        .upcoming h3 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        .show-details {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }

        .show-details h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .show-details p {
            font-size: 1.1rem;
            color: #4a4a4a;
        }

        .ticket-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #1a1a1a;
            color: #FFD700;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 3px solid #1a1a1a;
        }

        .ticket-button:hover {
            background: transparent;
            color: #1a1a1a;
            transform: scale(1.05);
        }

        /* Photos Section */
        .photos {
            padding: 6rem 2rem;
            background: #fff;
        }

        .photos-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .photos h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 3rem;
            text-align: center;
            color: #1a1a1a;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .photo-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .photo-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Mission Section */
        .mission {
            padding: 6rem 2rem;
            background: #f8f8f8;
        }

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

        .mission h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        .mission p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #4a4a4a;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #FFD700;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .social-links {
            margin-top: 1.5rem;
        }

        .social-links a {
            color: #FFD700;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        /* Animations */
        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 90vh;
            }

            .about, .shows, .photos, .mission {
                padding: 4rem 1.5rem;
            }

            .show-cards {
                grid-template-columns: 1fr;
            }

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

            .stick-figure {
                right: -30px;
                width: 60px;
                top: 50%;
            }
        }