* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #000000 25%, #690000 150%);
    min-height: 100vh;
    padding: 20px;
    color: #fff;
}

header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #f7ef8a, #c9be6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.bundle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}



.bundle-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    text-align: center;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f7ef8a;
    box-shadow: 0 15px 30px rgba(247, 239, 138, 0.3);
    z-index: 10;
}

.bundle-card.featured {
    border-color: #f7ef8a;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
}

.bundle-card.featured:hover {
    border-color: #f7ef8a;
    box-shadow: 0 20px 40px rgba(247, 239, 138, 0.3);
}

.badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #f7ef8a;
    color: #0a0a0a;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.bundle-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.bundle-name {
    font-size: 1.5rem;
    color: #f7ef8a;
    margin-bottom: 10px;
}

.bundle-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bundle-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.bundle-features li {
    padding: 8px 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    border-bottom: 1px solid #333333;
}

.bundle-features li:last-child {
    border-bottom: none;
}

.bundle-price {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.buy-button {
    background: linear-gradient(90deg, #f7ef8a, #c9be6a);
    color: #0a0a0a;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(247, 239, 138, 0.4);
}

.featured .buy-button {
    background: linear-gradient(90deg, #f7ef8a, #c9be6a);
}

.featured .buy-button:hover {
    box-shadow: 0 10px 20px rgba(247, 239, 138, 0.4);
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bundle-container {
        flex-direction: column;
        align-items: center;
    }
    
    .bundle-card {
        width: 100%;
        max-width: 350px;
    }
    
    header h1 {
        font-size: 2rem;
    }
}

