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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e1a;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Welcome Screen */
.welcome-screen {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e1a 0%, #161b2b 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.welcome-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    padding-bottom: 40px;
}

/* Live Counter */
.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #00ff88;
    animation: fadeIn 1s ease-out;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

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

.logo-section {
    margin-bottom: 25px;
}

.logo-section h1 {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: #ffc107;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.main-offer {
    margin-bottom: 25px;
}

.offer-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(255, 193, 7, 0.08));
    border: 2px solid #00ff88;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.urgency-badge {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.offer-highlight h2 {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    font-weight: 800;
    text-transform: uppercase;
}

.big-text {
    font-size: 1.1rem;
    color: #fff;
    margin: 12px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.big-text i {
    color: #00ff88;
}

/* Countdown Timer */
.countdown-timer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-label {
    color: #ff4757;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-digits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-block {
    background: linear-gradient(135deg, #1a1f2e, #252b3d);
    padding: 12px 20px;
    border-radius: 10px;
    min-width: 70px;
    border: 1px solid #2a3441;
}

.timer-block span {
    font-size: 2rem;
    font-weight: 800;
    color: #ff4757;
    display: block;
}

.timer-block small {
    font-size: 0.75rem;
    color: #8892b0;
    text-transform: uppercase;
}

.timer-separator {
    font-size: 2rem;
    color: #ff4757;
    font-weight: 800;
}

/* CTA Button */
.btn-start {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    color: #0a0e1a;
    font-size: 1.3rem;
    padding: 20px 40px;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.btn-arrow {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: 5px;
}

.pulse-strong {
    animation: pulseStrong 1.5s infinite;
}

@keyframes pulseStrong {
    0% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 255, 136, 0.6);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    }
}

.cta-subtext {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-subtext i {
    color: #00ff88;
}

/* How it works */
.how-it-works-simple {
    background: rgba(22, 27, 43, 0.8);
    padding: 30px 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid #2a3441;
}

.how-it-works-simple h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.simple-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.simple-step {
    background: rgba(15, 20, 25, 0.8);
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px solid #2a3441;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.simple-step h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.simple-step p {
    color: #8892b0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Testimonials */
.testimonials-section {
    margin-bottom: 30px;
}

.testimonials-section h2 {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.testimonial-card {
    background: rgba(22, 27, 43, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #2a3441;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    font-size: 2rem;
    background: rgba(0, 212, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.verified {
    color: #00ff88;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-card p {
    color: #c4c9d4;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-amount {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
}

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

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #161b2b;
    padding: 15px 20px;
    border-bottom: 1px solid #2a3441;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00d4ff;
}

.balance {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Game Screen */
.game-screen {
    flex: 1;
    background: #0a0e1a;
}

.game-info {
    position: absolute;
    top: 80px;
    left: 20px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.round-info, .bet-amount {
    background: rgba(22, 27, 43, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #2a3441;
}

/* Chart Container */
.chart-container {
    flex: 1;
    background: #0f1419;
    position: relative;
    overflow: hidden;
}

.chart-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(22, 27, 43, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #2a3441;
}

.chart-header h3 {
    font-size: 0.9rem;
    color: #8892b0;
    margin-bottom: 4px;
}

.price-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
    font-family: 'Courier New', monospace;
}

.chart {
    height: 100%;
    background: 
        linear-gradient(rgba(42, 52, 65, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 52, 65, 0.3) 1px, transparent 1px),
        linear-gradient(135deg, #0a0e1a 0%, #161b2b 50%, #0f1419 100%);
    background-size: 40px 25px, 40px 25px, 100% 100%;
    display: flex;
    align-items: end;
    justify-content: space-evenly;
    gap: 8px;
    padding: 80px 20px 150px 20px;
    position: relative;
    overflow: hidden;
}

/* Candlesticks */
.candlestick {
    width: 24px;
    background: #6b7280;
    border-radius: 2px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    max-width: 35px;
}

.candlestick::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    top: -25%;
    background: inherit;
    opacity: 0.8;
}

.candlestick::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50%;
    bottom: -25%;
    background: inherit;
    opacity: 0.8;
}

.candlestick.green {
    background: linear-gradient(to bottom, #26c281, #1ea66b);
    border: 1px solid #32d296;
    box-shadow: 0 0 12px rgba(38, 194, 129, 0.3);
}

.candlestick.green::before,
.candlestick.green::after {
    background: #26c281;
}

.candlestick.red {
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    border: 1px solid #ff6b5c;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.3);
}

.candlestick.red::before,
.candlestick.red::after {
    background: #e74c3c;
}

.candlestick.current {
    animation: liveCandle 2s infinite ease-in-out;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.candlestick.live {
    animation: realtimeMovement 2s ease-in-out, slideInCandle 0.5s ease-out;
}

@keyframes slideInCandle {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes realtimeMovement {
    0% { 
        height: var(--initial-height);
        opacity: 0.7;
        transform: scale(0.9);
    }
    50% { 
        height: calc(var(--initial-height) * 1.1);
        opacity: 1;
        transform: scale(1.05);
    }
    100% { 
        height: var(--initial-height);
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes liveCandle {
    0% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
        transform: scale(1.02);
    }
    100% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        transform: scale(1);
    }
}

/* Trading Panel */
.prediction-area {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: #161b2b;
    padding: 15px 20px;
    border-top: 1px solid #2a3441;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 50;
}

/* Sliding Notifications */
.sliding-notifications {
    height: 28px;
    overflow: hidden;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: 12px;
    position: relative;
}

.sliding-notifications-track {
    display: flex;
    animation: slideLeft 20s linear infinite;
    white-space: nowrap;
    height: 100%;
    align-items: center;
}

.sliding-notification-item {
    color: #00ff88;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 25px;
    flex-shrink: 0;
}

.sliding-notification-item .name {
    font-weight: 600;
    color: #fff;
}

.sliding-notification-item .amount {
    color: #00ff88;
    font-weight: 700;
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.prediction-area h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #8892b0;
    font-weight: 500;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-up {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    color: #0a0e1a;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-up:hover {
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

.btn-down {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.btn-down:hover {
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

.btn-next {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.btn-withdraw {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    color: #0a0e1a;
    font-size: 1.2rem;
    padding: 20px 40px;
}

.btn-confirm {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    color: #0a0e1a;
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 18px;
}

.btn-restart {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 15px 30px;
    margin-top: 20px;
}

/* Live Testimonials Feed */
.live-testimonials {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.95), rgba(20, 30, 50, 0.9));
    border-radius: 15px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #2a3441;
    min-height: 140px;
    flex: 1;
}

.live-testimonials-header {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-testimonials-header i {
    animation: pulse 2s infinite;
}

.live-testimonials-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 3px solid #00ff88;
    animation: slideInTestimonial 0.5s ease-out;
}

.testimonial-message .avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #00ff88;
}

.testimonial-message .content {
    flex: 1;
    min-width: 0;
}

.testimonial-message .header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.testimonial-message .name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-message .verified {
    color: #00d4ff;
    font-size: 0.7rem;
}

.testimonial-message .time {
    color: #5a6a8a;
    font-size: 0.75rem;
    margin-left: auto;
}

.testimonial-message .text {
    color: #c4c9d4;
    font-size: 0.9rem;
    line-height: 1.4;
}

.testimonial-message .amount {
    color: #00ff88;
    font-weight: 700;
}

@keyframes slideInTestimonial {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notifications Panel */
.notifications-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1419;
    padding: 8px 15px;
    border-top: 1px solid #2a3441;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
    max-height: 55px;
    overflow: hidden;
}

.notifications-title {
    color: #ffc107;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 70px;
    overflow-y: auto;
}

.notification-item {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    animation: slideInNotification 0.5s ease-out;
    font-weight: 500;
}

.notification-item .name {
    font-weight: 600;
    color: #fff;
}

.notification-item .amount {
    color: #00ff88;
    font-weight: 700;
}

@keyframes slideInNotification {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Result Banner (inline, non-blocking) */
.result-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(22, 27, 43, 0.95);
    padding: 20px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
    animation: bannerPop 0.4s ease-out, bannerFade 2s ease-in-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #2a3441;
}

.result-banner.win {
    border-color: rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, rgba(22, 27, 43, 0.95), rgba(0, 255, 136, 0.1));
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.result-banner.loss {
    border-color: rgba(255, 71, 87, 0.5);
    background: linear-gradient(135deg, rgba(22, 27, 43, 0.95), rgba(255, 71, 87, 0.1));
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.2);
}

#resultBannerIcon {
    font-size: 2rem;
}

#resultBannerText {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

#resultBannerAmount {
    font-size: 1.3rem;
    font-weight: 700;
}

.result-banner.win #resultBannerAmount {
    color: #00ff88;
}

.result-banner.loss #resultBannerAmount {
    color: #ff4757;
}

@keyframes bannerPop {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes bannerFade {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Balance Flash Animation */
.balance.flash-green {
    animation: flashGreen 0.5s ease-out;
}

.balance.flash-red {
    animation: flashRed 0.5s ease-out;
}

@keyframes flashGreen {
    0%, 100% { background: rgba(0, 255, 136, 0.1); }
    50% { background: rgba(0, 255, 136, 0.4); transform: scale(1.1); }
}

@keyframes flashRed {
    0%, 100% { background: rgba(255, 71, 87, 0.1); }
    50% { background: rgba(255, 71, 87, 0.4); transform: scale(1.1); }
}

/* Tutorial Modal */
.tutorial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(15px);
}

.tutorial-content {
    background: linear-gradient(135deg, #161b2b, #1a2035);
    padding: 40px 35px;
    border-radius: 25px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.5s ease-out;
}

.tutorial-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.tutorial-content h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.tutorial-steps {
    text-align: left;
    margin-bottom: 25px;
}

.tutorial-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid #2a3441;
}

.tutorial-number {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tutorial-text strong {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.tutorial-text p {
    color: #8892b0;
    font-size: 0.9rem;
    margin: 0;
}

.green-text {
    color: #00ff88;
    font-weight: 600;
}

.red-text {
    color: #ff4757;
    font-weight: 600;
}

.tutorial-tip {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffc107;
}

.tutorial-tip i {
    font-size: 1.2rem;
}

/* Final Screen */
.final-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #161b2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.final-content {
    text-align: center;
    background: rgba(22, 27, 43, 0.95);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.final-trophy {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

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

.final-content h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.final-balance {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.final-balance h3 {
    font-size: 2.2rem;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.performance {
    margin: 20px 0;
}

.performance p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #c4c9d4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.withdraw-text {
    color: #8892b0;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #161b2b;
    padding: 35px;
    border-radius: 20px;
    max-width: 420px;
    width: 90%;
    border: 1px solid #2a3441;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.5s ease-out;
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.withdrawal-form label {
    display: block;
    margin-bottom: 10px;
    color: #8892b0;
    font-size: 0.95rem;
}

.withdrawal-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #2a3441;
    border-radius: 10px;
    background: #0f1419;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.withdrawal-form input:focus {
    outline: none;
    border-color: #00ff88;
}

.withdrawal-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.amount-highlight {
    color: #00ff88;
    font-size: 1.3rem;
}

.pix-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #8892b0;
    font-size: 0.85rem;
}

.pix-info i {
    color: #00ff88;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.loading-content {
    text-align: center;
    max-width: 350px;
    width: 90%;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #2a3441;
    border-top: 4px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px auto;
}

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

.loading-content h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.loading-step {
    color: #8892b0;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.loading-progress {
    width: 100%;
    height: 6px;
    background: #2a3441;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00ff88, #00d4aa);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Success Screen */
.success-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #161b2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
}

.success-content {
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: fadeInUp 0.8s ease-out;
}

.success-animation {
    margin-bottom: 25px;
}

.success-icon {
    font-size: 5rem;
    color: #00ff88;
    animation: successPop 0.6s ease-out;
}

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

.success-content h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-subtitle {
    color: #8892b0;
    font-size: 1rem;
    margin-bottom: 25px;
}

.transfer-card {
    background: rgba(22, 27, 43, 0.95);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #2a3441;
    margin-bottom: 25px;
}

.transfer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transfer-row:last-child {
    border-bottom: none;
}

.transfer-row span {
    color: #8892b0;
}

.transfer-row strong {
    color: #fff;
}

.status-success {
    color: #00ff88 !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Fee Screen */
.fee-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.fee-content {
    background: linear-gradient(135deg, #151922 0%, #1f2937 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    border: 1px solid #2a3441;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fee-icon i {
    font-size: 2.5rem;
    color: white;
}

.fee-content h2 {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.fee-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #2a3441;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row span {
    color: #8b95a5;
    font-size: 0.95rem;
}

.fee-row strong {
    color: white;
    font-size: 1rem;
}

.fee-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    margin: 15px 0;
}

.fee-highlight {
    background: rgba(245, 158, 11, 0.1);
    margin: 0 -20px;
    padding: 15px 20px !important;
    border-radius: 10px;
}

.fee-amount {
    color: #f59e0b !important;
    font-size: 1.3rem !important;
}

.fee-explanation {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.fee-explanation i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 2px;
}

.fee-explanation p {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.fee-explanation strong {
    color: #00ff88;
}

.fee-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #00ff88;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.fee-security i {
    font-size: 1rem;
}

.btn-pay-fee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #00ff88 0%, #00d4aa 50%, #00ff88 100%);
    background-size: 200% 200%;
    color: #0a0e1a;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 22px 35px;
    border-radius: 15px;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    animation: shimmerBtn 2s ease-in-out infinite, pulseBtn 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pay-fee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

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

@keyframes shimmerBtn {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseBtn {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
    }
}

.btn-pay-fee:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.7), 0 0 100px rgba(0, 255, 136, 0.4);
    animation: none;
}

.btn-pay-fee i {
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-section h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .offer-highlight h2 {
        font-size: 1.5rem;
    }
    
    .big-text {
        font-size: 0.95rem;
    }
    
    .btn-start {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
    
    .simple-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timer-block span {
        font-size: 1.5rem;
    }
    
    .buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .game-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .welcome-content {
        padding-bottom: 30px;
    }
    
    .offer-highlight {
        padding: 20px 15px;
    }
    
    .how-it-works-simple {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
}
