/* ==========================================
   MONOPOLY GO - MODERN THEME CSS
   ========================================== */

/* CSS Variables - Monopoly Go Color Palette */
:root {
    /* Primary Colors */
    --monopoly-red: #E31937;
    --monopoly-gold: #FFD93D;
    --monopoly-yellow: #FFC107;
    --monopoly-orange: #FF8C00;
    
    /* Secondary Colors */
    --monopoly-teal: #00CEC9;
    --monopoly-cyan: #00D4FF;
    --monopoly-purple: #6C5CE7;
    --monopoly-pink: #FD79A8;
    
    /* Neutrals */
    --dark-bg: #0A0E17;
    --dark-card: rgba(15, 23, 42, 0.85);
    --dark-card-solid: #0F172A;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD93D 0%, #FF8C00 100%);
    --gradient-red: linear-gradient(135deg, #E31937 0%, #B71C1C 100%);
    --gradient-teal: linear-gradient(135deg, #00CEC9 0%, #00D4FF 100%);
    --gradient-purple: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-bg: linear-gradient(180deg, #1A1F35 0%, #0A0E17 100%);
    
    /* Effects */
    --glow-gold: 0 0 40px rgba(255, 217, 61, 0.4);
    --glow-red: 0 0 40px rgba(227, 25, 55, 0.4);
    --glow-teal: 0 0 40px rgba(0, 206, 201, 0.4);
    
    /* Typography */
    --font-display: 'Bangers', cursive;
    --font-body: 'Fredoka', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --border-radius: 20px;
    --border-radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(227, 25, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 206, 201, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 217, 61, 0.1) 0%, transparent 60%),
        var(--gradient-bg);
}

/* Floating Elements */
.floating-dice, .floating-money, .floating-house {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 20s ease-in-out infinite;
    filter: blur(1px);
}

.dice-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 3rem; }
.dice-2 { top: 60%; left: 90%; animation-delay: -5s; font-size: 2.5rem; }
.dice-3 { top: 80%; left: 15%; animation-delay: -10s; }
.money-1 { top: 20%; left: 85%; animation-delay: -3s; font-size: 2.5rem; }
.money-2 { top: 70%; left: 8%; animation-delay: -8s; }
.money-3 { top: 40%; left: 92%; animation-delay: -13s; font-size: 3rem; }
.house-1 { top: 85%; left: 80%; animation-delay: -6s; font-size: 2.5rem; }
.house-2 { top: 15%; left: 70%; animation-delay: -11s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(10deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(30px) rotate(-10deg);
    }
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--monopoly-gold);
    border-radius: 50%;
    animation: particle-rise 8s ease-in-out infinite;
    opacity: 0;
}

@keyframes particle-rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header / Logo */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.logo-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 217, 61, 0.4));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-monopoly {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--monopoly-red);
    text-shadow: 
        3px 3px 0 #fff,
        6px 6px 0 rgba(0,0,0,0.2);
    letter-spacing: 4px;
    line-height: 1;
    animation: logo-pulse 3s ease-in-out infinite;
}

.logo-go {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5.5rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.3));
    letter-spacing: 6px;
    line-height: 0.9;
    animation: logo-bounce 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes logo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Logo shine removed - was not looking good */

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    animation: fadeIn 1s ease-out;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.status-indicator.online {
    color: #4ADE80;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #4ADE80;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.users-online {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.user-icon {
    font-size: 1.2rem;
}

/* Main Card */
.main-card {
    position: relative;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: visible;
    animation: slideUp 0.6s ease-out;
}

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

/* Card glow - subtle static gradient border instead of rotating */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, 
        rgba(255, 217, 61, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 206, 201, 0.1) 100%
    );
    pointer-events: none;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

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

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step.completed .step-number {
    background: var(--gradient-teal);
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--glow-gold);
}

.step span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
}

.step-line {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

/* Form Elements */
.form-container {
    position: relative;
    z-index: 1;
}

.form-step {
    animation: fadeIn 0.4s ease-out;
}

.form-step.hidden {
    display: none;
}

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

.form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Resource Cards */
.resource-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.resource-card {
    cursor: pointer;
}

.resource-card input {
    display: none;
}

.resource-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card input:checked + .resource-content {
    border-color: var(--monopoly-gold);
    background: rgba(255, 217, 61, 0.1);
}

.resource-card input:checked + .resource-content::before {
    opacity: 0.05;
}

.resource-card:hover .resource-content {
    transform: translateY(-3px);
    border-color: rgba(255, 217, 61, 0.5);
}

.resource-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.resource-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.resource-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

.checkmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.resource-card input:checked + .resource-content .checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Sliders */
.sliders-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.slider-group {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.slider-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.slider-icon {
    font-size: 1.5rem;
}

.slider-label {
    flex: 1;
    font-weight: 500;
}

.slider-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--monopoly-gold);
    background: rgba(255, 217, 61, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

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

.fancy-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--glow-gold);
    transition: transform 0.2s ease;
}

