@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d1425;
    --bg-card: #111b2e;
    --bg-card-border: #1a2a45;
    --cyan: #00e5ff;
    --cyan-dim: #00b8d4;
    --cyan-glow: rgba(0, 229, 255, 0.15);
    --green: #00e676;
    --green-glow: rgba(0, 230, 118, 0.2);
    --text-primary: #e0e6f0;
    --text-secondary: #8899b5;
    --text-muted: #556b8a;
    --orange: #ff6d00;
    --purple: #b388ff;
    --yellow: #ffd600;
    --red: #ff1744;
    --gradient-cyan: linear-gradient(135deg, #00e5ff, #00b8d4);
    --gradient-bg: linear-gradient(180deg, #0a0e1a 0%, #0d1425 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #0d1425 0%, #112240 50%, #0d1425 100%);
    text-align: center;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-banner .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    box-shadow: 0 0 8px var(--green-glow);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
    50% { opacity: 0.6; box-shadow: 0 0 16px var(--green); }
}

.top-banner .badge {
    background: var(--red);
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-card-border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #1a2a45 40%, var(--bg-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-card-border);
    font-size: 24px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-version {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

.header-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    text-align: right;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.stat-value.green {
    color: var(--green);
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Navigation */
.main-nav {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--bg-card-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links a {
    display: block;
    padding: 14px 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.nav-links a.active {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    color: var(--bg-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 25px var(--cyan-glow), 0 4px 15px rgba(0,0,0,0.3);
}

/* Steps Indicator */
.steps-bar {
    padding: 30px 0;
    border-bottom: 1px solid var(--bg-card-border);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--bg-card-border);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--bg-card);
    border: 2px solid var(--bg-card-border);
    color: var(--text-muted);
}

.step.active .step-number {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.step.completed .step-number {
    background: var(--green);
    border-color: var(--green);
    color: var(--bg-primary);
}

.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.step.active .step-label {
    color: var(--cyan);
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--cyan), #80deea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.feature-card {
    background: rgba(17, 27, 46, 0.6);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.feature-icon.red { color: var(--red); }
.feature-icon.purple { color: var(--purple); }
.feature-icon.orange { color: var(--orange); }
.feature-icon.cyan { color: var(--cyan); }

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Info Section */
.info-section {
    padding: 50px 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(17, 27, 46, 0.8), rgba(13, 20, 37, 0.9));
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.info-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.info-text .highlight-orange {
    color: var(--orange);
    font-weight: 600;
}

.info-text .highlight-cyan {
    color: var(--cyan);
    font-weight: 600;
}

.info-text .highlight-green {
    color: var(--green);
    font-weight: 700;
}

/* CTA Button */
.cta-section {
    padding: 30px 0 60px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    color: var(--bg-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 60px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 30px var(--cyan-glow), 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Platform Selection Page */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.platform-card {
    background: rgba(17, 27, 46, 0.6);
    border: 1px solid var(--bg-card-border);
    border-radius: 14px;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.platform-card.selected {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.platform-icon-svg {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--cyan);
}

.platform-icon-svg svg {
    width: 100%;
    height: 100%;
}

.platform-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.platform-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.platform-badge {
    display: inline-block;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.platform-notice {
    margin-top: 25px;
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 10px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--green);
}

/* Toggle Feature Cards */
.features-count-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 16px;
}

.features-count-display #featuresCountValue {
    font-size: 1rem;
}

.toggle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.toggle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(17, 27, 46, 0.6);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.toggle-card.active {
    border-color: var(--cyan);
    box-shadow: 0 0 12px var(--cyan-glow);
}

.toggle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.toggle-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
}

.toggle-info {
    min-width: 0;
}

.toggle-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toggle-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2a3a55;
    border-radius: 24px;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #556b8a;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--cyan);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
    background: var(--bg-primary);
}

/* Platform card click animation */
.platform-card.clicked {
    border-color: var(--cyan);
    box-shadow: 0 0 25px var(--cyan-glow);
    animation: btn-click-pulse 0.4s ease;
}

/* Button Click Animation */
@keyframes btn-click-pulse {
    0% { transform: scale(1); }
    20% { transform: scale(0.94); }
    50% { transform: scale(1.03); box-shadow: 0 0 40px var(--cyan-glow); }
    100% { transform: scale(1); }
}

@keyframes btn-loading {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.cta-clicked {
    animation: btn-click-pulse 0.5s ease;
    pointer-events: none;
    background: linear-gradient(90deg, var(--cyan-dim), var(--cyan), var(--cyan-dim), var(--cyan)) !important;
    background-size: 300% 100% !important;
    animation: btn-click-pulse 0.4s ease, btn-loading 1s ease infinite !important;
}

/* Terminal */
.terminal {
    background: #0b1120;
    border: 1px solid var(--bg-card-border);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    text-align: left;
}

.terminal-bar {
    background: #151f35;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--bg-card-border);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red-dot { background: #ff5f57; }
.terminal-dot.yellow-dot { background: #febc2e; }
.terminal-dot.green-dot { background: #28c840; }

.terminal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-left: 8px;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 16px 18px;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    line-height: 1.8;
    min-height: 180px;
    color: var(--text-secondary);
}

.terminal-body .line-ok { color: var(--green); }
.terminal-body .line-proc { color: var(--cyan); }
.terminal-body .line-warn { color: var(--orange); }
.terminal-body .line-info { color: var(--cyan-dim); }

/* Progress Bars */
.progress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.progress-item {
    text-align: center;
}

.progress-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.progress-track {
    height: 4px;
    background: var(--bg-card-border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dim));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan);
    margin-top: 8px;
}

/* Build Info Bar */
.build-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    background: rgba(17, 27, 46, 0.6);
    border: 1px solid var(--bg-card-border);
    border-radius: 10px;
    padding: 14px 24px;
}

.build-item {
    text-align: center;
}

.build-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.build-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.build-value.cyan {
    color: var(--cyan);
}

/* Verify Page */
.verify-shield {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.verify-box {
    max-width: 520px;
    margin: 25px auto 0;
    text-align: left;
}

.verify-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.verify-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--bg-card-border);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.verify-status-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cyan);
}

.verify-status-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.verify-checklist {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.verify-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--bg-card-border);
    border-bottom: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.verify-check-item:first-child {
    border-radius: 10px 10px 0 0;
}

.verify-check-item:last-child {
    border-bottom: 1px solid var(--bg-card-border);
    border-radius: 0 0 10px 10px;
}

.verify-check-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.verify-build-ready {
    text-align: center;
    border: 2px dashed var(--cyan);
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 20px;
    background: rgba(0, 229, 255, 0.03);
}

.verify-build-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.verify-build-id {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.verify-build-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.verify-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--green), #00c853);
    color: var(--bg-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 16px;
    box-shadow: 0 0 20px var(--green-glow);
}

.verify-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

/* Offers / Tasks Page */
.offers-section {
    padding: 30px 0 50px;
}

.offers-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.offers-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.offers-stat-card.green .offers-stat-value { color: var(--green); }
.offers-stat-card.red .offers-stat-value { color: var(--red); }

.offers-stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.offers-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.offers-build-box {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.offers-build-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.offers-build-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.offers-build-status {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.offers-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 0 4px;
}

.offers-progress-count {
    color: var(--cyan);
    font-weight: 600;
}

.offers-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.offers-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.offers-available {
    font-size: 0.8rem;
    color: var(--cyan);
    font-weight: 600;
}

.offers-instruction {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.offers-instruction-icon {
    font-size: 1.2rem;
    color: #ffc107;
    flex-shrink: 0;
}

.offers-steps {
    margin-bottom: 16px;
    padding: 0 4px;
}

.offers-steps p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.6;
}

.offers-tips {
    margin-bottom: 24px;
    padding: 0 4px;
}

.offers-tips p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    line-height: 1.5;
}

.offers-list {
    min-height: 200px;
}

.offers-list > * {
    max-width: 100%;
}

/* Verify selection display (Platform + Features) */
.verify-selection-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--bg-card-border);
}

.verify-selection-item {
    text-align: center;
}

.verify-selection-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.verify-selection-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.verify-selection-value.cyan {
    color: var(--cyan);
}

/* Article Content */
.article-section {
    padding: 40px 0;
}

.article-content {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 50px 40px;
}

.article-content h1 {
    font-size: 1.6rem;
    color: var(--cyan);
    margin-bottom: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content h2 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-card-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content h3 {
    font-size: 1rem;
    color: var(--cyan-dim);
    margin-top: 25px;
    margin-bottom: 10px;
}

.article-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.article-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.article-content ul li {
    color: var(--text-secondary);
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.92rem;
}

.article-content ul li::before {
    content: '▸';
    position: absolute;
    left: 4px;
    color: var(--cyan);
    font-size: 0.9rem;
}

/* Page Title for inner pages */
.page-hero {
    padding: 50px 0 30px;
    text-align: center;
    border-bottom: 1px solid var(--bg-card-border);
}

.page-hero h1 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--cyan), #80deea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Legal/Privacy Content */
.legal-content {
    padding: 50px 0;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 50px 40px;
}

.legal-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--cyan);
    margin-top: 35px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.legal-card ul li {
    color: var(--text-secondary);
    padding: 5px 0 5px 22px;
    position: relative;
    font-size: 0.92rem;
}

