/* ==================== VAPOR.EXE - MAIN STYLES ==================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-blue: #00f0ff;
    --primary-purple: #bf00ff;
    --primary-pink: #ff00ff;
    --primary-green: #00ff88;
    --neon-red: #ff0055;
    
    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Effects */
    --glow-blue: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-purple: 0 0 20px rgba(191, 0, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
    
    /* Borders */
    --border-glow: 1px solid rgba(0, 240, 255, 0.3);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: none;
    scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scrollbar-gutter: stable;
}

body::-webkit-scrollbar {
    display: none;
}

body.loading {
    overflow: hidden;
}

body.high-contrast {
    --bg-dark: #000000;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
}

body.reduce-motion * {
    animation: none !important;
    transition: none !important;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #0d0015 100%);
}

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

/* Section Base */
.section {
    padding: var(--section-padding);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-blue);
    background: rgba(0, 240, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== PROGRESS BAR ==================== */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    border-bottom: var(--border-subtle);
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
}

.progress-container.visible {
    transform: translateY(0);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
    border-radius: 10px;
    transition: width var(--transition-slow);
    box-shadow: var(--glow-blue);
}

.progress-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-blue);
    white-space: nowrap;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.system-boot {
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.boot-line {
    opacity: 0;
    transform: translateX(-20px);
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.boot-line .prompt {
    color: var(--primary-green);
    margin-right: 10px;
}

.boot-line .status-ok {
    color: var(--primary-green);
}

.boot-line .status-ready {
    color: var(--primary-blue);
    animation: pulse 1s infinite;
}

.hero-title-container {
    margin-bottom: 30px;
    opacity: 0;
}

.hero-title-container h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-quote {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-style: italic;
    line-height: 1.8;
    opacity: 0;
}

.btn-start {
    position: relative;
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
}

.btn-start:hover {
    background: var(--primary-blue);
    color: var(--bg-dark);
    box-shadow: var(--glow-blue);
}

.btn-start .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.btn-start:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* ==================== CHOICE SECTION ==================== */
.choice-section {
    background: transparent;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.choice-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.choice-card.conventional {
    --card-color: #888888;
}

.choice-card.conventional:hover {
    border-color: var(--card-color);
    box-shadow: 0 0 30px rgba(136, 136, 136, 0.3);
}

.choice-card.electronic {
    --card-color: var(--primary-blue);
}

.choice-card.electronic:hover {
    border-color: var(--card-color);
    box-shadow: var(--glow-blue);
}

.choice-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.choice-visual i {
    font-size: 3rem;
    color: var(--card-color);
    position: relative;
    z-index: 1;
}

.smoke-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.3) 0%, transparent 70%);
    animation: smoke 3s infinite;
}

.led-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    animation: ledPulse 2s infinite;
}

.choice-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--card-color);
}

