:root {
    --primary-color: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --secondary-color: #00cc6a;
    --bg-dark: #050a05;
    --bg-card: rgba(20, 30, 20, 0.6);
    --text-main: #ffffff;
    --text-muted: #a0b0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-globules {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 100, 50, 0.1) 0%, transparent 40%);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-connect {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-connect:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    /* Nav height */
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-right: 1rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Countdown */
.countdown-container {
    margin-top: 4rem;
    min-width: 600px;
}

.countdown-container h2 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
}

.time-unit span {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
}

.time-unit label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Calculator */
.calculator-section {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.container h2 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.container p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.calculator-card {
    text-align: left;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.apy-display {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 0.3s;
}

.result-box:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
}

.result-box.featured {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.result-box .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.result-box .unit {
    font-size: 0.8rem;
    color: var(--primary-color);
}

footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .h1 {
        font-size: 2.5rem;
    }

    .countdown-container {
        min-width: auto;
        width: 100%;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-unit span {
        font-size: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Update to generic styles */
.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.price-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.price-tag .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-tag .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-tag .note {
    font-size: 0.7rem;
    opacity: 0.8;
}

.price-tag.future .value {
    color: var(--text-main);
}

.arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.reward-info {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    background: rgba(0, 204, 106, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

/* Roadmap */
.roadmap-section {
    padding: 5rem 5%;
    position: relative;
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.timeline-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.timeline-content ul {
    list-style-position: inside;
    text-align: left;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.faq-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Education */
.education-section {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.1);
}

.education-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.edu-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.edu-card:hover {
    transform: translateY(-10px);
}

.edu-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.edu-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

/* Advantages */
.advantages-section {
    padding: 5rem 5%;
    text-align: center;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.adv-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.adv-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.phase-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Button & Link reset */
a.btn-primary,
a.btn-secondary {
    text-decoration: none;
    display: inline-block;
}