/* ====================================
   FROGEN TOKEN - LIGHTER DESIGN
   Inspired by frogen.io colors
   ==================================== */

/* ============ CSS Variables ============ */
:root {
    /* Brand Colors - Lighter & More Vibrant */
    --color-primary: #00ff88;
    --color-primary-dark: #00cc6a;
    --color-primary-light: #66ffb3;
    --color-secondary: #ffd700;
    --color-accent: #00d4ff;
    
    /* Background Colors - LIGHTER */
    --color-bg-main: #1C2D41;        /* Medium blue-gray (like original) */
    --color-bg-light: #2a3f5f;       /* Lighter blue */
    --color-bg-lighter: #3d5a80;     /* Even lighter */
    --color-nav: #3283a6;            /* Bright blue nav (like original) */
    --color-card: #264a6b;           /* Card backgrounds */
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #d4e3f7;
    --color-text-muted: #98b4d4;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-hero: linear-gradient(180deg, #1C2D41 0%, #152738 100%);
    --gradient-section: linear-gradient(180deg, #2a3f5f 0%, #1C2D41 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.4);
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ Global Reset ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ============ Typography ============ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: var(--color-primary-light);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============ Container ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
    color: #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

/* ============ Navigation ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 1000;
    transition: 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    background: rgba(50, 131, 166, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-text {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: 0.2s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link-official {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a1a1a;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
    color: #1a1a1a;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('images/hero-bg.png') center center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-2xl) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.hero-crew {
    flex-shrink: 0;
    max-width: 450px;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.hero-crew img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-xl);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 700px;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    max-width: 600px;
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-md);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ Sections ============ */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-dark {
    background: var(--color-bg-light);
    position: relative;
}

/* What Is FROGEN section with crypto pattern */
#what-is {
    background: var(--color-bg-light) url('images/sectio2-bg60.png') repeat;
    background-size: auto;
}

/* Roadmap section with subtle gradient */
#roadmap {
    background: linear-gradient(135deg, #2a3f5f 0%, #324a6b 50%, #2a3f5f 100%);
}

/* Gasless Technology section with seamless pattern background */
.section-gasless {
    background-color: var(--color-bg-light);
    background-image: url('images/gasless-bgb.png');
    background-repeat: repeat;
    background-size: 400px 400px;
    background-position: 0 0;
    position: relative;
}

/* Responsive background sizing */
@media (max-width: 768px) {
    .section-gasless {
        background-size: 300px 300px;
    }
}

@media (max-width: 480px) {
    .section-gasless {
        background-size: 200px 200px;
    }
}

.section-gasless::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 45, 65, 0.85);
    pointer-events: none;
    z-index: 1;
}

.section-gasless > .container {
    position: relative;
    z-index: 2;
}

#what-is .section-title::before {
    content: 'ⓘ ';
    color: #16f6d2;
    margin-right: 0.25rem;
    font-size: 1.25em;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    top: -4px;
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-xl);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    color: var(--color-text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
}

/* ============ About Section ============ */
.section-about {
    background: linear-gradient(180deg, #1C2D41 0%, #243852 100%);
    position: relative;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-secondary);
}

.info-box {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-card);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}

.info-box-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.info-box-content h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.info-box-content p {
    color: var(--color-text-secondary);
}

.feature-list {
    margin: var(--spacing-lg) 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.feature-list i {
    color: #16f6d2;
    margin-top: 4px;
}

/* Gasless Technology two-column layout */
.gasless-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
}

.gasless-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.gasless-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.gasless-list {
    flex: 1;
}

.gasless-list .feature-list {
    margin: 0;
}

/* SmartVest two-column layout - image on RIGHT */
.smartvest-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
}

.smartvest-list {
    flex: 1;
}

.smartvest-list .feature-list {
    margin: 0;
}

.smartvest-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.smartvest-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Dynamic Staking two-column layout - image on RIGHT */
.staking-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
}

.staking-list {
    flex: 1;
}

.staking-list .feature-list {
    margin: 0;
}

.staking-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.staking-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* BitStreets two-column layout - image on RIGHT */
.bitstreets-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
}

.bitstreets-list {
    flex: 1;
}

.bitstreets-list .feature-list {
    margin: 0;
}

