* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

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

header {
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
}

.option {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 3px solid transparent;
}

.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #3a7bd5;
}

.option-header {
    padding: 25px;
    color: white;
}

.bags-header {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
}

.gadgets-header {
    background: linear-gradient(to right, #4776E6, #8E54E9);
}

.option-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.option h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.option-content {
    padding: 25px;
}

.option p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #3a7bd5;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2a5da3;
    transform: scale(1.05);
}

.bags-btn {
    background: #ff7e5f;
}

.bags-btn:hover {
    background: #e06b4c;
}

.gadgets-btn {
    background: #4776E6;
}

.gadgets-btn:hover {
    background: #3560c9;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.countdown {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 5px;
    font-weight: 600;
    color: #3a7bd5;
}

.auto-redirect {
    margin-top: 15px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }
    
    .option {
        width: 100%;
        max-width: 400px;
    }
    
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        border-radius: 15px;
    }
    
    header {
        padding: 25px 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .option {
        min-width: 100%;
    }
}