/* ============================================
   GoSpoofer v2 - Pokemon Go Theme Styles
   ============================================ */

:root {
    /* Pokemon Go Colors */
    --pg-blue: #3b82f6;
    --pg-blue-dark: #1e3a8a;
    --pg-blue-light: #60a5fa;
    --pg-yellow: #fbbf24;
    --pg-yellow-light: #fcd34d;
    --pg-red: #ef4444;
    --pg-cyan: #06b6d4;
    --pg-cyan-glow: #22d3ee;
    
    /* Theme Colors */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --bg-card-hover: #232a3d;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-color: rgba(59, 130, 246, 0.2);
    --border-glow: rgba(6, 182, 212, 0.5);
    
    /* Effects */
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.5);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.5);
    --glow-yellow: 0 0 20px rgba(251, 191, 36, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--pg-blue) 0%, var(--pg-cyan) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   Background Animation
   ============================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.pokeball-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, transparent 45%, rgba(59, 130, 246, 0.03) 45%, rgba(59, 130, 246, 0.03) 50%, transparent 50%);
    top: -400px;
    right: -400px;
    animation: rotateSlow 60s linear infinite;
}

.pokeball-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, transparent 45%, rgba(6, 182, 212, 0.03) 45%, rgba(6, 182, 212, 0.03) 50%, transparent 50%);
    bottom: -300px;
    left: -300px;
    animation: rotateSlow 45s linear infinite reverse;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--pg-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
    box-shadow: 0 0 10px var(--pg-cyan);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ============================================
   Live Banner
   ============================================ */

.live-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #064e3b 0%, #065f46 50%, #064e3b 100%);
    border-bottom: 1px solid #10b981;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.live-indicator {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #22c55e;
}

.live-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #d1fae5;
}

.live-text strong {
    color: #4ade80;
    text-shadow: 0 0 10px #22c55e;
}

.live-badge {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.8); }
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    position: relative;
}

/* ============================================
   Header
   ============================================ */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    position: relative;
}

.pokeball-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-blue);
    animation: pokeballGlow 3s ease-in-out infinite;
}

.pokeball-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, var(--pg-red) 0%, #dc2626 100%);
    border-radius: 60px 60px 0 0;
}

.pokeball-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 0 0 60px 60px;
}

.pokeball-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--text-primary);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.pokeball-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--pg-cyan);
    border-radius: 50%;
    animation: centerPulse 2s ease-in-out infinite;
}

@keyframes pokeballGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(6, 182, 212, 0.4); }
}

@keyframes centerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.version-tag {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--pg-cyan);
    color: var(--pg-cyan);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

.header-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--pg-cyan);
    text-shadow: var(--glow-cyan);
}

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

/* ============================================
   Progress Bar
   ============================================ */

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

.progress-bar {
    height: 4px;
    background: var(--bg-card);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    width: 20%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: var(--glow-cyan);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step.completed .step-icon {
    background: var(--pg-cyan);
    border-color: var(--pg-cyan);
    box-shadow: var(--glow-cyan);
}

.step-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.step.active .step-icon {
    border-color: var(--pg-blue);
    background: var(--pg-blue);
    box-shadow: var(--glow-blue);
}

.step span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Main Content & Panels
   ============================================ */

.main-content {
    position: relative;
    min-height: 600px;
}

.panel {
    display: none;
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: panelFadeIn 0.5s ease;
}

.panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.panel-content {
    padding: 50px;
}

.panel-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.panel-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ============================================
   Step 1: Hero Section
   ============================================ */

.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.glitch-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text::before {
    animation: glitch-1 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text::after {
    animation: glitch-2 0.3s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch {
    0%, 90%, 100% { opacity: 1; }
    91% { opacity: 0.8; }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--pg-cyan);
    box-shadow: var(--glow-cyan);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--pg-cyan);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* SEO Content */
.seo-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.seo-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--pg-cyan);
    margin-bottom: 15px;
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-content strong {
    color: var(--pg-yellow);
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 18px 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.btn-primary.pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(6, 182, 212, 0.3); }
}

