:root {
    --bg-color: #050508;
    --text-main: #f0f0f5;
    --primary-glow: #ff9d00;
    --secondary-glow: #ff4a00;
    --gold: #ffc800;
    --glass-bg: rgba(20, 20, 25, 0.4);
    --glass-border: rgba(255, 200, 0, 0.15);
}

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

body {
    background-color: var(--bg-color);
    background-image: url('bg3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-main);
    font-family: 'Delius', cursive;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    min-height: 100vh;
}

/* Particles Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(21, 16, 0, 0.3) 0%, rgba(5, 5, 8, 0.8) 100%);
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.8vh 18%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(1vh);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 3.1vh;
    font-weight: 900;
    letter-spacing: 0.2vh;
    background: linear-gradient(90deg, var(--gold), var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 2vh rgba(255, 200, 0, 0.4);
}

.nav-links {
    display: flex;
    gap: 2.4vh;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 2vh;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-btn {
    padding: 1vh 2.2vh;
    border-radius: 5vh;
    background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
    color: white !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 1.7vh !important;
    box-shadow: 0 0 1.5vh rgba(255, 157, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-0.2vh);
    box-shadow: 0 0 2.5vh rgba(255, 157, 0, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    padding-top: 12vh;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideUp 1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.glitch {
    font-size: 9.6vh;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: white;
    text-shadow: 0 0 3vh var(--primary-glow);
    margin-bottom: 0.6vh;
}

.subtitle {
    font-size: 3.6vh;
    font-weight: 800;
    background: linear-gradient(90deg, var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8vh;
    letter-spacing: 0.2vh;
}

.description {
    font-size: 2.2vh;
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 3vh;
    font-weight: 300;
    max-width: 80vh;
}

.action-buttons {
    display: flex;
    gap: 1.8vh;
    margin-bottom: 3.6vh;
    justify-content: center;
}

.btn {
    padding: 1.4vh 3vh;
    border-radius: 5vh;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.7vh;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    position: relative;
    background: transparent;
    color: white;
    border: none;
    z-index: 1;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--secondary-glow), var(--primary-glow), var(--gold));
    z-index: -1;
    border-radius: 5vh;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 5vh;
    box-shadow: 0 0 3vh var(--primary-glow);
    z-index: -2;
    transition: opacity 0.3s ease;
}

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

.primary-btn:hover .btn-glow {
    box-shadow: 0 0 5vh var(--gold);
}

.outline-btn {
    background: transparent;
    color: var(--gold);
    border: 0.2vh solid var(--gold);
}

.outline-btn:hover {
    background: rgba(255, 200, 0, 0.1);
    box-shadow: 0 0 2vh rgba(255, 200, 0, 0.2) inset, 0 0 2vh rgba(255, 200, 0, 0.2);
}

.contract-box {
    display: flex;
    align-items: center;
    gap: 1.2vh;
    background: var(--glass-bg);
    padding: 1.2vh 1.8vh;
    border-radius: 1.4vh;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(1vh);
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.address {
    font-family: monospace;
    color: var(--primary-glow);
    font-size: 1.4vh;
}

#copy-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-icon {
    width: 3vh;
    height: 3vh;
}

#copy-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.copied-tooltip {
    position: absolute;
    top: -3.6vh;
    right: 1.8vh;
    background: var(--gold);
    color: black;
    padding: 0.5vh 1vh;
    border-radius: 0.4vh;
    font-size: 1.1vh;
    font-weight: bold;
    opacity: 0;
    transform: translateY(1vh);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.copied-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image Container */
.hero-image-container {
    width: 103.5vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto 1.8vh auto;
    animation: fadeIn 2s ease-in;
}

.hero-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.4) 0%, transparent 60%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    mix-blend-mode: screen;
}

/* About Section */
.about-section {
    padding: 7.2vh 8%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    scroll-margin-top: 12vh;
}

.about-flex-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4vh;
}

.about-video-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2.8vh;
    padding: 2vh;
    backdrop-filter: blur(1.5vh);
    box-shadow: 0 2vh 5vh rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2vh;
}

