/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Montserrat', sans-serif;
    background-color: #070a12;
    background-image: 
        radial-gradient(circle at 50% 20%, #101c2e 0%, #070a12 70%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

.bundle-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Header Styles */
.header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.highlight-bundle {
    background: linear-gradient(180deg, #fff275 0%, #ffa800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 168, 0, 0.65));
}

.subtitle {
    color: #8fa0b5;
    font-size: 1.15rem;
    font-weight: 500;
}

/* 24H Countdown Timer Banner */
.countdown-banner {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 170, 0, 0.08);
    border: 1px solid rgba(255, 170, 0, 0.35);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.15);
    backdrop-filter: blur(10px);
}

.timer-icon {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite alternate;
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffaa00;
    letter-spacing: 1px;
}

.timer-display {
    font-family: 'Montserrat', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-display .unit {
    font-size: 0.8rem;
    color: #ffc400;
    margin-right: 2px;
}

/* Bundle Grid Wrapper */
.bundle-grid-wrapper {
    width: 100%;
}

.bundle-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
    width: 100%;
}

@media (max-width: 768px) {
    .bundle-grid {
        grid-template-columns: 1fr;
    }
}

/* Left 2x2 Grid */
.small-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Item Card Base Styles */
.item-card {
    background: rgba(19, 27, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 204, 0, 0.15);
}

.card-image-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.item-card:hover .product-img {
    transform: scale(1.08);
}

.item-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Featured Gems Card (Right Side) */
.featured-gems-card {
    background: linear-gradient(180deg, rgba(8, 38, 43, 0.9) 0%, rgba(13, 50, 56, 0.9) 100%);
    border: 1px solid rgba(0, 230, 180, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(0, 230, 180, 0.05);
}

.featured-gems-card:hover {
    border-color: rgba(0, 255, 200, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 230, 180, 0.25);
}

.gems-image-wrapper {
    height: 200px;
}

.gems-img {
    max-height: 180px;
}

.gems-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.gems-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gems-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #00e6b4;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(0, 230, 180, 0.5);
}

/* Pricing Footer */
.pricing-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.original-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5c6c80;
    text-decoration: line-through;
}

.discount-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffb700;
    text-shadow: 0 0 30px rgba(255, 183, 0, 0.6);
}

/* Claim Button */
.claim-btn {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #ffe14d 0%, #ffaa00 100%);
    color: #0a0e14;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 50px;
    padding: 1.1rem 4.5rem;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.55), inset 0 2px 3px rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.claim-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(180deg, #fff080 0%, #ffb700 100%);
    box-shadow: 0 0 45px rgba(255, 183, 0, 0.8), inset 0 2px 3px rgba(255, 255, 255, 0.8);
}

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

.disclaimer {
    color: #6a7a90;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 7, 13, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0f1624;
    border: 1px solid rgba(255, 170, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 170, 0, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #8fa0b5;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffaa00;
    margin-bottom: 0.6rem;
}

.modal-desc {
    color: #a0b0c5;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1.2rem;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #8fa0b5;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.2);
}

.platform-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.platform-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #8fa0b5;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.platform-btn.active {
    background: rgba(255, 170, 0, 0.15);
    border-color: #ffaa00;
    color: #ffaa00;
}

.claim-submit-btn {
    display: block;
    text-decoration: none;
    width: 100%;
    background: linear-gradient(180deg, #ffe14d 0%, #ffaa00 100%);
    color: #0a0e14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
    transition: all 0.2s;
    text-align: center;
}

.claim-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.6);
}

/* Progress bar step */
.hidden {
    display: none !important;
}

.progress-bar-container {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffaa00 0%, #00e6b4 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-status {
    color: #8fa0b5;
    font-size: 0.9rem;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.success-text {
    color: #00e6b4;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 1; }
}