.bitstreets-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.bitstreets-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gasless-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .gasless-image {
        flex: 1;
        max-width: 100%;
    }
    
    .smartvest-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .smartvest-image {
        flex: 1;
        max-width: 100%;
        order: -1;
    }
    
    .staking-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .staking-image {
        flex: 1;
        max-width: 100%;
        order: -1;
    }
    
    .bitstreets-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .bitstreets-image {
        flex: 1;
        max-width: 100%;
        order: -1;
    }
}

.cta-box {
    padding: var(--spacing-lg);
    background: rgba(22, 246, 210, 0.05);
    border: 1px solid rgba(22, 246, 210, 0.3);
    border-radius: var(--radius-md);
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.cta-box p {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.cta-box::before {
    content: '🔗';
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: #16f6d2;
    vertical-align: middle;
    display: block;
    margin-bottom: 0.5rem;
}

.link-official {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 0.5rem 0;
}

.cta-box .link-official,
.cta-box a,
.cta-box strong {
    color: #16f6d2;
}

.cta-box .link-official:hover,
.cta-box a:hover {
    color: #3df8dd;
}

/* ============ Features Grid ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-xl);
    background: #204559;
    border: 1px solid rgba(22, 246, 210, 0.2);
    border-radius: var(--radius-lg);
    transition: 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #16f6d2;
    box-shadow: 0 0 20px rgba(22, 246, 210, 0.4);
}

.feature-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto var(--spacing-md) auto;
    background: linear-gradient(135deg, rgba(22, 246, 210, 0.1) 0%, rgba(22, 246, 210, 0.05) 100%);
    border: 2px solid rgba(22, 246, 210, 0.3);
}

.feature-icon i {
    font-size: 4rem;
    color: #16f6d2;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-secondary);
}

.mini-list {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-list li {
    padding: 0.375rem 0;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* ============ Tokenomics ============ */
.section-tokenomics {
    background: var(--gradient-section);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.token-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-card);
    border: 2px solid rgba(22, 246, 210, 0.3);
    border-radius: var(--radius-lg);
    transition: 0.3s ease;
    position: relative;
}

.token-item:hover {
    transform: translateY(-5px);
    border-color: #16f6d2;
    box-shadow: var(--shadow-glow);
}

/* Locked token items with amber/gold border */
.token-item-locked {
    border: 2px solid rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding-top: calc(var(--spacing-xl) + 0.5rem);
}

.token-item-locked:hover {
    border-color: rgba(255, 193, 7, 0.8);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.2);
}

/* Unlocked token items with green/cyan border */
.token-item-unlocked {
    border: 2px solid rgba(22, 246, 210, 0.6);
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(22, 246, 210, 0.05) 100%);
    padding-top: calc(var(--spacing-xl) + 0.5rem);
}

.token-item-unlocked:hover {
    border-color: #16f6d2;
    box-shadow: 0 8px 32px rgba(22, 246, 210, 0.3);
}

/* Partially locked token items with orange border */
.token-item-partial {
    border: 2px solid rgba(255, 152, 0, 0.5);
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(255, 152, 0, 0.05) 100%);
    padding-top: calc(var(--spacing-xl) + 0.5rem);
}

.token-item-partial:hover {
    border-color: rgba(255, 152, 0, 0.8);
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.2);
}

/* Lock badge */
.lock-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a2332;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-xl);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    z-index: 1;
}

.lock-badge i {
    font-size: 0.75rem;
}

/* Unlocked badge - green/cyan */
.lock-badge-unlocked {
    background: linear-gradient(135deg, #16f6d2 0%, #00e5b8 100%);
    color: #1a2332;
    box-shadow: 0 4px 12px rgba(22, 246, 210, 0.4);
}

/* Partially locked badge - orange */
.lock-badge-partial {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.token-percentage {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.token-item h4 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.token-item p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.supply-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.supply-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(0, 255, 136, 0.08);
    border-radius: var(--radius-md);
}

.supply-card i {
    font-size: 2rem;
    color: var(--color-primary);
}

.supply-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.supply-card p {
    color: var(--color-text-secondary);
    margin: 0;
}

/* ============ Roadmap ============ */
.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: rgba(0, 255, 136, 0.3);
}

.roadmap-item:last-child::before {
    display: none;
}

.roadmap-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1929;
    box-shadow: var(--shadow-glow);
}