.btn-icon {
    font-size: 20px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ============================================
   Step 2: Platform Selection
   ============================================ */

.platform-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.platform-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: var(--pg-blue);
    transform: translateY(-5px);
}

.platform-card.selected {
    border-color: var(--pg-cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    box-shadow: var(--glow-cyan);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.platform-card:hover .platform-icon,
.platform-card.selected .platform-icon {
    color: var(--pg-cyan);
}

.platform-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.platform-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.all-versions {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
    letter-spacing: 0.5px;
}

.compatibility-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    color: var(--pg-yellow);
    font-size: 14px;
}

/* ============================================
   Step 3: Feature Selection
   ============================================ */

.features-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-toggle {
    display: block;
    cursor: pointer;
}

.feature-toggle input {
    display: none;
}

.toggle-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-toggle:hover .toggle-content {
    border-color: var(--pg-blue);
}

.feature-toggle.active .toggle-content,
.feature-toggle input:checked + .toggle-content {
    border-color: var(--pg-cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.toggle-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 10px;
}

.toggle-info {
    flex: 1;
}

.toggle-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.toggle-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: var(--bg-card);
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-toggle input:checked + .toggle-content .toggle-switch {
    background: var(--pg-cyan);
}

.feature-toggle input:checked + .toggle-content .toggle-switch::after {
    left: 27px;
    background: var(--text-primary);
}

/* ============================================
   Step 4: Generation
   ============================================ */

.generation-container {
    max-width: 800px;
    margin: 0 auto;
}

.code-window {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #161b22;
    border-bottom: 1px solid var(--border-color);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #febc2e; }
.code-dots span:nth-child(3) { background: #28c840; }

.code-title {
    font-family: 'Rajdhani', monospace;
    font-size: 13px;
    color: var(--text-muted);
}

.code-body {
    padding: 20px;
    height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.code-line {
    color: var(--pg-cyan);
    opacity: 0;
    animation: typeIn 0.3s ease forwards;
}

.code-line.success { color: #28c840; }
.code-line.warning { color: #febc2e; }
.code-line.error { color: #ff5f57; }

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.generation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gen-stat {
    text-align: center;
}

.gen-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gen-bar {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.gen-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.gen-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--pg-cyan);
}

.generation-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--pg-cyan);
}

/* ============================================
   Step 5: Verification
   ============================================ */

.verification-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.verification-icon {
    margin-bottom: 30px;
}

.shield-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: var(--pg-cyan);
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.8)); }
}

.verification-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.verification-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.verification-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.status-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon.pending .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-card);
    border-top-color: var(--pg-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--pg-yellow);
    margin-bottom: 5px;
}

.status-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.verification-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-card);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.detail-icon {
    font-size: 18px;
}

.build-ready {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px dashed var(--pg-cyan);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.build-ready h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--pg-cyan);
    margin-bottom: 15px;
}

.build-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: var(--glow-cyan);
}

.build-ready p {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #28c840 0%, #22c55e 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(40, 200, 64, 0.4);
}

