:root {
    --bg-deep: #030816;
    --bg-sea: #0a1f3d;
    --accent-teal: #14f1ff; /* Bioluminescent Teal */
    --accent-gold: #ffcc00; /* Sunken Gold */
    --text-main: #e0faff; /* Pearl White */
    --text-dim: #7f9ba5;
    --card-bg: rgba(20, 241, 255, 0.03); /* Translucent teal base */
    --card-border: rgba(20, 241, 255, 0.1);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 1.647vh rgba(20, 241, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'BJ Cree', sans-serif;
}

body {
    font-family: 'BJ Cree', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    background: linear-gradient(rgba(3, 8, 22, 0.75), rgba(3, 8, 22, 0.75)), url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 131.723vh;
    margin: 0 auto;
    padding: 0 3.513vh;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(2.195vh);
    -webkit-backdrop-filter: blur(2.195vh);
    border-bottom: 0.11vh solid var(--card-border);
    padding: 1.756vh 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3.513vh;
}

.header-nav {
    display: flex;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.493vh;
    letter-spacing: 0.11vh;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-teal);
    text-shadow: 0 0 1.098vh var(--accent-teal);
}

.social-icons {
    display: flex;
    gap: 2.634vh;
}

.social-icons a {
    color: var(--text-dim);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-icons a svg {
    width: 2.195vh;
    height: 2.195vh;
}

.social-icons a:hover {
    color: var(--accent-teal);
    transform: scale(1.1);
}

.logo .ticker {
    font-size: 3.161vh;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-teal), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.329vh;
    text-shadow: var(--glow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal), #00a8ff);
    color: var(--bg-deep) !important;
    padding: 1.054vh 2.634vh;
    border-radius: 5.489vh;
    font-weight: 700;
    font-size: 1.756vh;
    text-decoration: none;
    box-shadow: 0 0 2.195vh rgba(20, 241, 255, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-0.219vh);
    box-shadow: 0 0 3.293vh rgba(20, 241, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 13.172vh;
    padding-bottom: 6.586vh;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(7.025vh, 21.07vh, 14.050vh);
    font-weight: 800;
    margin-bottom: 0;
    background: linear-gradient(to bottom, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 3.293vh rgba(20, 241, 255, 0.5));
    line-height: 0.9;
}

.tagline {
    font-size: clamp(1.756vh, 6.32vh, 3.161vh);
    color: var(--text-dim);
    margin-top: 1.756vh;
    margin-bottom: 5.269vh;
    font-weight: 300;
    letter-spacing: 0.549vh;
    text-transform: uppercase;
}

.hero-image {
    margin: 3.513vh 0;
    pointer-events: none;
}

.hero-image img {
    max-width: 137vh;
    width: 95vw;
    filter: drop-shadow(0 0 6.586vh rgba(20, 241, 255, 0.3));
}

.floating {
    animation: floating 4s infinite ease-in-out;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3.293vh) rotate(2deg); }
}

.hero-meta {
    width: 100%;
    max-width: 87.816vh;
    cursor: none;
}

.ca-container {
    background: rgba(20, 241, 255, 0.05);
    border: 0.11vh solid var(--card-border);
    padding: 1.756vh 3.513vh;
    border-radius: 10.977vh;
    backdrop-filter: blur(1.098vh);
    margin: 0 auto 5.269vh;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1.756vh;
}

#ca-address {
    font-family: 'BJ Cree', sans-serif;
    font-size: clamp(1.229vh, 4.21vh, 1.756vh);
    color: var(--accent-teal);
    opacity: 0.8;
}

.copy-btn {
    background: var(--accent-teal);
    border: none;
    color: var(--bg-deep);
    padding: 0.703vh 2.108vh;
    border-radius: 5.489vh;
    font-weight: 800;
    font-size: 1.537vh;
    cursor: pointer;
    box-shadow: 0 0 1.647vh rgba(20, 241, 255, 0.4);
    transition: var(--transition);
}