.legal-card ul li::before {
    content: '▸';
    position: absolute;
    left: 4px;
    color: var(--cyan);
}

/* Contact Form */
.contact-section {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 40px;
}

.contact-info-card h2 {
    font-size: 1.1rem;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--bg-card-border);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.contact-detail-text .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-detail-text .value {
    color: var(--text-primary);
    font-size: 0.92rem;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    color: var(--bg-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    border-top: 1px solid var(--bg-card-border);
    padding: 25px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

/* SEO Interlink Section */
.interlink-section {
    padding: 40px 0;
    border-top: 1px solid var(--bg-card-border);
}

.interlink-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.interlink-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 24px;
}

.interlink-card h3 {
    font-size: 0.8rem;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.interlink-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.interlink-card a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .interlink-grid {
        grid-template-columns: 1fr;
    }

    .header-stats {
        gap: 16px;
    }

    .stat-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }

    .hero-card {
        padding: 35px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .toggle-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .toggle-name {
        font-size: 0.7rem;
    }

    .toggle-desc {
        font-size: 0.65rem;
    }

    .progress-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .build-info {
        flex-direction: column;
        gap: 12px;
    }

    .terminal-body {
        font-size: 0.7rem;
        min-height: 150px;
        padding: 12px 14px;
    }

    .verify-build-id {
        font-size: 1.3rem;
    }

    .offers-stats-row {
        grid-template-columns: 1fr;
    }

    .offers-title {
        font-size: 0.95rem;
    }

    .offers-build-code {
        font-size: 1.2rem;
    }

    .steps-container {
        gap: 0;
    }

    .step-label {
        font-size: 0.55rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .article-content {
        padding: 30px 20px;
    }

    .article-content h1 {
        font-size: 1.2rem;
    }

    .article-content h2 {
        font-size: 1rem;
    }

    .legal-card {
        padding: 30px 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 0.85rem;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 0.75rem;
    }

    .platform-notice {
        font-size: 0.75rem;
        padding: 12px 16px;
    }

    .platform-icon {
        font-size: 2.4rem;
    }

    .platform-name {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .top-banner {
        font-size: 0.65rem;
        padding: 8px 15px;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-stats {
        display: none;
    }

    .hero-title {
        font-size: 1.15rem;
    }

    .steps-bar {
        padding: 20px 0;
    }
}
