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

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

        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;
        }

        /* 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;
            gap: 2rem;
            list-style: none;
        }

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

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

        /* 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;
        }
      
        /* 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%),
                radial-gradient(ellipse at 40% 40%, rgba(10, 93, 61, 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); }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
        }

        .logo-container {
            position: relative;
            margin-bottom: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .gator-logo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary), var(--water));
            border-radius: 50%;
            position: relative;
            box-shadow: 
                0 0 60px rgba(10, 93, 61, 0.8),
                inset 0 0 20px rgba(0,0,0,0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 60px rgba(10, 93, 61, 0.8), inset 0 0 20px rgba(0,0,0,0.3); }
            50% { box-shadow: 0 0 100px rgba(255, 107, 53, 1), inset 0 0 20px rgba(0,0,0,0.3); }
        }

        .gator-logo::before,
        .gator-logo::after {
            content: '🐊';
            position: absolute;
            font-size: 60px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .gator-logo::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: 3px solid var(--accent);
            border-radius: 50%;
            animation: rotate-ring 10s linear infinite;
        }

        @keyframes rotate-ring {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--accent), var(--danger), var(--sand));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
            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)); }
        }

        .tagline {
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: var(--sand);
            margin-bottom: 3rem;
            opacity: 0;
            animation: slideUp 1s ease-out 0.5s forwards;
        }

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

        .cta-container {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            animation: slideUp 1s ease-out 0.8s forwards;
        }

        .cta-button {
            padding: 1.2rem 2.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .primary-cta {
            background: linear-gradient(135deg, var(--accent), var(--danger));
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .primary-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }

        .secondary-cta {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--accent);
            box-shadow: 0 10px 30px rgba(10, 93, 61, 0.4);
        }

        .secondary-cta:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(10, 93, 61, 0.6);
        }

        /* 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: 1000;
            animation: flash 2s linear infinite;
        }

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

        /* Info Section */
        .info-section {
            padding: 5rem 2rem;
            position: relative;
            z-index: 2;
        }

        .info-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: linear-gradient(135deg, rgba(10, 93, 61, 0.3), rgba(26, 77, 62, 0.2));
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: var(--delay, 0s);
            backdrop-filter: blur(10px);
        }

        .info-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
        }

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

        .icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
        }

        .info-card h3 {
            color: var(--accent);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .info-card p {
            color: var(--sand);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Floating Bubbles */
        .bubble {
            position: fixed;
            bottom: -150px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(10, 93, 61, 0.2));
            border-radius: 50%;
            opacity: 0.4;
            animation: rise 20s infinite ease-in;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes rise {
            to {
                bottom: 110%;
                transform: translateX(100px);
            }
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
            padding: 4rem 2rem 2rem;
            position: relative;
            z-index: 2;
            border-top: 2px solid var(--accent);
        }

        .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);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

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

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

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

        .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;
        }

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

        .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 */
        @media (max-width: 1024px) {
            .nav {
                padding: 1rem;
            }

            .nav-content {
                position: relative;
            }

            .hamburger {
                display: flex !important;
            }

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

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

            .nav-links li {
                width: 100%;
                text-align: center;
            }

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

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

            .cta-container {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            
            .cta-button {
                width: 250px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

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

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

            .hamburger {
                padding: 8px;
            }

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

            .warning {
                font-size: 0.75rem;
                padding: 0.5rem;
                letter-spacing: 1px;
            }

            .nav-links {
                width: 85%;
            }

            .nav-links a {
                font-size: 1.1rem;
            }
        }

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

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