.choice-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.choice-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.choice-btn {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 25px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.choice-btn:hover {
    border-color: var(--primary-purple);
    background: rgba(191, 0, 255, 0.1);
    box-shadow: var(--glow-purple);
}

.choice-result {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    opacity: 0;
}

.choice-result.visible {
    display: block;
    opacity: 1;
}

.result-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.result-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-continue {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border: none;
    color: var(--text-primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

/* ==================== FLIP CARDS SECTION ==================== */
.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.flip-card {
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
    -webkit-perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    will-change: transform;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.flip-card-front {
    background: var(--bg-glass);
    border: var(--border-subtle);
    backdrop-filter: blur(10px);
}

.flip-card-front .card-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.flip-card-front p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.flip-hint {
    position: absolute;
    bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.flip-card-back {
    background: linear-gradient(135deg, rgba(60, 0, 100, 0.95), rgba(0, 60, 80, 0.95));
    border: 1px solid rgba(100, 50, 150, 0.6);
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.flip-card-back h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.flip-card-back p {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-stats {
    width: 100%;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.stat-label {
    min-width: 120px;
    text-align: left;
    color: var(--text-secondary);
}

.stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 3px;
    transition: width 1s ease;
}

.stat-bar.risk .stat-fill {
    background: linear-gradient(90deg, var(--primary-green), var(--neon-red));
}

.stat-value {
    min-width: 40px;
    text-align: right;
    color: var(--primary-blue);
    font-family: var(--font-mono);
}

.alert-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.alert-badge.high {
    background: rgba(255, 0, 85, 0.2);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
}

.alert-badge.medium {
    background: rgba(255, 200, 0, 0.2);
    color: #ffc800;
    border: 1px solid #ffc800;
}

/* Reality Mode Button */
.reality-mode-container {
    text-align: center;
}

.btn-reality {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-reality:hover {
    background: var(--primary-pink);
    color: var(--bg-dark);
    box-shadow: var(--glow-pink);
}

/* Reality Overlay */
.reality-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reality-overlay.active {
    display: flex;
    animation: glitchBg 0.3s ease;
}

.reality-words {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    margin-bottom: 40px;
}

.reality-word {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--neon-red);
    text-transform: uppercase;
    animation: wordAppear 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    text-shadow: 0 0 20px var(--neon-red);
}

.reality-message {
    text-align: center;
}

.reality-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.btn-close-reality {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 12px 30px;
    background: var(--primary-blue);
    border: none;
    color: var(--bg-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-close-reality:hover {
    box-shadow: var(--glow-blue);
}

/* ==================== SCANNER SECTION ==================== */
.scanner-machine {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.scanner-screen {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.scanner-status {
    font-family: var(--font-mono);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.scanner-status i {
    animation: pulse 1s infinite;
}

.scanner-score {
    display: flex;
    gap: 25px;
}

.score-item {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-item i {
    color: var(--primary-blue);
}

.scanner-statement {
    text-align: center;
    margin-bottom: 40px;
}

.statement-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.statement-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--text-primary);
    line-height: 1.6;
}

.scanner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.scan-btn {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 15px 30px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.scan-btn.truth:hover {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
}

.scan-btn.lie:hover {
    border-color: var(--neon-red);
    background: rgba(255, 0, 85, 0.1);
    color: var(--neon-red);
}

.scan-btn.half:hover {
    border-color: #ffc800;
    background: rgba(255, 200, 0, 0.1);
    color: #ffc800;
}

.scanner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    animation: scanLine 3s linear infinite;
}

.scanner-complete,
.firewall-complete,
.simulator-complete,
.game-complete,
.trash-complete,
.quiz-complete {
    text-align: center;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 11;
    border-radius: 20px;
}

.complete-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.complete-icon i {
    animation: bounceIn 0.5s ease;
}

/* ==================== FIREWALL SECTION ==================== */
.firewall-container {
    max-width: 800px;
    margin: 0 auto;
}

.firewall-display {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.firewall-phrase {
    text-align: center;
    margin-bottom: 40px;
}

.phrase-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.phrase-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary-pink);
    font-style: italic;
}

.technique-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.technique-btn {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 15px 20px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.technique-btn:hover {
    border-color: var(--primary-purple);
    background: rgba(191, 0, 255, 0.1);
}

/* ==================== INFLUENCE SECTION ==================== */
.influence-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sliders-panel {
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.slider-group {
    margin-bottom: 25px;
}

.slider-group:last-child {
    margin-bottom: 0;
}

.slider-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.slider-group label i {
    color: var(--primary-blue);
    width: 20px;
}

.slider-value {
    margin-left: auto;
    font-family: var(--font-mono);
    color: var(--primary-blue);
}

.influence-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}

.influence-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--glow-blue);
}

.influence-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: var(--glow-blue);
}

.results-panel {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.chart-container {
    height: 250px;
    margin-bottom: 30px;
}

.influence-metrics {
    margin-bottom: 30px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.metric-label {
    min-width: 140px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.metric-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 5px;
    transition: width var(--transition-normal);
}

.metric-bar.risk .metric-fill {
    background: linear-gradient(90deg, var(--neon-red), #ffc800);
}

.metric-bar.critical .metric-fill {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.metric-value {
    min-width: 50px;
    text-align: right;
    font-family: var(--font-mono);
    color: var(--primary-blue);
}

.influence-message {
    text-align: center;
    padding: 20px;
    background: rgba(191, 0, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(191, 0, 255, 0.3);
}

.influence-message p {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 10px;
}

.influence-message .sub-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==================== SIMULATOR SECTION ==================== */
.simulator-container {
    max-width: 700px;
    margin: 0 auto;
}

.situation-card {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.situation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.situation-number {
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.situation-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.situation-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.situation-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    font-style: italic;
}

.situation-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.situation-btn {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 15px 25px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: left;
}

.situation-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 240, 255, 0.1);
}

/* ==================== BODY SECTION ==================== */
.body-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.body-figure {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.body-svg {
    width: 100%;
    height: auto;
}

.body-outline {
    fill: transparent;
    stroke: var(--primary-blue);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

.body-point {
    fill: rgba(191, 0, 255, 0.3);
    stroke: var(--primary-purple);
    stroke-width: 2;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.body-point:hover {
    fill: rgba(191, 0, 255, 0.6);
    filter: drop-shadow(0 0 15px rgba(191, 0, 255, 0.5));
}

.body-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.body-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.body-info {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.info-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* ==================== GAME SECTION ==================== */
.game-container {
    max-width: 700px;
    margin: 0 auto;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.game-stat {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-stat i {
    color: var(--primary-blue);
}

.game-stat .fa-heart {
    color: #ff4444;
}

.game-stat .fa-exclamation-triangle {
    color: #ffcc00;
}

/* HP Bar */
.hp-bar {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 8px;
}

.hp-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 4px;
    transition: width 0.3s ease, background 0.3s ease;
}

.hp-bar-fill.critical {
    animation: pulse-critical 0.5s infinite;
}

@keyframes pulse-critical {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Sound Button */
.btn-sound {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary-blue);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-sound:hover {
    background: rgba(0, 240, 255, 0.1);
}

.btn-sound.sound-off {
    color: #666;
    border-color: #444;
}

.game-board {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.game-start {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 20px;
}

.game-start h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.game-start p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px;
}

.game-start p strong {
    color: #00ff88;
}

.game-start-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.game-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px !important;
    font-size: 0.85rem;
}

.game-features-list span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.game-features-list .fa-heart { color: #ff4444; }
.game-features-list .fa-ghost { color: #bf00ff; }
.game-features-list .fa-volume-up { color: #00ff88; }

.btn-game-start {
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border: none;
    color: var(--text-primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-game-start:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-blue);
}

#gameCanvas {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
}

.game-message {
    text-align: center;
    padding: 15px;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--neon-red);
    border-radius: 10px;
    margin-top: 15px;
}

.game-message p {
    color: var(--neon-red);
    font-size: 0.95rem;
}

.game-final-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.game-final-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 10px;
}

.game-final-stats .fa-clock { color: var(--primary-blue); }
.game-final-stats .fa-exclamation-triangle { color: #ffcc00; }

.high-score {
    color: #ffcc00;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.game-complete-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-game-restart {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-game-restart:hover {
    background: var(--primary-blue);
    color: #0a0a12;
}

/* Tela de derrota */
.game-lost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.game-lost h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #ff4444;
    margin-bottom: 15px;
}

.game-lost p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.game-lost .complete-icon.lost {
    color: #ff4444;
}

.game-lost-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(191, 0, 255, 0.1);
    border: 1px solid rgba(191, 0, 255, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    max-width: 400px;
    text-align: left;
}

.game-lost-tip i {
    color: #bf00ff;
    font-size: 1.2rem;
}

.game-lost-tip span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mobile-controls {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.control-row {
    display: flex;
    gap: 50px;
}

.control-btn {
    width: 60px;
    height: 60px;
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover,
.control-btn:active {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: var(--glow-blue);
}

/* ==================== TRASH SECTION ==================== */
.trash-container {
    max-width: 900px;
    margin: 0 auto;
}

.trash-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    min-height: 100px;
    padding: 20px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 15px;
}

.trash-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 10px;
    cursor: grab;
    transition: all var(--transition-normal);
}

.trash-item:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-blue);
}

.trash-item.dragging {
    opacity: 0.5;
}

.trash-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.trash-item span {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.trash-bins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.trash-bin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    background: var(--bg-glass);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all var(--transition-normal);
    min-height: 120px;
}

.trash-bin.drag-over {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
}

.trash-bin i {
    font-size: 2rem;
    color: var(--text-muted);
}

.trash-bin span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.trash-bin[data-bin="electronic"] i { color: var(--primary-blue); }
.trash-bin[data-bin="recyclable"] i { color: var(--primary-green); }
.trash-bin[data-bin="dangerous"] i { color: var(--neon-red); }
.trash-bin[data-bin="common"] i { color: var(--text-muted); }

.trash-score {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-track {
    position: relative;
    padding-left: 50px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-icon i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.timeline-content {
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== MINDMAP SECTION ==================== */
.mindmap-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 500px;
    margin: 0 auto;
}

.mindmap-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--glow-blue);
    z-index: 2;
}

.mindmap-center span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.mindmap-nodes {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.mindmap-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle)));
}

.mindmap-node:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: var(--glow-blue);
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle))) scale(1.1);
}

.mindmap-node i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.mindmap-node span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ==================== QUIZ SECTION ==================== */
.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.quiz-progress {
    margin-bottom: 40px;
}

.quiz-progress > span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.quiz-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 4px;
    transition: width var(--transition-normal);
}

.quiz-question {
    text-align: center;
}

.quiz-question h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quiz-option {
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 15px 40px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 150px;
}

.quiz-option:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 240, 255, 0.1);
}

.quiz-option.correct {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-green);
}

.quiz-option.wrong {
    border-color: var(--neon-red);
    background: rgba(255, 0, 85, 0.2);
    color: var(--neon-red);
}

.quiz-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 20px 0;
}

/* ==================== RANKING SECTION ==================== */
.ranking-container {
    max-width: 600px;
    margin: 0 auto;
}

.ranking-input {
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.ranking-input label {
    display: block;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.ranking-input input {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    background: var(--bg-darker);
    border: var(--border-glow);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.ranking-input input:focus {
    outline: none;
    box-shadow: var(--glow-blue);
}

.btn-save-score {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border: none;
    color: var(--text-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-save-score:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.ranking-list {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ranking-header {
    display: grid;
    grid-template-columns: 50px 1fr 80px;
    padding: 15px 20px;
    background: rgba(0, 240, 255, 0.1);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.ranking-entries {
    max-height: 300px;
    overflow-y: auto;
}

.ranking-entry {
    display: grid;
    grid-template-columns: 50px 1fr 80px;
    padding: 15px 20px;
    border-bottom: var(--border-subtle);
    transition: background var(--transition-fast);
}

.ranking-entry:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ranking-entry:last-child {
    border-bottom: none;
}

.ranking-entry .rank {
    color: var(--primary-blue);
    font-family: var(--font-mono);
}

.ranking-entry .name {
    color: var(--text-primary);
}

.ranking-entry .score {
    color: var(--primary-green);
    font-family: var(--font-mono);
    text-align: right;
}

.ranking-entry:nth-child(1) .rank { color: #ffd700; }
.ranking-entry:nth-child(2) .rank { color: #c0c0c0; }
.ranking-entry:nth-child(3) .rank { color: #cd7f32; }

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

.btn-clear-ranking {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-clear-ranking:hover {
    background: rgba(255, 0, 85, 0.1);
}

/* ==================== CERTIFICATE SECTION ==================== */
.certificate-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.certificate-preview {
    background: var(--bg-glass);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.certificate-border {
    border: 3px solid var(--primary-blue);
    border-radius: 15px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(191, 0, 255, 0.05));
}

.certificate-content {
    text-align: center;
}

.certificate-header {
    margin-bottom: 30px;
}

.certificate-header i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.certificate-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.certificate-text {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.certificate-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.certificate-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.certificate-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
    margin-bottom: 30px;
}

.certificate-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-download-cert {
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border: none;
    color: var(--text-primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-download-cert:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

/* ==================== SHARE SECTION ==================== */
.share-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.share-phrases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.phrase-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 20px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-secondary);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.phrase-btn:hover,
.phrase-btn.active {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: rgba(255, 0, 255, 0.1);
}

.share-card-preview {
    margin-bottom: 30px;
}

.share-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker), #1a0a2e);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 50px 30px;
    overflow: hidden;
}

.share-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.1), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(191, 0, 255, 0.1), transparent 50%);
}

.share-card-logo {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--primary-blue);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.share-card-phrase {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
}

.share-card-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
}

.btn-copy-phrase {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-copy-phrase:hover {
    background: var(--primary-pink);
    color: var(--bg-dark);
}

/* ==================== QR SECTION ==================== */
.qr-container {
    text-align: center;
}

.qr-code {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
}

.qr-text {
    color: var(--text-secondary);
}

/* ==================== ACHIEVEMENTS SECTION ==================== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all var(--transition-normal);
}

.achievement-card.unlocked {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.achievement-icon.locked {
    opacity: 0.5;
}

.achievement-card.unlocked .achievement-icon {
    background: rgba(0, 255, 136, 0.2);
}

.achievement-card.unlocked .achievement-icon i {
    color: var(--primary-green);
}

.achievement-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.achievement-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== VAPOR-BOT ==================== */
.vapor-bot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.bot-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--glow-blue);
}

.bot-icon:hover {
    transform: scale(1.1);
}

.bot-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.bot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.bot-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    backdrop-filter: blur(10px);
}

.bot-panel.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 240, 255, 0.1);
    border-bottom: var(--border-subtle);
}

.bot-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.bot-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

.bot-content {
    padding: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.bot-message {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bot-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: var(--border-subtle);
}

.bot-btn {
    flex: 1;
    padding: 8px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.bot-btn i {
    font-size: 1rem;
    color: var(--primary-blue);
}

.bot-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary-blue);
}

/* ==================== ACCESSIBILITY CONTROLS ==================== */
.accessibility-controls {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.acc-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.acc-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.acc-btn.active {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ==================== ACHIEVEMENT NOTIFICATION ==================== */
.achievement-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--bg-card);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.achievement-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.achievement-icon {
    font-size: 2rem;
    color: var(--primary-green);
}

.achievement-text {
    display: flex;
    flex-direction: column;
}

.achievement-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.achievement-name {
    font-family: var(--font-display);
    color: var(--primary-green);
}

/* ==================== MODALS ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-darker);
    border-top: var(--border-subtle);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo .glitch-text {
    font-family: var(--font-display);
    font-size: 2rem;
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-message p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
