/**
 * Quiz Drop - New Onboarding Styles
 * Geometric Fire Design System
 * Mobile-First Responsive
 */

/* ==================== ONBOARDING CONTAINER ==================== */
.onboarding-new-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #FEC400 0%, #FF6B35 50%, #E63946 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

/* Geometric Fire Background Elements */
.onboarding-new-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 400px;
    height: 400px;
    background: #FF6B35;
    opacity: 0.3;
    transform: skewX(-15deg);
    z-index: 0;
}

.onboarding-new-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 400px;
    height: 400px;
    background: #E63946;
    opacity: 0.3;
    transform: skewX(-15deg);
    z-index: 0;
}

/* ==================== ONBOARDING STEPS ==================== */
.onboarding-step {
    display: none;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in-out;
}

.onboarding-step.active {
    display: block;
}

.onboarding-empty {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 2rem 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.15);
}

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

/* ==================== STEP HEADER ==================== */
.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.step-title {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.step-subtitle {
    font-family: 'Cabin', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== PRODUCTS GRID (Step 1) ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.coinclash-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
}

.coinclash-info {
    flex: 2;
}

.coinclash-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.coinclash-info li::before {
    content: '•';
    margin-right: 0.5rem;
    color: #FEC400;
}

.coinclash-actions {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-coinclash {
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border: none;
    color: #1A1A1A;
    font-family: 'Cabin', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(254, 196, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-coinclash:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(254, 196, 0, 0.6);
    background: linear-gradient(135deg, #FF6B35, #FEC400);
}

.coinclash-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.btn-continue {
    display: none;
}

.btn-continue:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-continue:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prize-summary-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 24px;
    padding: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.prize-image {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.prize-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prize-details h3 {
    margin-bottom: 0.5rem;
}

.prize-prices div {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.btn-drop-price {
    background: var(--gradient-fire);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1rem;
    display: inline-block;
}

.btn-drop-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.prize-hint {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.product-card-onboarding {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-onboarding:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-card-image-wrapper {
    width: 100%;
    height: 10rem;
    margin: 0 auto 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(254, 196, 0, 0.1), rgba(255, 107, 53, 0.1));
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
}

.product-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: rotate(-6deg);
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.product-card-name {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #2B2B2B;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-card-prices {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-card-original-price {
    font-size: 0.875rem;
    color: #4B5563;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.product-card-current-price {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 1.5rem;
    color: #FF6B35;
}

.product-card-progress {
    margin-bottom: 1rem;
}

.product-card-progress-bar {
    height: 0.5rem;
    background: #E5E7EB;
    border-radius: 9999px;
    overflow: hidden;
}

.product-card-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FEC400, #FF6B35);
    transition: width 0.5s ease;
}

.product-card-progress-text {
    font-size: 0.75rem;
    color: #4B5563;
    text-align: center;
    margin-top: 0.25rem;
}

.btn-select-product {
    width: 100%;
    background: linear-gradient(90deg, #FF6B35, #E63946);
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transform: skewX(-2deg);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.btn-select-product:hover {
    background: linear-gradient(90deg, #E63946, #FF6B35);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.6);
    transform: skewX(-2deg) translateY(-2px);
}

.btn-select-product span {
    display: inline-block;
    transform: skewX(2deg);
}

/* ==================== GAMES GRID (Step 2) ==================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-card-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.game-card:nth-child(2) .game-card-icon {
    transform: rotate(6deg);
}

.game-card-badge {
    display: inline-block;
    background: #FF6B35;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.game-card-badge.card-badge {
    background: #FEC400;
    color: #2B2B2B;
}

.game-card-title {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2B2B2B;
    margin-bottom: 1rem;
}

.game-card-description {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.game-card-features li {
    font-size: 0.875rem;
    color: #4B5563;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.game-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #FEC400;
    border-radius: 50%;
}

.btn-game-select {
    width: 100%;
    background: linear-gradient(90deg, #FF6B35, #E63946);
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.btn-game-select:hover {
    background: linear-gradient(90deg, #E63946, #FF6B35);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.6);
    transform: translateY(-2px);
}

.btn-game-select.card-btn {
    background: linear-gradient(90deg, #FEC400, #FF6B35);
    color: #2B2B2B;
}

.btn-game-select.card-btn:hover {
    background: linear-gradient(90deg, #FF6B35, #FEC400);
}

/* ==================== SIGNUP FORM (Step 3) ==================== */
.signup-progress {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.progress-bar {
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FEC400, #FF6B35);
    transition: width 0.5s ease-out;
}

.progress-text {
    text-align: right;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
}

.signup-question {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.signup-question.active {
    display: block;
}

.question-icon-small {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.question-title-small {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #2B2B2B;
    text-align: center;
    margin-bottom: 2rem;
}

.input-signup {
    width: 100%;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-family: 'Cabin', sans-serif;
}

.input-signup:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-next-question,
.btn-create-account {
    width: 100%;
    background: linear-gradient(90deg, #FF6B35, #E63946);
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.btn-next-question:hover,
.btn-create-account:hover {
    background: linear-gradient(90deg, #E63946, #FF6B35);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.6);
    transform: translateY(-2px);
}

.question-buttons {
    display: flex;
    gap: 1rem;
}

.btn-back-question {
    flex: 1;
    background: transparent;
    color: #2B2B2B;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back-question:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.btn-next-question {
    flex: 1;
}

/* ==================== SUCCESS SCREEN (Step 4) ==================== */
.success-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.success-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FEC400 0%, #FF6B35 50%, #E63946 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
}

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

.success-title {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2B2B2B;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

.success-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #FEC400, #FF6B35);
    border-radius: 9999px;
    margin: 0 auto 2rem;
}

.success-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(254, 196, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 1rem;
    padding: 1.5rem;
}

.summary-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.summary-title {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2B2B2B;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FF6B35;
    margin-bottom: 0.25rem;
}

.summary-detail {
    font-size: 0.875rem;
    color: #4B5563;
}

.initial-points-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FEC400, #FF6B35);
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-start-game {
    width: 100%;
    background: linear-gradient(90deg, #FF6B35 0%, #E63946 50%, #FF6B35 100%);
    background-size: 200% 100%;
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-start-game:hover {
    background-position: 100% 0;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.7);
    transform: translateY(-2px);
}

.success-footer {
    font-size: 0.875rem;
    color: #4B5563;
    margin-top: 1.5rem;
}

/* ==================== STEP FOOTER ==================== */
.step-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-back-step {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back-step:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Prize Summary - Tablet & Desktop */
@media (min-width: 768px) {
    .prize-summary-card {
        padding: 40px;
        gap: 32px;
    }

    .prize-product-image-container {
        max-width: 500px;
        padding: 32px;
    }

    .prize-product-name {
        font-size: 1.75rem;
    }

    .prize-product-prices {
        padding: 28px;
    }

    .prize-price-value {
        font-size: 1.4rem;
    }

    .prize-price-current .prize-price-value.prize-price-highlight {
        font-size: 2rem;
    }

    .prize-savings-value {
        font-size: 1.6rem;
    }

    .btn-drop-price-cta {
        font-size: 1.3rem;
        padding: 20px 40px;
    }

    .prize-hint {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .prize-summary-card {
        flex-direction: row;
        gap: 48px;
        padding: 48px;
        text-align: left;
    }

    .prize-product-image-container {
        flex-shrink: 0;
        width: 400px;
        max-width: none;
    }

    .prize-product-info {
        flex: 1;
        text-align: left;
    }

    .prize-product-name {
        font-size: 2rem;
    }

    .prize-price-current .prize-price-value.prize-price-highlight {
        font-size: 2.25rem;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .step-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .step-subtitle {
        font-size: 1rem;
    }
    
    .game-options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-option-card {
        padding: 20px;
    }
    
    .game-option-icon {
        font-size: 2.25rem;
    }
    
    .btn-coinclash,
    .btn-continue {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .step-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .coinclash-preview {
        flex-direction: column;
    }

    .prize-summary-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== SKELETON LOADER ==================== */
.product-skeleton {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    height: 350px;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}
.game-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
}

/* Tablet: 2 colunas */
@media (min-width: 640px) {
    .game-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Desktop: 3 colunas (perfeito para os 3 jogos) */
@media (min-width: 1024px) {
    .game-options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.game-option-card {
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 28px;
    background: rgba(254, 196, 0, 0.15);
    backdrop-filter: blur(10px);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    min-height: 420px;
}

.game-option-card:hover {
    border-color: rgba(254, 196, 0, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.game-option-card.active {
    border-color: #FEC400;
    border-width: 4px;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(254, 196, 0, 0.5);
}

.game-option-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.game-option-copy ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
}

.game-option-copy h3 {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.game-option-copy p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.game-option-tag {
    align-self: flex-start;
    background: linear-gradient(135deg, #FF6B35, #E63946);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.game-option-card .btn-start-game {
    margin-top: 16px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(254, 196, 0, 0.4);
}

.game-option-card .btn-start-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 196, 0, 0.6);
    background: linear-gradient(135deg, #FFD700, #FEC400);
}

.game-option-card .btn-start-game:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(254, 196, 0, 0.4);
}

.game-option-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.game-option-hint {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.game-option-card ul li {
    line-height: 1.6;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
}

.game-option-card ul li::marker {
    color: #FEC400;
}


/* ==================== STEP 3: PRIZE READY ==================== */
/* Prize Summary Card - Mobile First */
.prize-summary-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    animation: cardFadeIn 0.4s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Product Image Container */
.prize-product-image-container {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #F0F4F8, #E2E8F0);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Product Info */
.prize-product-info {
    width: 100%;
    text-align: center;
}

.prize-product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Product Prices */
.prize-product-prices {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
    border-radius: 16px;
    padding: 18px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
}e-price-original,
.prize-price-current,
.prize-price-savings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.prize-price-original {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.prize-price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prize-price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #495057;
}

.prize-price-original .prize-price-value {
    text-decoration: line-through;
    color: #ADB5BD;
    font-size: 1.1rem;
}

.prize-price-current .prize-price-value.prize-price-highlight {
    color: #FEC400;
    font-size: 1.6rem;
    text-shadow: 0 2px 8px rgba(254, 196, 0, 0.3);
}

.prize-price-savings {
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 8px;
}

.prize-savings-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prize-savings-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
}

/* CTA Button inside card */
.btn-drop-price-cta {
    width: 100%;
    padding: 16px 28px;
    margin-top: 20px;
    background: linear-gradient(135deg, #FEC400, #FF6B35);
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(254, 196, 0, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(254, 196, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(254, 196, 0, 0.6);
    }
}

.btn-drop-price-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(254, 196, 0, 0.7);
    background: linear-gradient(135deg, #FFD700, #FEC400);
    animation: none;
}

.btn-drop-price-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254, 196, 0, 0.4);
}

.prize-hint {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .prize-summary-card {
        flex-direction: row;
        text-align: left;
        padding: 40px;
        gap: 32px;
    }

    .prize-image-wrapper {
        max-width: 280px;
        flex-shrink: 0;
    }

    .prize-details {
        flex: 1;
    }

    .prize-details h3 {
        font-size: 1.75rem;
    }

    .prize-prices {
        font-size: 1.15rem;
    }

    .btn-drop-price-cta {
        font-size: 1.3rem;
        padding: 20px 40px;
    }

    .prize-hint {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .prize-summary-card {
        padding: 48px;
    }

    .prize-image-wrapper {
        max-width: 320px;
    }

    .prize-details h3 {
        font-size: 2rem;
    }
}

