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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #f8f8f8;
    color: #333;
    max-width: 400px;
    margin: 0 auto;
    min-height: 100vh;
}

.container { 
    background: #fff; 
    min-height: 100vh; 
}

/* Logo */
.logo {
    text-align: center;
    padding: 30px 20px 20px 20px;
}

.logo-text {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo .fire { 
    color: #ff6600; 
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    margin: 20px;
    border-radius: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

/* Content */
.content { 
    padding: 20px; 
}

.celebration {
    text-align: center;
    font-size: 20px;
    color: #ffaa00;
    font-weight: bold;
    margin: 25px 0;
    line-height: 1.3;
}

.description {
    text-align: center;
    line-height: 1.6;
    margin: 25px 0;
}

.description .highlight { 
    font-weight: bold; 
    color: #000; 
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #ffaa00;
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

/* Discount Box */
.discount-box {
    background: #fff;
    border: 2px solid #ffaa00;
    border-radius: 15px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon { 
    color: #ffaa00; 
    font-size: 20px; 
    font-weight: bold; 
}

.discount-text { 
    color: #ffaa00; 
    font-weight: bold; 
    font-size: 16px; 
}

.discount-subtitle { 
    color: #333; 
    font-size: 14px; 
    margin-top: 2px; 
}

.discount-percentage {
    background: #000;
    color: #ffaa00;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

/* Questions */
.question-header {
    color: #ffaa00;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.question-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.option {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.option:hover { 
    background: #f0f0f0; 
    transform: translateY(-1px); 
}

.option:active { 
    transform: scale(0.98); 
}

.option.selected {
    background: #fff;
    border: 2px solid #ffaa00;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.25);
}

.option-emoji { 
    font-size: 28px; 
    min-width: 35px; 
}

.option-text { 
    font-size: 15px; 
    line-height: 1.4; 
    font-weight: 500; 
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 40px;
}

.option-card {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.option-card:hover { 
    background: #f0f0f0; 
    transform: translateY(-2px); 
}

.option-card:active { 
    transform: scale(0.96); 
}

.option-card.selected {
    background: #fff;
    border: 2px solid #ffaa00;
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.25);
}

.option-card .preview {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.option-card .label { 
    font-weight: bold; 
    font-size: 15px; 
}

/* Map previews */
.bermuda { background: linear-gradient(45deg, #20B2AA, #48D1CC, #00CED1); }
.purgatorio { background: linear-gradient(45deg, #2E8B57, #3CB371, #228B22); }
.kalahari { background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F); }
.alpine { background: linear-gradient(45deg, #4682B4, #87CEEB, #B0C4DE); }

/* Company logos */
.garena { 
    background: linear-gradient(45deg, #ff6600, #ff8800); 
    color: #fff; 
    font-size: 18px; 
}

.tencent { 
    background: #000; 
    color: #fff; 
    font-size: 14px; 
}

.supercell { 
    background: #000; 
    color: #fff; 
    font-size: 10px; 
    flex-direction: column; 
    line-height: 1; 
}

.ubisoft { 
    background: #000; 
    color: #fff; 
    font-size: 24px; 
}

/* Characters */
.kapella { 
    background: linear-gradient(45deg, #ff69b4, #ff1493, #dc143c); 
    height: 100px; 
}

.moco { 
    background: linear-gradient(45deg, #4169e1, #6495ed, #87ceeb); 
    height: 100px; 
}

.hayato { 
    background: linear-gradient(45deg, #8b4513, #daa520, #cd853f); 
    height: 100px; 
}

.laura { 
    background: linear-gradient(45deg, #2f4f4f, #708090, #778899); 
    height: 100px; 
}

/* Numbers */
.number { 
    font-size: 28px; 
    font-weight: bold; 
    color: #333; 
    padding: 25px 0; 
}

/* Buttons */
.continue-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffaa00, #ff8800);
    border: none;
    border-radius: 15px;
    padding: 18px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}

.continue-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4); 
}

.continue-btn:active { 
    transform: scale(0.98); 
}

.continue-btn:disabled { 
    opacity: 0.6; 
    cursor: not-allowed; 
    transform: none; 
}

/* Loading Animation */
@keyframes loading { 
    0% { width: 0%; } 
    100% { width: 100%; } 
}

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

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

/* Cupom Section */
.cupom-reserved {
    text-align: center;
    padding: 30px 20px;
}

.cupom-title {
    color: #ff0000;
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 10px;
}

.progress-circle {
    width: 100px;
    height: 100px;
    border: 8px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.progress-circle-text {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

/* Reviews */
.review-box {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 18px;
    margin: 18px 0;
    border-left: 4px solid #ffaa00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ddd, #bbb);
}

.review-name {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.review-location {
    color: #666;
    font-size: 12px;
}

.review-text {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
}

.review-stars {
    color: #ffaa00;
    font-size: 18px;
}

/* Login/Checkout Screens */
.header-bar {
    background: linear-gradient(135deg, #ff6600, #ff8800);
    padding: 15px;
    color: #fff;
}

.company-logo {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.promo-banner {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 15px;
    padding: 15px;
    margin: 20px;
    color: #fff;
    text-align: center;
}

.game-selection {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.game-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6600, #ff8800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.step-indicator {
    background: #ff0000;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 15px;
}

.success-indicator {
    background: #4CAF50;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.promo-box {
    background: #fff;
    border: 2px solid #ff6600;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    position: relative;
}

.promo-tag {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #ff0000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Input Fields */
input[type="text"] {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

/* Reclame Aqui Box */
.reclame-aqui {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ra-logo {
    width: 45px;
    height: 45px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}