.page-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.promo-hero {
    background: linear-gradient(135deg, #ff6b35 0%, var(--accent-primary) 50%, var(--third-color) 100%);
}

.promo-highlight {
    margin-top: 30px;
}

.highlight-card {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--accent-primary) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highlight-badge {
    display: inline-block;
    background: #ff6b35;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.highlight-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.highlight-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.highlight-card > p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.highlight-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.highlight-card ul li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.promo-code {
    background: rgba(0,0,0,0.4);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.promo-code strong {
    color: #ffd700;
    font-size: 1.3rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.promo-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.promo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.promo-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.promo-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-terms {
    background: var(--third-color);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.vip-section {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 50px;
    margin-top: 30px;
    text-align: center;
}

.vip-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.vip-section > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.vip-tier {
    background: var(--third-color);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.vip-tier:hover {
    transform: scale(1.05);
}

.vip-tier.featured {
    background: linear-gradient(135deg, var(--accent-primary), #1a1a2e);
    border: 2px solid #ffd700;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tier-name.bronze { background: linear-gradient(135deg, #cd7f32, #8b4513); }
.tier-name.silver { background: linear-gradient(135deg, #c0c0c0, #808080); }
.tier-name.gold { background: linear-gradient(135deg, #ffd700, #daa520); color: #000; }
.tier-name.diamond { background: linear-gradient(135deg, #b9f2ff, #00bfff); color: #000; }

.vip-tier ul {
    list-style: none;
    text-align: left;
}

.vip-tier ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vip-tier ul li:last-child {
    border-bottom: none;
}

.bonus-table-section {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.bonus-table-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--third-color);
    border-radius: 10px;
    overflow: hidden;
}

.info-table thead {
    background: var(--accent-primary);
}

.info-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
}

.info-table tbody tr:hover {
    background: rgba(56, 55, 137, 0.2);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .highlight-card {
        padding: 30px 20px;
    }
    
    .highlight-amount {
        font-size: 2rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-section {
        padding: 30px 20px;
    }
}