.verification-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: left;
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pg-cyan);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .generation-stats {
        grid-template-columns: 1fr;
    }
    
    .generation-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .features-grid,
    .platform-selection,
    .features-selection {
        grid-template-columns: 1fr;
    }
    
    .glitch-text {
        font-size: 32px;
    }
    
    .panel-content {
        padding: 30px 20px;
    }
    
    .progress-steps {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .live-banner {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .live-text {
        font-size: 12px;
    }
    
    .live-badge {
        display: none;
    }
    
    .glitch-text {
        font-size: 24px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
}

/* ============================================
   Content Locker Modal
   ============================================ */

.locker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    padding: 20px;
}

.locker-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.locker-modal {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.locker-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.locker-close:hover {
    background: var(--pg-red);
    border-color: var(--pg-red);
    color: white;
}

.locker-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.locker-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.locker-header p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.locker-header .highlight {
    color: var(--pg-cyan);
    font-weight: 600;
}

.locker-header .sub-text {
    margin-top: 10px;
    font-size: 14px;
}

.locker-header .sub-text strong {
    color: var(--pg-yellow);
}

/* Locker Stats */
.locker-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.locker-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.locker-stat .stat-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.locker-stat .stat-dot.green {
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.locker-stat .stat-dot.red {
    background: var(--pg-red);
    box-shadow: 0 0 10px var(--pg-red);
}

.locker-stat .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.locker-stat .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.locker-stat .stat-value.green {
    color: #22c55e;
}

.locker-stat .stat-value.red {
    color: var(--pg-red);
}

/* Locked Content Box */
.locker-locked-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.locker-locked-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.locker-key-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.locker-key-box {
    display: inline-flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 20px;
}

.locker-key-blurred {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--pg-cyan);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.locker-lock-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pg-yellow);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.lock-icon-wrapper {
    width: 24px;
    height: 24px;
}

.lock-icon-wrapper svg {
    width: 100%;
    height: 100%;
    stroke: var(--pg-yellow);
}

.locker-checking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.locker-checking .checking-dot {
    width: 8px;
    height: 8px;
    background: var(--pg-cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Progress */
.locker-progress-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.locker-progress-bar {
    flex: 1;
    max-width: 400px;
    height: 10px;
    background: var(--bg-card);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.locker-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.locker-progress-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--pg-cyan);
    font-size: 14px;
    min-width: 120px;
}

/* Offers Section */
.locker-offers-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

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

.locker-offers-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.locker-offers-header h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.locker-offer-count {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.locker-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: var(--pg-yellow);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.locker-warning strong {
    color: #fcd34d;
}

.locker-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.locker-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.locker-step .step-num {
    width: 28px;
    height: 28px;
    background: var(--pg-cyan);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.locker-step .step-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.locker-step .step-text strong {
    color: var(--text-primary);
}

.locker-step .example {
    color: var(--pg-cyan);
    font-style: italic;
}

.locker-hints {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.locker-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: var(--pg-cyan);
}

.locker-hint.bonus {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.locker-hint strong {
    color: white;
}

/* Offers Grid */
.locker-offers-grid {
    display: grid;
    gap: 12px;
}

.locker-skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-card) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    height: 80px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.locker-offer-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.locker-offer-card:hover {
    border-color: var(--pg-cyan);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.locker-offer-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.locker-offer-number {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--pg-cyan);
    flex-shrink: 0;
}

.locker-offer-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.locker-offer-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    white-space: normal;
}

.locker-offer-desc {
    font-size: 13px;
    color: var(--text-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.locker-offer-arrow {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.locker-offer-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    transition: all 0.3s ease;
}

.locker-offer-card:hover .locker-offer-arrow {
    background: var(--pg-cyan);
}

.locker-offer-card:hover .locker-offer-arrow svg {
    stroke: var(--bg-primary);
}

/* Responsive for locker */
@media (max-width: 768px) {
    .locker-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .locker-stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .locker-steps {
        grid-template-columns: 1fr;
    }
    
    .locker-header h1 {
        font-size: 24px;
    }
    
    .locker-offer-arrow {
        display: none;
    }
    
    .locker-offer-card {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .locker-offer-image {
        width: 44px;
        height: 44px;
    }
    
    .locker-offer-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .locker-offer-title {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .locker-offer-desc {
        font-size: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 4;
    }
    
    .locker-offers-section {
        padding: 20px 15px;
    }
    
    .locker-warning {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .locker-hint {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .locker-locked-content {
        padding: 20px 15px;
    }
    
    .locker-key-blurred {
        font-size: 18px;
    }
    
    .locker-modal {
        padding: 10px;
    }
    
    .locker-header p {
        font-size: 14px;
    }
    
    .locker-offers-header h3 {
        font-size: 16px;
    }
    
    .locker-offers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

