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

        :root {
            --primary: #0a5d3d;
            --accent: #ff6b35;
            --danger: #dc2626;
            --swamp: #2d3a2e;
            --water: #1a4d3e;
            --sand: #d4a574;
            --text: #f0f4f0;
            --gold: #ffd700;
        }

        body {
            font-family: 'Arial Black', sans-serif;
            background: linear-gradient(180deg, #0a0f0a 0%, var(--swamp) 50%, var(--primary) 100%);
            color: var(--text);
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Animated water ripple effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(26, 77, 62, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(26, 77, 62, 0.2) 0%, transparent 50%);
            animation: ripple 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes ripple {
            0%, 100% { transform: scale(1) rotate(0deg); }
            33% { transform: scale(1.05) rotate(120deg); }
            66% { transform: scale(0.95) rotate(240deg); }
        }

        /* Warning Banner */
        .warning {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: repeating-linear-gradient(
                45deg,
                var(--danger),
                var(--danger) 10px,
                rgba(220, 38, 38, 0.8) 10px,
                rgba(220, 38, 38, 0.8) 20px
            );
            color: white;
            padding: 0.5rem;
            text-align: center;
            font-size: 0.9rem;
            z-index: 100;
            animation: flash 2s linear infinite;
        }

        @keyframes flash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 40px;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 99;
            border-bottom: 2px solid var(--accent);
        }

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

        .nav-logo {
            font-size: 1.5rem;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 101;
        }

        .nav-links {
            display: flex !important;
            gap: 2rem;
            list-style: none;
            padding: 0 !important;
            margin: 0 !important;
        }

        .nav-links li {
            margin: 0 !important;
            list-style: none !important;
            display: inline-block !important;
        }

        .nav-links li a {
            color: var(--text) !important;
            text-decoration: none !important;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: inline-block !important;
            position: relative !important;
            transform: none !important;
        }

        .nav-links li a:hover {
            color: var(--accent) !important;
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
            transform: none !important;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 101;
            gap: 5px;
            padding: 10px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 5px;
            border: 1px solid var(--accent);
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            transition: all 0.3s ease;
            display: block;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Menu Overlay */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 98;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }


        .nav-links li a::before {
            display: none !important;
            content: none !important;
        }

        /* Main Content */
        .main-content {
            margin-top: 120px;
            padding: 2rem;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero Section */
        .tickets-hero {
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 4rem;
        }

        .tickets-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--accent), var(--danger), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
            to { filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.8)); }
        }

        .subtitle {
            font-size: 1.3rem;
            color: var(--sand);
            font-style: italic;
        }

        /* Content Sections */
        .content-section {
            background: linear-gradient(135deg, rgba(10, 93, 61, 0.2), rgba(26, 77, 62, 0.3));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--accent), transparent, var(--primary));
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .content-section:hover::before {
            opacity: 0.3;
        }

        .section-title {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-icon {
            font-size: 2rem;
        }

        .content-text {
            line-height: 1.8;
            color: var(--text);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            font-family: Arial, sans-serif;
        }

        /* Warning Box */
        .warning-box {
            background: repeating-linear-gradient(
                45deg,
                rgba(220, 38, 38, 0.15),
                rgba(220, 38, 38, 0.15) 10px,
                rgba(220, 38, 38, 0.08) 10px,
                rgba(220, 38, 38, 0.08) 20px
            );
            border: 3px solid var(--danger);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            animation: pulse-border 2s ease-in-out infinite;
        }

        @keyframes pulse-border {
            0%, 100% { border-color: var(--danger); }
            50% { border-color: var(--accent); }
        }

        .warning-title {
            color: var(--danger);
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            font-weight: bold;
            text-align: center;
        }

        .warning-text {
            color: var(--text);
            line-height: 1.6;
            font-family: Arial, sans-serif;
            text-align: center;
        }

        /* Info Box */
        .info-box {
            background: rgba(255, 107, 53, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        .info-title {
            color: var(--accent);
            font-size: 1rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .info-text {
            color: var(--text);
            line-height: 1.6;
            font-family: Arial, sans-serif;
            font-size: 0.9rem;
        }

        /* Ticket Cards */
        .tickets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .ticket-card {
            background: linear-gradient(135deg, rgba(45, 58, 46, 0.4), rgba(10, 93, 61, 0.3));
            border: 3px solid var(--accent);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .ticket-card.vip {
            border-color: var(--gold);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
        }

        .ticket-card.danger {
            border-color: var(--danger);
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
        }

        .ticket-card::after {
            content: '🎟️';
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 8rem;
            opacity: 0.05;
            transform: rotate(-15deg);
        }

        .ticket-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
        }

        .ticket-badge {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .ticket-name {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .ticket-card.vip .ticket-name {
            color: var(--gold);
        }

        .ticket-card.danger .ticket-name {
            color: var(--danger);
        }

        .ticket-price {
            font-size: 2rem;
            color: var(--accent);
            font-weight: bold;
            margin: 1rem 0;
        }

        .ticket-features {
            text-align: left;
            list-style: none;
            margin: 1.5rem 0;
        }

        .ticket-features li {
            color: var(--text);
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
            font-size: 0.85rem;
            line-height: 1.6;
            font-family: Arial, sans-serif;
        }

        .ticket-features li:last-child {
            border-bottom: none;
        }

        .ticket-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .select-btn {
            background: linear-gradient(135deg, var(--accent), var(--danger));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            width: 100%;
            margin-top: 1rem;
        }

        .select-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
        }

        /* Form Styles */
        .ticket-form {
            margin-top: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

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

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            color: var(--sand);
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .required {
            color: var(--danger);
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 0.9rem;
            background: rgba(10, 15, 10, 0.5);
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 8px;
            color: var(--text);
            font-size: 0.95rem;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: var(--danger);
            transform: scale(1.1);
        }

        .quantity-display {
            font-size: 1.5rem;
            color: var(--accent);
            min-width: 40px;
            text-align: center;
        }

        /* Order Summary */
        .order-summary {
            background: rgba(10, 15, 10, 0.5);
            border: 2px solid var(--accent);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
            font-family: Arial, sans-serif;
        }

        .summary-row:last-child {
            border-bottom: none;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent);
        }

        .summary-label {
            color: var(--sand);
        }

        .summary-value {
            color: var(--text);
        }

        /* Submit Button */
        .purchase-btn {
            background: linear-gradient(135deg, var(--accent), var(--danger));
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 2px;
            width: 100%;
            margin-top: 2rem;
        }

        .purchase-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        }

        /* Event Cards */
        .events-grid {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .event-card {
            background: rgba(10, 15, 10, 0.5);
            border: 2px solid var(--accent);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .event-card:hover {
            border-color: var(--danger);
            transform: translateX(5px);
        }

        .event-card.selected {
            border-color: var(--danger);
            background: rgba(220, 38, 38, 0.1);
        }

        .event-date {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .event-title {
            color: var(--text);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .event-details {
            color: var(--sand);
            font-size: 0.85rem;
            line-height: 1.6;
            font-family: Arial, sans-serif;
        }

        /* Animated bubbles */
        .bubble {
            position: fixed;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
            pointer-events: none;
            z-index: 0;
            animation: float-bubble 20s infinite ease-in-out;
        }

        @keyframes float-bubble {
            0% { transform: translateY(100vh) translateX(0) scale(0); }
            10% { transform: translateY(90vh) translateX(-10px) scale(1); }
            20% { transform: translateY(80vh) translateX(10px) scale(1.1); }
            100% { transform: translateY(-100vh) translateX(100px) scale(0.5); opacity: 0; }
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, rgba(10, 15, 10, 0.9), #000);
            border-top: 2px solid var(--accent);
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--danger), var(--accent));
            animation: slide 3s linear infinite;
        }

        @keyframes slide {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: var(--accent);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-section ul a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-section ul a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-section ul a:hover::before {
            opacity: 1;
            left: -15px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
            border: 1px solid var(--accent);
            border-radius: 50%;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            line-height: 50px;
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
        }

        .contact-info {
            color: var(--sand);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 107, 53, 0.2);
            padding-top: 2rem;
        }

        .safety-notice {
            background: repeating-linear-gradient(
                90deg,
                rgba(220, 38, 38, 0.1),
                rgba(220, 38, 38, 0.1) 10px,
                rgba(220, 38, 38, 0.05) 10px,
                rgba(220, 38, 38, 0.05) 20px
            );
            border: 1px solid var(--danger);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--sand);
            animation: pulse-border 2s ease-in-out infinite;
        }

        .footer-legal {
            text-align: center;
            color: rgba(240, 244, 240, 0.6);
        }

        .legal-links {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .legal-links a {
            color: rgba(240, 244, 240, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .legal-links span {
            color: rgba(240, 244, 240, 0.3);
        }
        /* Responsive Navigation */
        @media (max-width: 1024px) {
            .nav {
                padding: 1rem !important;
            }

            .nav-content {
                position: relative;
            }

            .hamburger {
                display: flex !important;
            }

            .nav-links {
                position: fixed !important;
                top: 0 !important;
                right: -100% !important;
                width: 75% !important;
                max-width: 350px !important;
                height: 100vh !important;
                background: rgba(0, 0, 0, 0.98) !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 2.5rem !important;
                transition: right 0.4s ease-in-out !important;
                border-left: 3px solid var(--accent) !important;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5) !important;
                padding: 2rem !important;
                z-index: 100 !important;
                margin: 0 !important;
            }

            .nav-links.active {
                right: 0 !important;
            }

            .nav-links li {
                width: 100% !important;
                text-align: center !important;
                display: block !important;
                margin: 0 !important;
            }

            .nav-links li a,
            .nav-links a {
                font-size: 1.3rem !important;
                display: block !important;
                padding: 1rem !important;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .nav-links li a:hover,
            .nav-links a:hover {
                background: rgba(255, 107, 53, 0.2) !important;
            }
        }

        @media (max-width: 600px) {
            .nav {
                top: 35px !important;
                padding: 0.8rem 1rem !important;
            }

            .nav-logo {
                font-size: 1.2rem !important;
            }

            .hamburger {
                padding: 8px !important;
            }

            .hamburger span {
                width: 25px !important;
                height: 2.5px !important;
            }

            .warning {
                font-size: 0.75rem !important;
                padding: 0.5rem !important;
            }

            .nav-links {
                width: 85% !important;
            }

            .nav-links li a,
            .nav-links a {
                font-size: 1.1rem !important;
            }
        }

        @media (max-width: 400px) {
            .nav-logo span:last-child {
                font-size: 1rem !important;
            }

            .warning {
                font-size: 0.65rem !important;
            }
        }