.fancy-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.fancy-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--glow-gold);
    border: none;
}

/* Platform Select */
.platform-select {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    border-color: rgba(255, 217, 61, 0.5);
    transform: translateY(-2px);
}

.platform-btn.active {
    border-color: var(--monopoly-gold);
    background: rgba(255, 217, 61, 0.1);
}

.platform-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Input Group */
.input-group {
    margin-bottom: 2rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    z-index: 1;
}

.input-icon-svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    fill: var(--text-muted);
    z-index: 1;
}

.button-center {
    display: flex;
    justify-content: center;
}

.fancy-input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.fancy-input::placeholder {
    color: var(--text-muted);
}

.fancy-input:focus {
    border-color: var(--monopoly-gold);
    background: rgba(255, 217, 61, 0.05);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-sm);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: var(--glow-gold);
}

.fancy-input:focus ~ .input-glow {
    opacity: 1;
}

.input-hint {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.5);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.arrow-icon.back {
    transform: rotate(180deg);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Generation Container */
.generation-container {
    text-align: center;
    padding: 1rem 0;
}

.dice-animation {
    margin-bottom: 2rem;
}

.dice-3d {
    font-size: 5rem;
    animation: dice-roll 1s ease-in-out infinite;
    display: inline-block;
}

@keyframes dice-roll {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

/* Progress Bar */
.progress-container {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.progress-bar {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-glow {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
    animation: progress-shine 1.5s ease-in-out infinite;
}

@keyframes progress-shine {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

#progress-percent {
    font-weight: 700;
    color: var(--monopoly-gold);
}

#progress-status {
    color: var(--text-muted);
}

/* Generation Steps */
.generation-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto 2rem;
    text-align: left;
}

.gen-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.gen-step.active {
    color: var(--text-primary);
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid var(--monopoly-gold);
}

.gen-step.completed {
    color: #4ADE80;
}

.gen-step .gen-status {
    margin-left: auto;
}

.gen-step.completed .gen-status::after {
    content: '✓';
}

.gen-step.completed .gen-status {
    color: #4ADE80;
    font-size: 0;
}

.gen-step.completed .gen-status::after {
    font-size: 1rem;
}

/* Completion Message */
.completion-message {
    animation: fadeIn 0.5s ease-out;
    padding: 2rem 1rem;
}

.completion-message.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.completion-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4ADE80;
}

.completion-message p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-verify {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
    color: #000;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
}

.btn-verify:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.5);
}

.verify-badge {
    background: rgba(0,0,0,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.btn-deploy {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-gold);
    color: #000;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: var(--glow-gold);
}

.btn-deploy:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.5);
}

.deploy-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Content Locker Section (Inline) */
.content-locker-section {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.content-locker-section.hidden {
    display: none;
}

.locker-card {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 217, 61, 0.2);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.locker-header {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.15) 0%, rgba(227, 25, 55, 0.15) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.locker-icon {
    margin-bottom: 1rem;
}

.shield-icon {
    width: 48px;
    height: 48px;
    fill: var(--monopoly-gold);
    animation: pulse 2s ease infinite;
}

.locker-header h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--monopoly-gold);
    margin-bottom: 0.5rem;
}

.locker-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Urgency Section */
.urgency-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(227, 25, 55, 0.15);
    border-bottom: 1px solid rgba(227, 25, 55, 0.3);
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.urgency-item.timer {
    color: #FF6B6B;
}

.urgency-item.slots {
    color: var(--monopoly-gold);
}

.urgency-icon {
    font-size: 1rem;
}

.urgency-text strong {
    font-weight: 700;
}

#countdown-timer {
    font-family: monospace;
    font-size: 1rem;
    color: #FF6B6B;
    animation: blink 1s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Warning Section */
.locker-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    margin: 0 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    color: #FF6B6B;
}

.warning-icon {
    width: 18px;
    height: 18px;
    fill: #FF6B6B;
    flex-shrink: 0;
}

/* Verification Progress */
.locker-progress {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

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

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

.locker-note {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Live Stats Bar */
.locker-live-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
}

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

.stat-dot.green {
    background: #4ADE80;
    box-shadow: 0 0 10px #4ADE80;
}

.stat-dot.red {
    background: #FF6B6B;
    box-shadow: 0 0 10px #FF6B6B;
}

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

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

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #4ADE80;
}

