:root {
    --bg-color: #06060a;
    --text-main: #fcfcff;
    --gold: #ffd23f;
    --aura-orange: #ff9f1c;
    --aura-glow: #ffe169;
    --dark-grey: #12121c;
    --glass-bg: rgba(22, 22, 30, 0.5);
    --glass-border: rgba(255, 210, 63, 0.18);
    --accent-gradient: linear-gradient(135deg, var(--gold), var(--aura-orange));
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Particle Canvas Container */
#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(255, 210, 63, 0.04) 0%, rgba(6, 6, 10, 0.95) 100%);
}

/* Nav Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2vh 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(6, 6, 10, 0.7);
    backdrop-filter: blur(1.5vh);
    -webkit-backdrop-filter: blur(1.5vh);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.1vh;
    font-family: 'Fredoka', sans-serif;
    font-size: 3.2vh;
    font-weight: 700;
    letter-spacing: 0.06vh;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 2.2vh rgba(255, 210, 63, 0.3);
}

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

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

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

.nav-btn {
    padding: 1.1vh 2.6vh;
    border-radius: 3.2vh;
    background: var(--accent-gradient);
    color: #000 !important;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 1.57vh !important;
    box-shadow: 0 0 1.6vh rgba(255, 210, 63, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-btn:hover {
    transform: translateY(-0.25vh);
    box-shadow: 0 0 2.6vh rgba(255, 210, 63, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 13vh 5% 7vh;
    text-align: center;
    max-width: 130vh;
    margin: 0 auto;
}

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

.hero-image-container {
    width: 68vh;
    max-width: 100%;
    position: relative;
    margin-bottom: 2.8vh;
    animation: fadeIn 1.5s ease-in;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 2.2vh;
    border: 2px solid var(--glass-border);
    box-shadow: 0 1.1vh 3.3vh rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

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

.glitch {
    font-family: 'Fredoka', sans-serif;
    font-size: 9.26vh;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 3.3vh var(--aura-orange);
    margin-bottom: 0.55vh;
    letter-spacing: -0.1vh;
}

.subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.24vh;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.2vh;
    letter-spacing: 0.22vh;
}

.action-buttons {
    display: flex;
    gap: 2.2vh;
    margin-bottom: 4vh;
}

.btn {
    padding: 1.5vh 3.3vh;
    border-radius: 4.4vh;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.75vh;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    position: relative;
    background: var(--accent-gradient);
    color: #000;
    border: none;
    box-shadow: 0 0 1.6vh rgba(255, 159, 28, 0.4);
}

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

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 3.3vh rgba(255, 210, 63, 0.8);
}

.primary-btn:hover .btn-glow {
    opacity: 1;
}

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

.outline-btn:hover {
    background: rgba(255, 210, 63, 0.08);
    box-shadow: 0 0 2.2vh rgba(255, 210, 63, 0.3);
}

/* Contract Box styling */
.contract-box {
    display: flex;
    align-items: center;
    gap: 1.3vh;
    background: var(--glass-bg);
    padding: 1.3vh 2.2vh;
    border-radius: 1.6vh;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(1.1vh);
    -webkit-backdrop-filter: blur(1.1vh);
    position: relative;
    max-width: 100%;
}

.contract-box span:first-child {
    font-weight: 800;
    color: var(--gold);
}

.address {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.62vh;
    letter-spacing: 0.06vh;
}

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

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

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

.copied-tooltip {
    position: absolute;
    top: -4vh;
    right: 2.2vh;
    background: var(--gold);
    color: #000;
    padding: 0.65vh 1.3vh;
    border-radius: 0.65vh;
    font-size: 1.39vh;
    font-weight: bold;
    opacity: 0;
    transform: translateY(1.1vh);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

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

/* About Section */
.about-section {
    padding: 10vh 8%;
    max-width: 150vh;
    margin: 0 auto;
    scroll-margin-top: 8.5vh;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-flex-container {
    display: flex;
    align-items: stretch;
    gap: 5.5vh;
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2.6vh;
    padding: 6.5vh;
    backdrop-filter: blur(1.1vh);
    -webkit-backdrop-filter: blur(1.1vh);
    box-shadow: 0 2.2vh 5.5vh rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.about-card {
    flex: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 5.09vh;
    color: var(--gold);
    margin-bottom: 2.8vh;
    text-shadow: 0 0 1.6vh rgba(255, 210, 63, 0.3);
}

.about-card p {
    font-size: 2.59vh;
    line-height: 1.85;
    color: #e2e2f3;
    margin-bottom: 4.4vh;
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 2.2vh;
    margin-top: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    background: rgba(6, 6, 10, 0.5);
    padding: 2.2vh 1.6vh;
    border-radius: 1.85vh;
    border: 1px solid rgba(255, 210, 63, 0.12);
    box-shadow: 0 1.1vh 2.2vh rgba(0, 0, 0, 0.2);
}

.stat-item h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4.16vh;
    color: #fff;
    text-shadow: 0 0 1.1vh rgba(255, 210, 63, 0.5);
    margin-bottom: 0.55vh;
}

.stat-item p {
    font-size: 1.48vh;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.11vh;
    margin-bottom: 0;
}

.about-video-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2.6vh;
    padding: 1.6vh;
    position: relative;
    box-shadow: 0 2.2vh 5.5vh rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

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

.instagram-btn-floating {
    position: absolute;
    bottom: 3.2vh;
    right: 3.2vh;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 1.3vh 2.6vh;
    border-radius: 3.2vh;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.57vh;
    display: flex;
    align-items: center;
    gap: 1.1vh;
    backdrop-filter: blur(0.55vh);
    box-shadow: 0 0.55vh 1.6vh rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.1vh);
}

.about-video-container:hover .instagram-btn-floating {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.instagram-btn-floating:hover {
    transform: scale(1.05) translateY(-0.33vh);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 0 2.8vh rgba(220, 39, 67, 0.82);
}

.instagram-icon {
    width: 1.95vh;
    height: 1.95vh;
}

/* Footer styling */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 5.5vh 10%;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 8.5vh;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 130vh;
    margin: 0 auto;
    gap: 3.2vh;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.9vh;
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2vh;
    font-weight: 700;
    color: #666675;
}

.disclaimer {
    color: #77778c;
    font-size: 1.39vh;
    max-width: 65vh;
    line-height: 1.6;
    text-align: center;
}

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

.social-link {
    width: 2.78vh;
    height: 2.78vh;
    color: #77778c;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-link:hover {
    color: var(--gold);
    transform: translateY(-0.25vh);
}

.social-link svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animations declarations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(4.4vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1.85vh);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.95;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.6;
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    nav {
        padding: 1.85vh 5%;
    }

    .about-flex-container {
        flex-direction: column;
        gap: 3.7vh;
    }

    .about-video-container {
        width: 100%;
        height: auto;
    }

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

@media (max-width: 768px) {
    .glitch {
        font-size: 5.5vh;
    }

    .subtitle {
        font-size: 2.2vh;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1.85vh;
    }

    .btn {
        width: 100%;
        max-width: 32vh;
    }

    .contract-box {
        flex-direction: column;
        gap: 0.9vh;
        padding: 1.85vh;
        text-align: center;
        width: 100%;
        max-width: 38vh;
    }

    .address {
        font-size: 1.2vh;
        word-break: break-all;
    }

    .nav-links a:not(.nav-btn) {
        display: none;
    }

    .nav-btn {
        padding: 0.93vh 1.85vh;
        font-size: 1.39vh !important;
    }

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

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