/* Global Reset & Base Styles */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --gold-primary: #D4AF37;
    --gold-science: #C5A028;
    --gold-light: #F9E496;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    /* Start transparent to show hero image */
    padding: 2rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    /* Slightly more transparent dark */
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
    max-width: 1400px;
    /* Wider for more elegance */
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    letter-spacing: 3px;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    /* Balanced spacing */
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly softer white */
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: var(--gold-primary);
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: 0 0 8px var(--gold-primary);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--gold-light);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
    left: 0;
}

/* Buttons */
.btn-primary {
    position: relative;
    padding: 0.8rem 2rem;
    color: var(--gold-primary) !important;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 0;
    /* Sharp corners for premium feel */
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #000 !important;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-science));
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections General */
.section {
    padding: 8rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
}

.separator-gold {
    height: 3px;
    width: 80px;
    background: var(--gold-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.about-card p {
    color: var(--text-muted);
}

/* Banner */
.banner-section {
    background: linear-gradient(90deg, #1a1a1a, #0d0d0d);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.banner-content h2 {
    font-style: italic;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

/* Services */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    /* For border effect */
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.service-item {
    background: var(--bg-dark);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-item p {
    color: var(--text-muted);
}

/* Tokenomics Section */
.tokenomics-section {
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), var(--bg-dark));
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.token-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 1rem;
    border-radius: 4px;
    /* Slight rounding for modern feel */
    transition: transform 0.3s, box-shadow 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.token-card h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.token-card p {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Roadmap Section */
.roadmap-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    z-index: 0;
}

.roadmap-item {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    text-align: center;
    transition: transform 0.3s;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.phase {
    display: inline-block;
    background: var(--gold-primary);
    color: #000;
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.roadmap-item h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.roadmap-item p {
    color: var(--text-muted);
}

/* How To Buy (Steps) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--gold-primary);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-heading);
    opacity: 0.1;
    color: var(--gold-primary);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.step-card p {
    color: var(--text-muted);
}

/* Contact */
.contact-section {
    padding-bottom: 10rem;
}

.contact-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-box h2 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-body);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    background: #050505;
    text-align: center;
}

.footer-logo {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* Animations */
@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsiveness */
@media (max-width: 900px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

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

    .roadmap-container::before {
        width: 2px;
        height: 100%;
        left: 20px;
        top: 0;
        background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
    }

    .roadmap-item {
        margin-left: 2rem;
    }
}