        @font-face {
            font-family: 'Recoleta';
            src: url('fonts/Recoleta-RegularDEMO.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Open Sauce One';
            src: url('fonts/OpenSauceOne-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Open Sauce One Light';
            src: url('fonts/OpenSauceOne-Light.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --yellowgreen: #f6b3e6;
            --coral: #F76C5E;
            --hotpink: #eda5ff;
            --deepblue: #1c8e62;
            --softpink: #F9C6D3;
            --aqua: #d5d753;
            --white: #fff9e9;
            --navy: #1A1A40;
            --accent: #F76C5E;
            --accent-dark: #F94FAD;
            --text: #1A1A40;
            --shadow: 0 2px 12px rgba(0,0,0,0.06);
            --divider: #F3F6A3;
        }

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

        body {
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            font-weight: 400;
            color: var(--text);
            background: var(--hotpink);
            font-size: 1em;
            letter-spacing: 0.01em;
            line-height: 1.7;
            overflow-x: hidden;
        }

        nav {
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            padding: 0 0.5em;
            position: sticky;
            top: 0;
            z-index: 10;
            font-family: inherit;
            min-height: 80px;
        }

        .nav-container {
            max-width: 1100px;
      margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
            min-height: 80px;
        }

        .nav-centered {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5em;
            min-height: 80px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-left {
            justify-content: flex-end;
            flex: 1 1 0;
        }

        .nav-right {
            justify-content: flex-start;
            flex: 1 1 0;
        }

        .nav-center {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 100%;
            margin-right: 2em;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text);
            padding: 10px;
        }

        .mobile-nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            padding: 24px;
            box-shadow: var(--shadow);
            z-index: 1000;
        }

        .mobile-nav-menu.active {
            display: flex;
        }

        .mobile-nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.01em;
            transition: color 0.18s, border-bottom 0.18s;
            border-bottom: 2px solid transparent;
            text-transform: uppercase;
            padding: 12px 0;
            width: 100%;
            text-align: center;
            font-size: 1em;
        }

        .mobile-nav-menu a:hover {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }

        .logo-img {
            height: 44px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.01em;
            transition: color 0.18s, border-bottom 0.18s;
            border-bottom: 2px solid transparent;
            text-transform: uppercase;
            padding: 0.2em 0.4em;
            border-radius: 6px;
            font-size: 1em;
        }

        .nav-links a:hover {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }

        .nav-links .supporters-link {
            background: var(--accent);
            color: #fff !important;
            border-radius: 20px;
            padding: 0.4em 1.2em;
            font-weight: 700;
            margin-left: 1.5em;
            border: none;
            box-shadow: 0 2px 8px rgba(232,125,62,0.08);
            transition: background 0.18s, color 0.18s;
        }

        .nav-links .supporters-link:hover {
            background: var(--accent-dark);
            color: #fff;
        }

        /* Hero Section */
    header {
            background: var(--hotpink);
            text-align: center;
            padding: 0;
            font-family: inherit;
            border-bottom: 0px;
        }

        .hero-content {
      text-align: center;
            padding: 2em 0 0 0;
            z-index: 2;
            background: transparent;
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .hero-title {
            font-size: 2.2em;
            margin-bottom: 0.18em;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
            line-height: 1.1;
        }

        .hero-sub {
            font-size: 1.18em;
            margin-bottom: 0.7em;
            color: #111;
            font-weight: 700;
            font-family: inherit;
            margin-top: 18px;
        }

        .hero-description {
            font-size: 1.05em;
            margin-bottom: 1.5em;
            color: var(--navy);
            font-weight: 400;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-group {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            margin-top: 0.2em;
            margin-bottom: 1.2em;
            width: 100%;
        }

        .hero-cta-group a {
      display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 13px 32px;
            border-radius: 24px;
            font-size: 1em;
            font-weight: 700;
      text-decoration: none;
            letter-spacing: 0.01em;
            font-family: inherit;
            box-shadow: 0 2px 8px rgba(232,125,62,0.08);
            transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
            border: none;
            cursor: pointer;
        }

        .hero-cta-group a:hover {
            background: var(--accent-dark);
            box-shadow: 0 4px 18px rgba(0,0,0,0.09);
            transform: translateY(-2px) scale(1.03);
        }

        /* Main Sections */
        .main-section {
            width: 100%;
            margin: 0;
            padding: 0;
            font-family: inherit;
        }

        /* About Section */
        .about-section {
            background: var(--aqua);
            padding: 24px 0 18px 0;
            margin-bottom: 0;
            font-family: inherit;
            transition: background 0.3s;
            width: 100%;
            box-sizing: border-box;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }

        .about-title {
            font-size: 1.5em;
            color: var(--accent);
            margin-bottom: 12px;
            text-align: center;
            font-weight: 800;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
        }

        .about-text {
            font-size: 1em;
            color: var(--navy);
            margin-bottom: 18px;
            line-height: 1.7;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            text-align: center;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Help Section */
        .help-section {
            background: var(--softpink);
            padding: 48px 6vw 36px 6vw;
            margin-bottom: 0;
            text-align: center;
            font-family: inherit;
            transition: background 0.3s;
            width: 100%;
            box-sizing: border-box;
        }

        .help-title {
            font-size: 1.5em;
            color: var(--accent);
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: 0.01em;
            font-family: inherit;
        }

        .help-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .help-card {
            background: transparent;
            padding: 0 18px 0 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: inherit;
            box-shadow: none;
            border-radius: 0;
            transition: none;
        }



        .help-card-title {
            font-size: 1.08em;
            font-weight: 800;
            color: var(--deepblue);
            margin-bottom: 10px;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
        }

        .help-card-desc {
            font-size: 1em;
            color: var(--navy);
            line-height: 1.6;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        /* Events Section */
        .events-section {
            background: var(--hotpink);
            padding: 24px 0 18px 0;
            margin-bottom: 0;
            font-family: inherit;
            transition: background 0.3s;
            width: 100%;
            box-sizing: border-box;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }

        .events-title {
            font-size: 1.5em;
            color: var(--accent);
            margin-bottom: 12px;
            text-align: center;
            font-weight: 800;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
        }

        .events-intro {
            text-align: center;
            font-size: 1.1em;
            color: var(--navy);
            margin-bottom: 32px;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

    .events-grid {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

    .event-card {
            background: transparent;
            padding: 20px 0 0 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            max-width: none;
            margin: 0;
            font-family: inherit;
            box-shadow: none;
            border-radius: 0;
            border: none;
            transition: none;
            gap: 36px;
            width: 100%;
        }



        .event-card img {
            width: 100%;
            max-width: 640px;
            height: 280px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 22px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .event-card h3 {
            margin: 0 0 0.3em 0;
            font-size: 1.1em;
            color: #000;
            font-weight: 800;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
        }

        .event-card p {
            margin: 0 0 1.2em 0;
            color: var(--navy);
            font-size: 1em;
            line-height: 1.7;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        .event-card .button {
            background: var(--yellowgreen);
            color: var(--deepblue);
            padding: 10px 22px;
            border-radius: 18px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1em;
            margin-top: auto;
            font-family: inherit;
            letter-spacing: 0.01em;
            transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
            border: none;
        }

        .event-card .button:hover {
            background: var(--white);
            color: var(--hotpink);
        }

        /* Brands Section */
        .brands-section {
      background: #fff;
            padding: 24px 0 48px 0;
      text-align: center;
    }

        .brands-title {
            font-size: 1.5em;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            margin-bottom: 0;
            letter-spacing: 0.01em;
        }

        .brands-subtitle {
            text-align: center;
            font-size: 1.1em;
            color: var(--navy);
            margin-bottom: 32px;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .brands-carousel {
            overflow: hidden;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .brands-track {
            display: flex;
            align-items: center;
            gap: 48px;
            animation: brands-scroll 18s linear infinite;
            width: max-content;
        }

        .brand-logo {
            height: 56px;
            width: auto;
            filter: grayscale(0.2) brightness(0.95);
            opacity: 0.9;
            transition: filter 0.2s, opacity 0.2s;
        }

        .brand-logo:hover {
            filter: none;
            opacity: 1;
        }

        @keyframes brands-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* About Me Section */
        .aboutme-section {
            background: var(--aqua);
            padding: 48px 6vw 36px 6vw;
            margin: 0 0 0 0;
      width: 100%;
            text-align: center;
            font-family: inherit;
            box-shadow: none;
            border-radius: 0;
            transition: background 0.3s;
            box-sizing: border-box;
        }

        .aboutme-title {
            font-size: 1.5em;
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
        }

        .aboutme-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
      object-fit: cover;
            margin-bottom: 18px;
            box-shadow: var(--shadow);
            background: transparent !important;
            border: none;
        }

        .aboutme-bio {
            font-size: 1.05em;
            color: var(--navy);
            line-height: 1.7;
            margin: 0 auto;
            max-width: 900px;
            font-family: 'Lato', 'Open Sauce One', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            text-align: justify;
        }

        .aboutme-bio br {
            margin-bottom: 0.5em;
            display: block;
            content: "";
        }

        /* Signup Section */
        .signup-section {
            background: var(--softpink);
            padding: 40px 6vw 32px 6vw;
            margin-bottom: 0;
            text-align: center;
            font-family: inherit;
            box-shadow: none;
            border-radius: 0;
            transition: background 0.3s;
            width: 100%;
            box-sizing: border-box;
        }

        .signup-title {
            font-size: 1.3em;
            color: var(--deepblue);
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: 0.01em;
            font-family: 'Playfair Display', serif;
        }

        .signup-section form {
            margin-top: 18px;
        }

        .signup-section input[type="email"] {
            padding: 12px;
            width: 60%;
            max-width: 320px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 1em;
            margin-right: 10px;
            font-family: inherit;
        }

        .signup-section button {
            background: var(--accent);
            color: var(--white);
            padding: 12px 26px;
            border-radius: 6px;
            border: none;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            font-family: inherit;
            letter-spacing: 0.01em;
            font-weight: 700;
            transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
        }

        .signup-section button:hover {
            background: #d96a6a;
            box-shadow: 0 4px 18px rgba(0,0,0,0.09);
            transform: translateY(-2px) scale(1.03);
        }

        /* Footer */
        footer {
            background: #f42424;
            font-size: 0.92em;
            color: #fff;
            padding: 32px 20px 18px 20px;
            border-top: none;
            font-family: inherit;
            text-align: center;
        }

        .footer-links {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--hotpink);
            text-decoration: none;
            margin: 0 16px;
            font-weight: 700;
            font-size: 1em;
            font-family: inherit;
            letter-spacing: 0.01em;
            transition: color 0.18s, border-bottom 0.18s;
            border-bottom: 2px solid transparent;
        }

        .footer-links a:hover {
            color: var(--coral);
            border-bottom: 2px solid var(--coral);
        }

        .footer-instagram svg rect {
            fill: #fff !important;
        }

        .footer-instagram svg path,
        .footer-instagram svg circle {
            fill: var(--accent) !important;
            stroke: none;
        }

        .footer-instagram svg {
            vertical-align: middle;
            margin-bottom: 2px;
            transition: filter 0.2s;
        }

        .footer-instagram:hover svg {
            filter: brightness(1.2) drop-shadow(0 2px 6px #fff3);
        }

        /* Section Dividers */
        .section-divider {
            border-top: 1.5px solid #ecdff6;
            margin: 0 auto;
            width: 90%;
            max-width: 1100px;
            box-sizing: border-box;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text);
            padding: 5px;
        }

        .popup-close:hover {
            color: var(--accent);
        }

        .popup-title {
            font-family: 'Playfair Display', serif !important;
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .popup-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 24px;
            color: var(--navy);
        }

        .popup-form {
            max-width: 300px;
            margin: 0 auto;
        }

        .popup-form input[type="email"] {
            width: 100%;
            padding: 16px;
            border: 2px solid var(--text);
            border-radius: 8px;
            font-size: 16px;
            margin-bottom: 16px;
            background: white;
            box-sizing: border-box;
        }

        .popup-form button {
            background: var(--accent);
            color: white;
            padding: 16px 32px;
            border: none;
      border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
        }

        .popup-form button:hover {
            background: var(--accent-dark);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Navigation */
            .mobile-nav-toggle {
                display: block;
            }

            .nav-links {
                display: none;
            }

            .nav-centered {
                padding: 0 1em;
                position: relative;
            }

            .logo-img {
                height: 36px;
                max-width: 120px;
            }

            /* Hero Section */
            .hero-title {
                font-size: 1.8em;
                padding: 0 20px;
            }

            .hero-sub {
                font-size: 1em;
                padding: 0 20px;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                padding: 0 20px;
            }

            .hero-cta-group a {
      width: 100%;
                max-width: 280px;
            }

            /* About Section */
            .about-text {
                padding: 0 20px;
                font-size: 0.95em;
            }

            /* Help Section */
            .help-columns {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 0 20px;
            }

            .help-card {
                padding: 0 12px;
            }

            .help-card-title {
                font-size: 1em;
            }

            .help-card-desc {
                font-size: 0.95em;
            }

            /* Events Section */
            .event-card {
                flex-direction: column;
                gap: 24px;
                text-align: center;
                padding: 20px;
            }

            .event-card img {
                max-width: 100%;
                height: 200px;
            }

            .event-card h3 {
                font-size: 1em;
            }

            .event-card p {
                font-size: 0.95em;
            }

            /* Brands Section */
            .brands-carousel {
                max-width: 100%;
                padding: 0 20px;
            }

            .brands-track {
                gap: 32px;
            }

            .brand-logo {
                height: 40px;
            }

            /* About Me Section */
            .aboutme-bio {
      text-align: center;
                padding: 0 20px;
                font-size: 0.95em;
            }

            .aboutme-img {
                width: 120px;
                height: 120px;
            }

            /* Signup Section */
            .signup-section {
                padding: 40px 20px 32px 20px;
            }

            .signup-section input[type="email"] {
                width: 100%;
                max-width: none;
                margin-right: 0;
                margin-bottom: 12px;
            }

            .signup-section button {
                width: 100%;
                max-width: 280px;
            }

            /* Footer */
            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .footer-links a {
                margin: 0;
            }

            /* Section Titles */
            .about-title,
            .help-title,
            .events-title,
            .brands-title,
            .aboutme-title,
            .signup-title {
                font-size: 1.3em;
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens */
            .nav-links {
                gap: 16px;
            }

            .nav-links a {
                font-size: 0.85em;
            }

            .logo-img {
                height: 32px;
                max-width: 100px;
            }

            .hero-title {
                font-size: 1.5em;
            }

            .hero-sub {
                font-size: 0.9em;
            }

            .about-title,
            .help-title,
            .events-title,
            .brands-title,
            .aboutme-title,
            .signup-title {
                font-size: 1.2em;
            }

            .event-card {
                padding: 15px;
            }

            .event-card img {
                height: 180px;
            }

            .aboutme-img {
                width: 100px;
                height: 100px;
            }

            .brand-logo {
                height: 35px;
            }

            .signup-section {
                padding: 30px 15px 25px 15px;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens */
            .hero-title {
                font-size: 1.5em;
            }

            .hero-sub {
      font-size: 0.9em;
            }

            .about-title,
            .help-title,
            .events-title,
            .brands-title,
            .aboutme-title,
            .signup-title {
                font-size: 1.3em;
            }

            .event-card img {
                height: 180px;
            }

            .aboutme-img {
                width: 120px;
                height: 120px;
            }

            .brand-logo {
                height: 40px;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .hero-cta-group a,
            .event-card .button,
            .signup-section button {
                min-height: 44px;
                padding: 16px 24px;
            }

            .nav-links a {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
    }

        /* Instagram Grid Layout */
        .instagram-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .instagram-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* Instagram Photo Styles */
        .instagram-photo-link {
            text-decoration: none;
            color: inherit;
        }

        .instagram-photo {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .instagram-photo:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        }

        .instagram-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .instagram-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .instagram-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            margin-right: 12px;
        }

        .instagram-info {
            display: flex;
            flex-direction: column;
        }

        .instagram-username {
            font-weight: 600;
            color: var(--navy);
            font-size: 0.9em;
        }

        .instagram-time {
            font-size: 0.8em;
            color: #8e8e8e;
        }

        .instagram-content {
            margin-bottom: 16px;
        }

        .instagram-content p {
            color: var(--navy);
            line-height: 1.4;
            margin: 0;
        }

        .instagram-link {
            text-decoration: none;
            color: inherit;
        }

        /* Instagram Overlay Styles */
        .instagram-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .instagram-photo:hover .instagram-overlay {
            opacity: 1;
            background: rgba(0, 0, 0, 0.8);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .instagram-play-icon {
            color: white;
            font-size: 1.5em;
        }
        .buy-ticket-btn {
            background-color: #635BFF;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        .buy-ticket-btn:hover {
            background-color: #4F46E5;
        }
        .buy-ticket-btn:disabled {
            background-color: #9CA3AF;
            cursor: not-allowed;
        }