.roadmap-content {
    flex: 1;
    padding: var(--spacing-lg);
    background: var(--color-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.roadmap-content h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.roadmap-content p {
    color: var(--color-text-secondary);
}

.roadmap-status {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--spacing-sm);
}

.roadmap-status.completed {
    background: rgba(0, 255, 136, 0.2);
    color: var(--color-primary);
}

.roadmap-status.active {
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-secondary);
}

.roadmap-status.upcoming,
.roadmap-status.future {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.roadmap-item.highlight .roadmap-content {
    border-color: var(--color-secondary);
    background: rgba(255, 215, 0, 0.08);
}

/* ============ Team Section ============ */
.section-team {
    background: var(--color-bg-light) url('images/sectio2-bg60.png') repeat;
    background-size: auto;
}

.team-frogs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.team-frog {
    flex: 0 0 200px;
    max-width: 200px;
}

.team-frog img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #16f6d2;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-frog img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(22, 246, 210, 0.4);
}

@media (max-width: 768px) {
    .team-frogs {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .team-frog {
        flex: 0 0 150px;
        max-width: 150px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.team-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.team-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.team-card h4 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.team-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

.trust-section {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(0, 255, 136, 0.08);
    border-radius: var(--radius-lg);
}

.trust-section h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ============ CTA Section ============ */
.section-cta {
    background: var(--gradient-hero);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

.cta-content > p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ============ Footer ============ */
.footer {
    background: var(--color-bg-light);
    border-top: 1px solid rgba(22, 246, 210, 0.2);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============ Article Pages ============ */
.breadcrumbs {
    background: var(--color-bg-light);
    padding: var(--spacing-md) 0;
    font-size: 0.875rem;
}

.breadcrumbs nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: #16f6d2;
    transition: 0.2s ease;
}

.breadcrumbs a:hover {
    color: #00e5b8;
}

.breadcrumbs span {
    color: var(--color-text-muted);
}

.article-header {
    position: relative;
    background: #2a3f5f;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    border-bottom: 2px solid rgba(22, 246, 210, 0.2);
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gasless-bgb.png') repeat;
    background-size: 512px 512px;
    opacity: 0.5;
    z-index: 0;
}

.article-header .container {
    position: relative;
    z-index: 1;
}

.hero-content-article {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-article {
    flex: 0 0 200px;
}

.hero-logo-article img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #16f6d2;
    box-shadow: 0 8px 24px rgba(22, 246, 210, 0.3);
}

.hero-text-article {
    flex: 1;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-align: left;
}

.article-meta {
    font-size: 1.125rem;
    color: #16f6d2;
    font-weight: 500;
    text-align: left;
}

.article-content {
    position: relative;
    background: var(--color-bg-main);
    padding: var(--spacing-3xl) 0;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.png') repeat;
    background-size: 512px 512px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.article-content .container {
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: var(--spacing-3xl);
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #16f6d2;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(22, 246, 210, 0.2);
}

.content-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.content-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
}

.content-section .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.7;
}

.content-section ul {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-xl);
}

.content-section ul li {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.info-card {
    background: var(--color-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 246, 210, 0.2);
    transition: 0.3s ease;
}

.info-card:hover {
    border-color: #16f6d2;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(22, 246, 210, 0.2);
}

.info-card h3 {
    color: #16f6d2;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-card h3 i {
    font-size: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(22, 246, 210, 0.05) 0%, rgba(22, 246, 210, 0.02) 100%);
    border-left: 4px solid #16f6d2;
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-md);
}

.highlight-box h3 {
    color: #16f6d2;
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    font-size: 1.0625rem;
}

.check-list li i {
    color: #16f6d2;
    font-size: 1.25rem;
}

.benefit-list h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.benefit-list ul {
    list-style: none;
    padding: 0;
}

.benefit-list ul li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.benefit-list ul li i {
    color: #16f6d2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.feature-item {
    background: var(--color-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 246, 210, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
    transition: 0.3s ease;
}

.feature-item:hover {
    border-color: #16f6d2;
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: #16f6d2;
}

.feature-item span {
    color: var(--color-text-primary);
    font-weight: 500;
}

.standout-list {
    list-style: none;
    padding: 0;
}

.standout-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-card);
    border-radius: var(--radius-md);
    border-left: 3px solid #16f6d2;
    color: var(--color-text-primary);
    font-size: 1.0625rem;
    transition: 0.3s ease;
}