.stat-value.red {
    color: #FF6B6B;
}

/* Resources Locked Box */
.locker-resources-box {
    padding: 1.5rem;
    background: rgba(255, 217, 61, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.resources-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.lock-badge {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.resources-warning {
    text-align: center;
    font-size: 0.85rem;
    color: #FF6B6B;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--border-radius-sm);
}

/* Progress Section */
.locker-progress-section {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.locker-progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.locker-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--monopoly-gold), #4ADE80);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.checking-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* Instructions */
.locker-instructions {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.locker-instructions h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.verify-explanation {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 1rem;
    background: rgba(0, 206, 201, 0.08);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
}

.instruction-steps {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.instruction-step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.instruction-step .step-num {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.instruction-tips {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tip-item {
    padding: 0.75rem 1rem;
    background: rgba(255, 217, 61, 0.08);
    border: 1px solid rgba(255, 217, 61, 0.2);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    color: var(--monopoly-gold);
}

.tip-item.highlight {
    background: rgba(255, 217, 61, 0.15);
    border-color: rgba(255, 217, 61, 0.4);
}

/* Offers Section */
.locker-offers-section {
    padding: 1.5rem;
}

.offers-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.offers-header-bar h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.offers-count {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offer-card-real {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.offer-card-real:hover {
    border-color: var(--monopoly-gold);
    background: rgba(255, 217, 61, 0.05);
    transform: translateX(5px);
}

.offer-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-number-badge {
    width: 50px;
    height: 50px;
    background: rgba(255, 217, 61, 0.1);
    border: 1px solid rgba(255, 217, 61, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--monopoly-gold);
    flex-shrink: 0;
}

.offer-details {
    flex: 1;
    min-width: 0;
}

.offer-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-requirement {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
}

.offer-boosted-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #FFD93D, #F5B800);
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 217, 61, 0.4);
    animation: pulse 2s infinite;
}

.offer-go-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.offer-go-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    transition: all 0.3s ease;
}

.offer-card-real:hover .offer-go-btn {
    background: var(--monopoly-gold);
}

.offer-card-real:hover .offer-go-btn svg {
    stroke: #000;
    transform: translateX(2px);
}

/* Offer Skeleton Loading */
.offer-skeleton {
    height: 72px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius-sm);
}

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

.locker-resources {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.resource-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.resource-emoji {
    font-size: 2rem;
}

.resource-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--monopoly-gold);
}

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

.locker-offers {
    padding: 1.5rem;
}

.offers-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.offer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offer-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: left;
}

.offer-btn:hover {
    background: rgba(255, 217, 61, 0.1);
    border-color: var(--monopoly-gold);
    transform: translateX(5px);
}

.offer-btn .offer-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.offer-btn .offer-text {
    flex: 1;
}

.offer-btn .offer-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.offer-btn .offer-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.offer-btn .offer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-btn .badge-easy {
    background: linear-gradient(135deg, #4ADE80, #22C55E);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.offer-btn .offer-arrow {
    color: var(--monopoly-gold);
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.offer-btn:hover .offer-arrow {
    transform: translateX(3px);
}

.offer-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-muted);
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 217, 61, 0.2);
    border-top-color: var(--monopoly-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.locker-footer {
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Activity Feed */
.activity-feed {
    margin-top: 2rem;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
}

.feed-icon {
    animation: pulse 2s ease-in-out infinite;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 200px;
    overflow: hidden;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    animation: slideInLeft 0.5s ease-out;
}

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

.feed-item .username {
    font-weight: 600;
    color: var(--monopoly-teal);
}

.feed-item .reward-type {
    color: var(--monopoly-gold);
}

.feed-item .amount {
    margin-left: auto;
    font-weight: 700;
    color: var(--text-primary);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 217, 61, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-card {
        padding: 1.5rem;
    }
    
    .steps-container {
        gap: 0.5rem;
    }
    
    .step-line {
        width: 30px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .status-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .platform-select {
        flex-direction: column;
    }
    
    .platform-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Content Locker Mobile */
    .locker-live-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-box {
        justify-content: center;
    }
    
    .resources-locked {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .instruction-steps {
        flex-direction: column;
    }
    
    .offer-go-btn {
        display: none;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 217, 61, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 217, 61, 0.5);
}

/* Selection Styling */
::selection {
    background: rgba(255, 217, 61, 0.3);
    color: var(--text-primary);
}

