:root {
    --dark-bg: #1a1e23;
    --content-bg: #252a32;
    --accent-blue: #3a9efb;
    --accent-gold: #ffb400;
    --text-light: #e0e0e0;
    --text-lighter: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-blue);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.game-selector {
    background-color: var(--content-bg);
    border: 1px solid #3a3f47;
    border-radius: 4px;
    padding: 8px 15px;
    color: var(--text-light);
}

.page-title {
    font-size: 32px;
    color: var(--accent-gold);
    margin: 30px 0 20px;
    text-align: center;
}

.currency-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.package-card {
    background-color: var(--content-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a3f47;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--accent-blue);
}

.package-header {
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #3a3f47;
}

.package-name {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color: white;
}

.package-image {
    height: 100px;
    background-color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-image img {
    max-width: 80px;
    max-height: 80px;
}

.package-details {
    padding: 20px;
}

.package-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-align: center;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #ff8a00, #ffb400);
    color: #1a1e23;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.buy-button:hover {
    background: linear-gradient(to right, #ffb400, #ffd700);
    box-shadow: 0 0 15px rgba(255, 180, 0, 0.5);
}

.best-value {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

footer {
    background-color: #1a1e23;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #3a3f47;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .game-selector {
        margin-top: 15px;
    }
    
    .currency-packages {
        grid-template-columns: 1fr;
    }
}