.copy-btn:hover {
    transform: scale(1.05);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2.634vh;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(10, 31, 61, 0.4);
    border: 0.11vh solid var(--card-border);
    color: var(--text-main);
    padding: 1.756vh 4.391vh;
    border-radius: 10.977vh;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.756vh;
    transition: var(--transition);
    backdrop-filter: blur(0.549vh);
}

.btn-secondary:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 0 2.195vh rgba(20, 241, 255, 0.2);
    transform: translateY(-0.329vh);
}

/* About Section Refinement */
.about {
    padding: 17.563vh 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7.025vh;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 6.147vh;
    margin-bottom: 5.269vh;
    background: linear-gradient(90deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3.513vh;
}

.about-para {
    font-size: 2.108vh;
    color: var(--text-dim);
    line-height: 1.8;
    background: rgba(20, 241, 255, 0.03);
    border: 0.11vh solid var(--card-border);
    padding: 3.513vh;
    border-radius: 2.195vh;
    backdrop-filter: blur(1.098vh);
    transition: var(--transition);
}

.about-para:hover {
    border-color: var(--accent-teal);
    transform: translateX(1.098vh);
    background: rgba(20, 241, 255, 0.05);
}

.about-card {
    background: rgba(10, 31, 61, 0.4);
    backdrop-filter: blur(1.647vh);
    border: 0.11vh solid var(--card-border);
    padding: 4.391vh;
    border-radius: 3.293vh;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--accent-teal);
    transform: translateX(1.098vh);
}

.about-card h3 {
    color: var(--accent-teal);
    font-size: 2.634vh;
    margin-bottom: 1.756vh;
}

.about-video {
    position: relative;
    width: 100%;
}

.video-container {
    position: relative;
    border-radius: 3.293vh;
    overflow: hidden;
    border: 0.11vh solid var(--card-border);
    box-shadow: 0 0 4.391vh rgba(20, 241, 255, 0.15);
    background: var(--bg-deep);
    line-height: 0;
}

.beach-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    filter: brightness(0.8);
    transition: var(--transition);
}

.video-container:hover .beach-video {
    filter: brightness(0.6);
}

.video-overlays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1.756vh;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.overlay-btn {
    background: rgba(20, 241, 255, 0.1);
    backdrop-filter: blur(1.098vh);
    border: 0.11vh solid var(--accent-teal);
    color: var(--text-main);
    padding: 1.405vh 3.513vh;
    border-radius: 10.977vh;
    display: flex;
    align-items: center;
    gap: 0.878vh;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.581vh;
    transition: var(--transition);
    box-shadow: var(--glow);
    white-space: nowrap;
}

.overlay-btn:hover {
    background: var(--accent-teal);
    color: var(--bg-deep);
    transform: scale(1.1);
}

.video-container:hover .video-overlays {
    opacity: 1;
}

.btn-icon svg {
    display: block;
}

/* Memes Section */
.memes-section {
    padding: 17.563vh 0;
}

.section-header h2 {
    font-size: 6.147vh;
    margin-bottom: 7.025vh;
    background: linear-gradient(90deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35.126vh, 1fr));
    gap: 3.513vh;
    align-items: center;
}

.meme-card {
    border-radius: 3.293vh;
    overflow: hidden;
    border: 0.11vh solid var(--card-border);
    background: rgba(10, 31, 61, 0.4);
    box-shadow: 0 0 2.195vh rgba(20, 241, 255, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meme-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-1.098vh);
    box-shadow: 0 0 4.391vh rgba(20, 241, 255, 0.3);
}

.meme-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: var(--transition);
}

.meme-card:hover .meme-img {
    transform: scale(1.05);
}

/* Buy Section */
.buy-section {
    padding: 14.050vh 0;
}

.buy-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.6), rgba(3, 8, 22, 0.8));
    padding: 10.538vh 3.513vh;
    border-radius: 5.489vh;
    border: 0.11vh solid var(--card-border);
}

.buy-box h2 {
    font-size: 4.391vh;
    margin-bottom: 2.195vh;
}

