:root {
    --text-color: #ffffff;
    --primary-color: #ff007f;
    --secondary-color: #ffea00;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: #87CEEB;
    /* Fallback for sky */
}

/* Background Image Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* User: Save the rainbow field image as background.jpg in this folder */
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vh 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(1.5vh);
    -webkit-backdrop-filter: blur(1.5vh);
    border-bottom: 0.3vh solid var(--glass-border);
    box-shadow: 0 1vh 3vh 0 rgba(31, 38, 135, 0.2);
}

.logo .ticker {
    font-family: var(--font-heading);
    font-size: 5vh;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3vh;
    -webkit-text-stroke: 0.3vh #000;
    text-shadow: 0.6vh 0.6vh 0 var(--primary-color), 1.2vh 1.2vh 0 #000;
    transform: rotate(-5deg);
    display: inline-block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 3vh;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2vh;
    align-items: center;
}

.nav-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1vh 2vh;
    border-radius: 5vh;
    cursor: pointer;
    background: var(--glass-bg);
    color: #fff;
    border: 0.3vh solid var(--glass-border);
    font-size: 2vh;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0.2vh 0.2vh 0 #000;
    box-shadow: 0.4vh 0.4vh 0 rgba(0, 0, 0, 0.5);
}

.nav-btn:hover {
    background: var(--primary-color);
    border-color: #000;
    transform: translateY(-0.5vh) scale(1.05);
    box-shadow: 0.6vh 0.6vh 0 #000;
}

.nav-btn:active {
    transform: translateY(0.2vh);
    box-shadow: 0.2vh 0.2vh 0 #000;
}

/* Buttons */
.buy-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 1.5vh 4vh;
    border-radius: 7.5vh;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 2vh;
    text-transform: uppercase;
    letter-spacing: 0.3vh;

    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border: 0.6vh solid #000;
    box-shadow: 0.9vh 0.9vh 0 #000;
    text-shadow: 0.3vh 0.3vh 0 #000;
    display: inline-block;
    text-decoration: none;
}

.buy-btn:hover {
    transform: translateY(-1.2vh) scale(1.05) rotate(2deg);
    box-shadow: 1.5vh 2.1vh 0 #000;
}

.buy-btn:active {
    transform: translateY(0.3vh);
    box-shadow: 0.3vh 0.3vh 0 #000;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    padding-top: 12vh;
    /* offset for nav */
}

/* Floating Image */
.hero-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-wybie {
    max-width: 50vh;
    /* Big cat face */
    width: 90%;
    height: auto;
    filter: drop-shadow(0 3vh 6vh rgba(0, 0, 0, 0.6));
    animation: floating 4s ease-in-out infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes floating {
    0% {
        transform: translateY(0vh) rotate(-3deg);
    }

    50% {
        transform: translateY(-6vh) rotate(3deg);
    }

    100% {
        transform: translateY(0vh) rotate(-3deg);
    }
}

/* Contract Address Container */
.ca-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(1.5vh);
    -webkit-backdrop-filter: blur(1.5vh);
    border: 0.4vh solid #000;
    border-radius: 5vh;
    padding: 1.5vh 3vh;
    margin-top: 4vh;
    box-shadow: 0.8vh 0.8vh 0 #000;
    gap: 2vh;
    max-width: 90vw;
    z-index: 20;
}

.ca-label {
    font-family: var(--font-heading);
    font-size: 2.5vh;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-shadow: 0.3vh 0.3vh 0 #000;
}

.ca-address {
    font-family: monospace;
    font-size: 2.2vh;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vh;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0.3vh 0.3vh 0 #000);
}

.copy-btn:hover {
    transform: scale(1.15) rotate(10deg);
    color: var(--secondary-color);
}

.copy-btn:active {
    transform: scale(0.9) translateY(0.3vh);
}

/* Social Buttons Below CA */
.socials-container {
    display: flex;
    gap: 3vh;
    margin-top: 4vh;
    z-index: 20;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 1.5vh 3vh;
    border-radius: 7.5vh;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 2vh;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
    text-decoration: none;

    background: var(--glass-bg);
    backdrop-filter: blur(1.5vh);
    -webkit-backdrop-filter: blur(1.5vh);
    color: #fff;
    border: 0.5vh solid #000;
    box-shadow: 0.8vh 0.8vh 0 #000;
    text-shadow: 0.2vh 0.2vh 0 #000;
    display: inline-block;
}

.social-btn:hover {
    transform: translateY(-1vh) scale(1.05) rotate(2deg);
    box-shadow: 1.2vh 1.6vh 0 #000;
}

.social-btn:active {
    transform: translateY(0.3vh);
    box-shadow: 0.2vh 0.2vh 0 #000;
}

.social-btn.x-btn:hover {
    background: #000;
    color: #fff;
    border-color: #1DA1F2;
    text-shadow: 0 0 1vh #1DA1F2;
}

.social-btn.dex-btn:hover {
    background: #000;
    color: #00ff00;
    border-color: #00ff00;
    text-shadow: 0 0 1vh #00ff00;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10vh 5vw;
}

.about-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4vh;
    width: 100%;
    max-width: 140vh;
}

