* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #e8e6e1;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 640px;
    width: 100%;
    padding: 40px 20px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subscriber-count {
    font-size: 1.1rem;
    color: #28a745;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.subscriber-count span {
    font-weight: 800;
    font-size: 1.25rem;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.offer-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffefc4 100%);
    border: 3px solid #d4a574;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.offer-card.selected {
    background: linear-gradient(135deg, #ffd966 0%, #ffcc33 100%);
    border-color: #b8860b;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2c2c2c;
    white-space: nowrap;
}

.arrow {
    font-size: 1.75rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 2px;
}

.data {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a3a6b;
    white-space: nowrap;
}

.bundle-type,
.days {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-left: 2px;
    white-space: nowrap;
}

.chevron {
    color: #4a4a4a;
    flex-shrink: 0;
}

.limited-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.lightning {
    flex-shrink: 0;
}

.limited-offer strong {
    font-weight: 700;
}

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
    color: white;
    text-align: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #152d4a 0%, #1e3a5f 100%);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.urgent {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    animation: shake 0.5s infinite;
}

.cta-button.urgent:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.activation-text {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .container {
        padding: 30px 16px;
    }

    .main-title {
        font-size: 2rem;
    }

    .subscriber-count {
        font-size: 1rem;
    }
    
    .subscriber-count span {
        font-size: 1.15rem;
    }

    .offer-card {
        padding: 14px 18px;
    }

    .price,
    .arrow,
    .data {
        font-size: 1.5rem;
    }

    .bundle-type,
    .days {
        font-size: 0.85rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 24px;
    }

    .limited-offer {
        font-size: 1rem;
    }

    .activation-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.75rem;
    }

    .subscriber-count {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .subscriber-count span {
        font-size: 1.1rem;
    }

    .offer-card {
        padding: 12px 16px;
    }

    .price,
    .arrow,
    .data {
        font-size: 1.35rem;
    }

    .bundle-type,
    .days {
        font-size: 0.8rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
}

@media (max-width: 360px) {
    .price,
    .arrow,
    .data {
        font-size: 1.2rem;
    }

    .bundle-type,
    .days {
        font-size: 0.75rem;
    }
}