.buy-box p {
    font-size: 2.195vh;
    color: var(--text-dim);
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 3.513vh;
    margin-top: 7.025vh;
    flex-wrap: wrap;
}

.platform-btn {
    background: rgba(20, 241, 255, 0.05);
    border: 0.11vh solid var(--card-border);
    color: var(--text-main);
    padding: 2.108vh 7.025vh;
    border-radius: 10.977vh;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.756vh;
    transition: var(--transition);
}

.platform-btn:hover {
    background: var(--accent-teal);
    color: var(--bg-deep);
    box-shadow: 0 0 3.293vh rgba(20, 241, 255, 0.4);
}

/* Footer */
footer {
    padding: 10.538vh 0;
    text-align: center;
    border-top: 0.11vh solid var(--card-border);
}

footer p {
    font-size: 1.756vh;
}

.disclaimer {
    margin-top: 3.513vh;
    font-size: 1.405vh;
    color: var(--text-dim);
    max-width: 105.381vh;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 106.257vh) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 5.269vh;
    }
    .about-text h2 {
        text-align: center;
    }
    .about-card:hover {
        transform: translateY(-1.098vh);
    }
    .beach-video {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 84.303vh) {
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1002;
    }

    .hamburger .bar {
        display: block;
        width: 3.293vh;
        height: 0.329vh;
        margin: 0.549vh auto;
        background-color: var(--text-main);
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(0.878vh) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-0.878vh) rotate(-45deg);
    }

    .nav-right {
        position: fixed;
        right: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background: rgba(3, 8, 22, 0.95);
        backdrop-filter: blur(2.195vh);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 10.538vh;
        border-left: 0.11vh solid var(--card-border);
    }

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

    .header-nav {
        flex-direction: column;
        gap: 3.513vh;
        width: 100%;
    }

    .nav-link {
        font-size: 2.634vh;
        margin-left: 0 !important;
        display: block;
        padding: 1.756vh;
    }

    .social-icons {
        margin: 3.513vh 0;
    }

    .btn-primary {
        margin-top: 3.513vh;
    }

    .ca-container { 
        flex-direction: column; 
        border-radius: 2.195vh; 
        padding: 2.195vh;
        gap: 1.098vh;
    }
    #ca-address { 
        word-break: break-all; 
        font-size: clamp(14px, 4vw, 24px);
    }

    .hero-content h1 {
        font-size: min(11.24vh, 14.4vw);
    }
    
    .tagline {
        font-size: min(3.161vh, 6vw);
    }

    .hero-image img {
        max-width: 90vw;
    }
    
    .container {
        padding: 0 5vw;
    }

    .about-split {
        gap: 8vw;
    }
}

.hamburger {
    display: none;
}

/* Custom Water Bubble Cursor */
#cursor-bubble {
    position: fixed;
    width: 3.293vh;
    height: 3.293vh;
    background: radial-gradient(circle at 30% 30%, rgba(20, 241, 255, 0.15), rgba(20, 241, 255, 0.05));
    border: 0.219vh solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(0.219vh);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s;
    box-shadow: 0 0 1.098vh rgba(20, 241, 255, 0.3), 
                inset 0 0 1.098vh rgba(255, 255, 255, 0.2);
}

@media (hover: none) and (pointer: coarse) {
    #cursor-bubble {
        display: none !important;
    }
}

#cursor-bubble.cursor-hover {
    width: 6.586vh;
    height: 6.586vh;
    background: radial-gradient(circle at 30% 30%, rgba(20, 241, 255, 0.25), rgba(20, 241, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 2.195vh rgba(20, 241, 255, 0.5);
}

#cursor-bubble.cursor-click {
    transform: translate(-50%, -50%) scale(0.85);
    background: rgba(20, 241, 255, 0.3);
}

/* Ensure all interactive elements hide default cursor on desktop */
@media (hover: hover) and (pointer: fine) {
    a, button, .copy-btn, .nav-link, .platform-btn, .overlay-btn {
        cursor: none !important;
    }
}
