/* ====================================
   EXCLUSIVE REVEAL STYLES
   For Why Revo Page Only
==================================== */

/* Star Animation on Growth Curve */
.growth-star {
    position: absolute;
    font-size: 1.5rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    z-index: 10;
    opacity: 0;
    animation: starMove 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes starMove {
    0% {
        left: 1%;
        top: 77%;
        opacity: 0;
        transform: scale(0);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        left: 40%;
        top: 77%;
    }

    90% {
        left: 96%;
        top: 5%;
        opacity: 1;
    }

    100% {
        left: 96%;
        top: 5%;
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Reveal Overlay */
.exclusive-reveal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.exclusive-reveal-overlay.active {
    display: flex;
    animation: revealFadeIn 0.8s ease forwards;
}

@keyframes revealFadeIn {
    to {
        opacity: 1;
    }
}

.reveal-circle {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes circleReveal {
    to {
        width: 150vmax;
        height: 150vmax;
    }
}

.reveal-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: contentFadeIn 0.6s 0.8s ease forwards;
}

@keyframes contentFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal-card {
    background: linear-gradient(135deg, rgba(19, 27, 47, 0.95), rgba(11, 17, 32, 0.98));
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(157, 0, 255, 0.3);
    box-shadow: 0 20px 60px rgba(157, 0, 255, 0.4);
    max-width: 600px;
    text-align: center;
    position: relative;
}

.reveal-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
    }
}

.reveal-card h2 {
    font-size: 1.8rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.reveal-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9D00FF, transparent);
    margin: 1.5rem auto;
}

.reveal-message {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.reveal-highlight {
    font-size: 1.5rem;
    color: #9D00FF;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}

.reveal-note {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

/* Exclusive Code Box */
.exclusive-code-box {
    background: rgba(157, 0, 255, 0.08);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.code-label {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.75rem;
    text-align: center;
}

.code-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.code-copy-btn {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.code-copy-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.reveal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #f0f0f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.reveal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ====================================
   CHOICE MODAL
==================================== */

.choice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.choice-modal.show {
    display: flex;
    animation: modalFadeIn 0.6s ease forwards;
}

@keyframes modalFadeIn {
    to {
        opacity: 1;
    }
}

.choice-container {
    background: linear-gradient(135deg, rgba(19, 27, 47, 0.98), rgba(11, 17, 32, 0.95));
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(157, 0, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
    max-width: 900px;
    width: 90%;
    animation: slideUp 0.6s 0.3s ease backwards;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
}

.choice-header {
    text-align: center;
    margin-bottom: 3rem;
}

.choice-header i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    animation: giftPulse 2s ease infinite;
}

@keyframes giftPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }
}

.choice-header h3 {
    font-size: 2rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 59, 48, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 59, 48, 0.3);
    font-size: 1.1rem;
    color: #FF3B30;
    font-weight: 700;
}

.countdown-timer i {
    font-size: 1.2rem;
    animation: clockTick 1s ease infinite;
}

@keyframes clockTick {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

/* Choices Grid */
.choices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.choice-option {
    background: rgba(19, 27, 47, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.choice-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.choice-left {
    border-color: rgba(0, 217, 255, 0.3);
}

.choice-left:hover {
    border-color: rgba(0, 217, 255, 0.6);
}

.choice-right {
    border-color: rgba(37, 211, 102, 0.3);
}

.choice-right:hover {
    border-color: rgba(37, 211, 102, 0.6);
}

.choice-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9D00FF, #00D9FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.4);
}

.choice-option>i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.choice-left>i {
    color: #00D9FF;
}

.choice-right>i {
    color: #25D366;
}

.choice-option h4 {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.choice-option p {
    color: #a0aec0;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.choice-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.btn-package {
    background: linear-gradient(135deg, #00D9FF, #0099FF);
    color: white;
}

.btn-package:hover {
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
    transform: scale(1.05);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transform: scale(1.05);
}

/* Modal Close Button */
.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #f0f0f0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(255, 59, 48, 0.2);
    color: #FF3B30;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .reveal-card {
        padding: 2rem;
        margin: 1rem;
    }

    .reveal-card h2 {
        font-size: 1.4rem;
    }

    .reveal-highlight {
        font-size: 1.2rem;
    }

    .code-display {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .choice-container {
        padding: 2rem 1.5rem;
    }

    .choices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .choice-header h3 {
        font-size: 1.5rem;
    }

    .choice-option {
        padding: 2rem 1.5rem;
    }
}