.tiktok-btn-floating {
    position: absolute;
    bottom: 4vh;
    right: 4vh;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5vh 3vh;
    border-radius: 5vh;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8vh;
    display: flex;
    align-items: center;
    gap: 1.5vh;
    backdrop-filter: blur(2vh);
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.5), 0 0 2vh rgba(254, 44, 85, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.tiktok-btn-floating:hover {
    transform: scale(1.05) translateY(-0.5vh);
    background: #fe2c55;
    border-color: #fe2c55;
    box-shadow: 0 0 3vh rgba(254, 44, 85, 0.8);
    color: white;
}

.tiktok-icon {
    width: 2.5vh;
    height: 2.5vh;
}

.glass-card {
    flex: 1.2;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2.8vh;
    padding: 4.8vh;
    backdrop-filter: blur(1.5vh);
    text-align: center;
    box-shadow: 0 2vh 5vh rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.glass-card h3 {
    font-size: 4.8vh;
    color: var(--gold);
    margin-bottom: 1.8vh;
    font-weight: 900;
}

.glass-card p {
    font-size: 2.2vh;
    color: #e0e0ea;
    line-height: 1.8;
    max-width: 80vh;
    margin: 0 auto 3.6vh auto;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4.8vh;
}

.stat-item h4 {
    font-size: 6vh;
    background: linear-gradient(180deg, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.stat-item p {
    font-size: 1.6vh;
    color: var(--gold);
    margin-top: 0.6vh;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1vh;
}

.memes-section {
    padding: 2.4vh 5% 6vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 8vh;
}

.section-title {
    font-size: 4.8vh;
    margin-bottom: 3.6vh;
    text-align: center;
    background: linear-gradient(90deg, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 2vh rgba(255, 200, 0, 0.2);
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33vh, 1fr));
    gap: 2.4vh;
    width: 100%;
    max-width: 144vh;
}

.meme-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(1vh);
    -webkit-backdrop-filter: blur(1vh);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.4vh;
    padding: 1.2vh;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meme-card:hover {
    transform: translateY(-0.6vh);
    box-shadow: 0 1.2vh 3.6vh rgba(255, 200, 0, 0.2);
    border-color: rgba(255, 200, 0, 0.5);
}

.meme-image {
    width: 100%;
    height: auto;
    border-radius: 1.4vh;
    display: block;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3.6vh 5%;
    margin-top: 6vh;
    background: rgba(0, 0, 0, 0.5);
}

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

.footer-logo {
    font-size: 2.2vh;
    font-weight: 900;
    color: #555;
}

.disclaimer {
    color: #666;
    font-size: 1.3vh;
}

.socials {
    display: flex;
    gap: 1.8vh;
}

.social-link {
    width: 4.8vh;
    height: 4.8vh;
    color: #888;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-glow);
    transform: translateY(-0.3vh);
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0vh);
    }

    50% {
        transform: translateY(-2vh);
    }

    100% {
        transform: translateY(0vh);
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(5vh);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 15vh;
        gap: 4vh;
    }

    .action-buttons {
        justify-content: center;
    }

    .contract-box {
        margin: 0 auto;
    }

    .stats {
        flex-direction: column;
        gap: 2.4vh;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.4vh;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.2vh 4vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }

    .logo {
        font-size: 2.4vh;
        flex-shrink: 0;
    }

    .nav-links {
        gap: 1.2vh;
        flex-shrink: 0;
    }

    /* Hide About & Memes on mobile - only show Buy Now */
    .nav-links a:not(.nav-btn) {
        display: none;
    }

    .nav-btn {
        padding: 0.8vh 2vw;
        font-size: 1.4vh !important;
        white-space: nowrap;
        margin-right: 2vw;
    }

    .hero {
        padding-top: 10vh;
        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-image-container {
        max-width: 100%;
        margin-bottom: 4vh;
        transform: scale(1.3);
        transform-origin: top center;
    }

    .glitch {
        font-size: 6.6vh;
    }

    .subtitle {
        font-size: 2.6vh;
    }

    .description {
        font-size: 1.9vh;
        margin-bottom: 1.8vh;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2vh;
    }

    .btn {
        width: 80%;
        justify-content: center;
        font-size: 1.9vh;
        padding: 1.6vh 2.4vh;
        white-space: nowrap;
    }

    .contract-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6vh;
        padding: 1vh 1.2vh;
        width: 100%;
    }

    .address {
        font-size: 1.3vh;
        word-break: break-all;
        text-align: center;
        flex: 1 1 100%;
    }

    .about-section {
        padding: 3.6vh 5%;
    }

    .about-flex-container {
        flex-direction: column;
    }

    .about-video-container {
        width: 100%;
        height: 30vh;
        margin-top: 2vh;
    }

    .tiktok-btn-floating {
        bottom: 2vh;
        right: 2vh;
        padding: 1vh 2vh;
        font-size: 1.4vh;
    }

    .tiktok-icon {
        width: 1.8vh;
        height: 1.8vh;
    }

    .glass-card {
        padding: 2.4vh 1.8vh;
    }

    .glass-card h3 {
        font-size: 3.6vh;
    }

    .glass-card p {
        font-size: 1.9vh;
    }

    .stats {
        flex-direction: column;
        gap: 1.8vh;
    }

    .stat-item h4 {
        font-size: 4.2vh;
    }

    .section-title {
        font-size: 3.6vh;
    }

    .memes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2vh;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.8vh;
        text-align: center;
    }

    .disclaimer {
        font-size: 1.2vh;
        padding: 0 1.2vh;
    }
}

@media (max-width: 400px) {
    .memes-grid {
        grid-template-columns: 1fr;
    }

    .glitch {
        font-size: 5.4vh;
    }
}