@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap";

:root {
    --color-bg: #050505;
    --color-gold: #f3ba2f;
    --color-gold-dark: #c29525;
    --color-text: #fff;
    --color-text-muted: #a0a0a0;
    --color-card-bg: #ffffff08;
    --color-card-border: #f3ba2f26;
    --font-main: "Outfit", sans-serif;
    --glass-shadow: 0 8px 32px 0 #00000080
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2
}

.text-gradient {
    background: linear-gradient(90deg, #f3ba2f, #ffe898, #f3ba2f);
    -webkit-text-fill-color: transparent;
    color: #0000;
    -webkit-background-clip: text;
    background-clip: text
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.glass-panel {
    background: var(--color-card-bg);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    transition: transform .3s, box-shadow .3s, border-color .3s
}

.glass-panel:hover {
    border-color: #f3ba2f4d;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px #f3ba2f1a
}

.btn {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    transition: all .3s;
    display: inline-flex
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    box-shadow: 0 4px 20px #f3ba2f4d
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #f3ba2f80
}

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

.btn-secondary:hover {
    background: #f3ba2f1a
}

.section-padding {
    padding: 120px 0
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    font-size: 3rem
}

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

    50% {
        transform: translateY(-20px)
    }

    to {
        transform: translateY(0)
    }
}

.animate-float {
    animation: 6s ease-in-out infinite float
}

.flex-center {
    justify-content: center;
    align-items: center;
    display: flex
}

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

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    display: grid
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    display: grid
}

.fixedFontSize {
    font-size: 4rem;
}

@media (width<=768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .section-title {
        margin-bottom: 2rem;
        font-size: 2rem
    }

    .section-padding {
        padding: 80px 0
    }

    .fixedFontSize {
        font-size: 2rem;
    }
}

.hero-logo-container {
    justify-content: center;
    margin-bottom: 2rem;
    display: flex;
    position: relative
}

.hero-logo {
    object-fit: contain;
    background-color: #0000;
    border-radius: 50%;
    width: 280px;
    height: 280px;
    box-shadow: 0 0 50px #f3ba2f4d
}

@media (width<=768px) {
    .hero-logo {
        width: 200px;
        height: 200px
    }
}

.ca-container {
    border-radius: 50px;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 2rem auto;
    padding: 15px 25px;
    display: flex
}

.ca-label {
    color: var(--color-text-muted);
    white-space: nowrap;
    font-weight: 600
}

.ca-value {
    color: var(--color-gold);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: monospace;
    font-size: 1.1rem;
    overflow: hidden
}

.copy-btn {
    color: var(--color-text);
    cursor: pointer;
    background: 0 0;
    border: none;
    justify-content: center;
    align-items: center;
    transition: all .2s;
    display: flex
}

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

@media (width<=600px) {
    .ca-container {
        border-radius: 16px;
        flex-direction: column;
        padding: 20px
    }

    .ca-value {
        word-break: break-all;
        white-space: normal;
        font-size: .9rem
    }
}

.hero-title {
    margin-bottom: 1rem;
    font-size: 4rem
}

.hero-subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem
}

.hero-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    display: flex
}