.about-content,
.video-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container {
    gap: 3vh;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(2vh);
    -webkit-backdrop-filter: blur(2vh);
    border: 0.5vh solid #000;
    border-radius: 4vh;
    padding: 8vh 4vh;
    box-shadow: 1.5vh 1.5vh 0 #000;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 6vh;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5vh;
    text-transform: uppercase;
    letter-spacing: 0.3vh;
    text-shadow: 0.4vh 0.4vh 0 #000;
    -webkit-text-stroke: 0.2vh #000;
}

.primary-text {
    color: var(--primary-color);
    text-shadow: 0.4vh 0.4vh 0 #000, 0 0 2vh rgba(255, 0, 127, 0.5);
}

.about-text {
    font-size: 3vh;
    line-height: 1.6;
    margin-bottom: 3vh;
    color: #fff;
    font-weight: 600;
    text-shadow: 0.2vh 0.2vh 0 #000;
}

.highlight-text {
    font-size: 3.5vh;
    color: var(--secondary-color);
    font-weight: 800;
    margin-top: 5vh;
    margin-bottom: 0;
    transform: rotate(-2deg);
    display: inline-block;
}

.wybie-video {
    width: 100%;
    height: 58vh;
    object-fit: cover;
    object-position: center top;
    border-radius: 2vh;
    border: 0.4vh solid #000;
    box-shadow: 0.8vh 0.8vh 0 #000;
}

.tiktok-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 1.5vh 3vh;
    border-radius: 7.5vh;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 2.2vh;
    text-transform: uppercase;
    letter-spacing: 0.2vh;
    text-decoration: none;

    background: #00f2fe;
    /* TikTok-esque cyan */
    color: #000;
    border: 0.5vh solid #000;
    box-shadow: 0.8vh 0.8vh 0 #000;
    text-shadow: 0.1vh 0.1vh 0 #fff;
    display: inline-block;
}

.tiktok-btn:hover {
    transform: translateY(-1vh) scale(1.05) rotate(-2deg);
    box-shadow: 1.2vh 1.6vh 0 #000;
    background: #fe0979;
    /* TikTok-esque pink */
    color: #fff;
    text-shadow: 0.2vh 0.2vh 0 #000;
}

.tiktok-btn:active {
    transform: translateY(0.3vh);
    box-shadow: 0.2vh 0.2vh 0 #000;
}

/* Wybie Section */
.wybie-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10vh 5vw;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3vh;
    width: 100%;
    max-width: 140vh;
}

.gallery-img {
    height: 40vh;
    width: auto;
    object-fit: cover;
    padding: 1vh;
    /* Small padding inside the glass panel */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-img:hover {
    z-index: 10;
}

.gallery-img:nth-child(odd):hover {
    transform: scale(1.1) rotate(3deg);
}

.gallery-img:nth-child(even):hover {
    transform: scale(1.1) rotate(-3deg);
}


/* Footer styling */
.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(2vh);
    -webkit-backdrop-filter: blur(2vh);
    border-top: 0.3vh solid var(--glass-border);
    padding: 6vh 5%;
    margin-top: 10vh;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4vh;
    width: 100%;
    max-width: 140vh;
    margin: 0 auto;
}

.footer-logo .ticker {
    font-family: var(--font-heading);
    font-size: 5vh;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2vh;
    -webkit-text-stroke: 0.2vh #000;
    text-shadow: 0.4vh 0.4vh 0 var(--primary-color), 0.8vh 0.8vh 0 #000;
    transform: rotate(-5deg);
    display: inline-block;
}

.footer-disclaimer {
    flex: 1;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 2vh;
    color: #fff;
    line-height: 1.6;
    font-weight: 700;
    text-shadow: 0.2vh 0.2vh 0.4vh rgba(0, 0, 0, 0.8);
}

.footer-socials {
    display: flex;
    justify-content: center;
}

.footer-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6vh;
    height: 6vh;
    padding: 0;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 100vh) {
    .glass-nav {
        flex-direction: column;
        gap: 2vh;
        padding: 2vh 5%;
    }

    .nav-actions {
        flex-direction: column;
        gap: 2vh;
    }

    .logo .ticker {
        font-size: 4vh;
    }

    .nav-links {
        gap: 2vh;
    }

    .nav-btn {
        font-size: 1.5vh;
        padding: 0.8vh 1.6vh;
    }

    .buy-btn {
        padding: 1.2vh 2.2vh;
        font-size: 1.6vh;
    }

    .floating-wybie {
        max-width: 30vh;
    }

    .about-container {
        flex-direction: column;
        gap: 2vh;
    }

    .glass-panel {
        padding: 5vh 3vh;
    }

    .section-title {
        font-size: 4.5vh;
    }

    .about-text {
        font-size: 2.2vh;
    }

    .highlight-text {
        font-size: 2.8vh;
    }

    .gallery-img {
        height: 25vh;
    }

    .glass-footer {
        padding: 6vh 8%;
    }

    .footer-content {
        flex-direction: column;
        gap: 3vh;
    }

    .footer-logo .ticker {
        font-size: 4vh;
    }
}