/* Promotions Page Specific Styles */

/* Promotions Hero */
.promotions-hero {
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promotions-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.promotions-hero h2 {
    font-size: 22px;
    color: #f9d342;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* New Player Welcome Package */
.welcome-package {
    padding: 60px 0;
    background: #171727;
    border-radius: 15px;
    margin-bottom: 50px;
}

.welcome-package h2 {
    color: #f9d342;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #f9d342;
}

.package-header {
    background: rgba(249, 211, 66, 0.1);
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
    color: #f9d342;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.bonus-code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

.package-content {
    padding: 25px;
    text-align: center;
}

.package-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.package-content ul li {
    color: #cccccc;
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.package-content ul li:last-child {
    border-bottom: none;
}

.package-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: #f9d342;
}

.btn-claim {
    background: #f9d342;
    color: #1a1a2e;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-claim:hover {
    background: #ffdc65;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Regular Promotions */
.regular-promotions {
    padding: 60px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9));
    border-radius: 15px;
    margin-bottom: 50px;
    position: relative;
}

.regular-promotions h2 {
    color: #f9d342;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.promo-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #f9d342;
}

.promo-image {
    height: 160px;
    background-color: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.1), rgba(26, 26, 46, 0.8));
}

.promo-content {
    padding: 25px;
    text-align: center;
}

.promo-content h3 {
    color: #f9d342;
    font-size: 22px;
    margin-bottom: 15px;
}

.promo-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.promo-details span {
    display: block;
    color: #cccccc;
    font-size: 14px;
    padding: 5px 0;
}

/* VIP Loyalty Program */
.vip-program {
    padding: 60px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('../images/vip-bg.jpg') no-repeat center center/cover;
    border-radius: 15px;
    margin-bottom: 50px;
}

.vip-program h2 {
    color: #f9d342;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.vip-content {
    margin-top: 40px;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tier {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #f9d342;
}

.tier h3 {
    color: #f9d342;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tier h3:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: linear-gradient(to right, transparent, #f9d342, transparent);
}

.tier ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.tier ul li {
    color: #cccccc;
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.tier ul li:last-child {
    border-bottom: none;
}

.tier ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: #f9d342;
}

.vip-apply {
    text-align: center;
    margin-top: 20px;
}

.btn-vip {
    background: #f9d342;
    color: #1a1a2e;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-vip:hover {
    background: #ffdc65;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Special Events */
.special-events {
    padding: 60px 0;
    background: #171727;
    border-radius: 15px;
    margin-bottom: 50px;
}

.special-events h2 {
    color: #f9d342;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #f9d342;
}

.event-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.event-content h3 {
    color: #f9d342;
    font-size: 22px;
    margin-bottom: 15px;
}

.event-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

/* How to Claim Section */
.how-to-claim {
    padding: 60px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9));
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.how-to-claim h2 {
    color: #f9d342;
    font-size: 32px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.claim-step {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.claim-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #f9d342;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #f9d342;
    color: #1a1a2e;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.claim-step p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: #f9d342;
    color: #1a1a2e;
}

.cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .promotions-hero {
        padding: 60px 0;
    }
    
    .promotions-hero h1 {
        font-size: 36px;
    }
    
    .welcome-package h2,
    .regular-promotions h2,
    .vip-program h2,
    .special-events h2,
    .how-to-claim h2,
    .cta-section h2 {
        font-size: 28px;
    }
    
    .package-header h3,
    .tier h3 {
        font-size: 20px;
    }
    
    .promo-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .promotions-hero {
        padding: 40px 0;
    }
    
    .promotions-hero h1 {
        font-size: 30px;
    }
    
    .promotions-hero h2 {
        font-size: 18px;
    }
    
    .package-details,
    .promotions-grid,
    .vip-tiers,
    .events-grid,
    .claim-steps {
        grid-template-columns: 1fr;
    }
    
    .package-content ul {
        max-width: 300px;
        margin: 25px auto;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .promotions-hero h1 {
        font-size: 26px;
    }
    
    .promotions-hero h2 {
        font-size: 16px;
    }
    
    .welcome-package h2,
    .regular-promotions h2,
    .vip-program h2,
    .special-events h2,
    .how-to-claim h2,
    .cta-section h2 {
        font-size: 24px;
    }
    
    .tier,
    .claim-step {
        padding: 20px;
    }
    
    .package-card,
    .promo-card {
        margin: 0 15px;
    }
} 