.standout-list li:hover {
    background: rgba(22, 246, 210, 0.05);
    transform: translateX(5px);
}

.standout-list li i {
    color: #16f6d2;
    font-size: 1.5rem;
    min-width: 30px;
}

/* Tokenomics Grid for Article Pages */
.tokenomics-grid-article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.token-item-article {
    position: relative;
    background: var(--color-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
    text-align: center;
    padding-top: calc(var(--spacing-xl) + 0.5rem);
}

.token-item-article:hover {
    transform: translateY(-5px);
}

.token-percentage-article {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #16f6d2;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.token-item-article h3 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.token-item-article p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tokenomics-grid-article {
        grid-template-columns: 1fr;
    }
}

.highlight-text {
    font-size: 1.25rem;
    color: #16f6d2;
    font-weight: 600;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(22, 246, 210, 0.05);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(22, 246, 210, 0.05) 0%, rgba(22, 246, 210, 0.02) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(22, 246, 210, 0.2);
}

/* Hybrid Grid - Tokenomics Style */
.hybrid-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.hybrid-box {
    background: var(--color-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(22, 246, 210, 0.3);
    text-align: center;
    transition: 0.3s ease;
}

.hybrid-box:hover {
    transform: translateY(-5px);
    border-color: #16f6d2;
    box-shadow: 0 8px 24px rgba(22, 246, 210, 0.3);
}

.hybrid-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22, 246, 210, 0.1) 0%, rgba(22, 246, 210, 0.05) 100%);
    border: 2px solid rgba(22, 246, 210, 0.3);
    border-radius: var(--radius-md);
}

.hybrid-icon i {
    font-size: 3rem;
    color: #16f6d2;
}

.hybrid-box h3 {
    color: #16f6d2;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.hybrid-box p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Dark CTA Button - Outlined Style */
.btn-cta-dark {
    background: transparent;
    color: #1a2332;
    border: 2px solid #16f6d2;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: 0.3s ease;
    border-radius: var(--radius-md);
}

.btn-cta-dark:hover {
    transform: translateY(-3px);
    background: #16f6d2;
    color: #1a2332;
    box-shadow: 0 8px 24px rgba(22, 246, 210, 0.3);
}

@media (max-width: 768px) {
    .hero-content-article {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-logo-article {
        flex: 0 0 150px;
    }
    
    .hero-logo-article img {
        width: 150px;
        height: 150px;
    }
    
    .article-title {
        font-size: 1.875rem;
        text-align: center;
    }
    
    .article-meta {
        text-align: center;
    }
    
    .hybrid-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 1.875rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .info-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.footer-top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: #16f6d2;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.badge {
    padding: 0.375rem 0.875rem;
    background: rgba(22, 246, 210, 0.15);
    border: 1px solid #16f6d2;
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    color: #16f6d2;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-3xl);
    width: 100%;
}

.footer-column {
    min-width: 0;
}

.footer-column h4 {
    color: #16f6d2;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    transition: 0.2s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #16f6d2;
    transform: translateX(4px);
}

.footer-column a i {
    margin-right: var(--spacing-xs);
    width: 16px;
    display: inline-block;
}

.footer-disclaimer {
    margin-bottom: var(--spacing-xl);
}

.disclaimer-card {
    padding: var(--spacing-md);
    background: rgba(22, 246, 210, 0.03);
    border: 1px solid rgba(22, 246, 210, 0.15);
    border-radius: var(--radius-md);
}

.disclaimer-card h4 {
    color: #16f6d2;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-card p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.official-link {
    padding: var(--spacing-sm);
    background: rgba(22, 246, 210, 0.05);
    border-radius: var(--radius-sm);
    text-align: center;
}

.official-link a {
    font-size: 0.75rem;
    font-weight: 600;
    color: #16f6d2;
}

.warning {
    color: #16f6d2 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 0.6875rem;
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-muted);
}

.footer-love {
    color: var(--color-text-muted);
}

/* ============ Responsive Design ============ */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(50, 131, 166, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .connect-btn {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-crew {
        max-width: 300px;
        order: -1;
    }
    
    .hero-cta .btn {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============ Utility Classes ============ */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
