/* Promotions Page Styles */

/* Promotions Hero */
.promotions-hero {
    background: linear-gradient(135deg, #9c27b0 0%, #3f51b5 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><circle cx="40" cy="40" r="20" stroke="%23ffffff" stroke-width="1" fill="none" opacity="0.2"/><circle cx="40" cy="40" r="10" stroke="%23ffffff" stroke-width="1" fill="none" opacity="0.2"/></svg>'),
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M15,30 L30,15 L45,30 L30,45 Z" stroke="%23ffffff" stroke-width="1" fill="none" opacity="0.2"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.promotions-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(156, 39, 176, 0) 0%, var(--dark) 100%);
    z-index: 1;
}

.promotions-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.promotions-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.promotions-hero-content h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotions-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 600px;
}

/* Featured Offers */
.featured-offers {
    padding: 80px 0;
    background-color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }
.offer-card:nth-child(5) { animation-delay: 0.5s; }

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1;
}

.offer-card.welcome::before {
    background: linear-gradient(45deg, #ff9800, #ff5722);
}

.offer-card.cashback::before {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.offer-card.reload::before {
    background: linear-gradient(45deg, #2196f3, #03a9f4);
}

.offer-card.referral::before {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.offer-card.vip::before {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-card.cashback .offer-badge {
    background-color: #4caf50;
}

.offer-card.reload .offer-badge {
    background-color: #2196f3;
}

.offer-card.referral .offer-badge {
    background-color: #9c27b0;
}

.offer-card.vip .offer-badge {
    background-color: #ffc107;
    color: #333;
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offer-card.cashback .offer-icon {
    background: linear-gradient(135deg, #388e3c, #4caf50);
}

.offer-card.reload .offer-icon {
    background: linear-gradient(135deg, #1976d2, #2196f3);
}

.offer-card.referral .offer-icon {
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
}

.offer-card.vip .offer-icon {
    background: linear-gradient(135deg, #ffa000, #ffc107);
}

.offer-icon i {
    font-size: 30px;
    color: #fff;
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.offer-highlight {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.offer-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.offer-details {
    margin-bottom: 25px;
    padding: 0 10px;
}

.offer-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
    color: var(--text-secondary);
}

.offer-details li i {
    color: var(--secondary);
    font-size: 16px;
}

.btn-claim {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.offer-card.cashback .btn-claim {
    background: linear-gradient(45deg, #4caf50, #388e3c);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.offer-card.reload .btn-claim {
    background: linear-gradient(45deg, #2196f3, #1976d2);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.offer-card.referral .btn-claim {
    background: linear-gradient(45deg, #9c27b0, #7b1fa2);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.offer-card.vip .btn-claim {
    background: linear-gradient(45deg, #ffc107, #ffa000);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(156, 39, 176, 0.6);
}

.offer-card.cashback .btn-claim:hover {
    box-shadow: 0 7px 20px rgba(76, 175, 80, 0.6);
}

.offer-card.reload .btn-claim:hover {
    box-shadow: 0 7px 20px rgba(33, 150, 243, 0.6);
}

.offer-card.referral .btn-claim:hover {
    box-shadow: 0 7px 20px rgba(156, 39, 176, 0.6);
}

.offer-card.vip .btn-claim:hover {
    box-shadow: 0 7px 20px rgba(255, 193, 7, 0.6);
}

/* Game Promotions */
.game-promotions {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.game-promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-promo-card {
    height: 300px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
    animation: fadeInUp 0.6s ease both;
}

.game-promo-card:nth-child(1) { animation-delay: 0.1s; }
.game-promo-card:nth-child(2) { animation-delay: 0.2s; }
.game-promo-card:nth-child(3) { animation-delay: 0.3s; }

.game-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Game Card Backgrounds */
.game-promo-card.bigtuna {
    background: linear-gradient(135deg, #0288d1, #03a9f4);
    background-image: url('images/2.jpg');
}

.game-promo-card.lady-licky {
    background: linear-gradient(135deg, #d32f2f, #f44336);
    background-image: url('images/28.webp');
}

.game-promo-card.penalty {
    background: linear-gradient(135deg, #388e3c, #4caf50);
    background-image: url('images/6.jpg');
}

.game-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.game-promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    text-align: center;
}

.game-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.game-icon i {
    font-size: 24px;
    color: #fff;
}

.game-promo-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.game-promo-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-join-promo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-join-promo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Promotion Terms */
.promotion-terms {
    padding: 60px 0;
    background-color: var(--dark);
}

.terms-box {
    background-color: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.2s;
}

.terms-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.terms-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.terms-content {
    color: var(--text-secondary);
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-terms {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-terms:hover {
    color: var(--accent);
}

.promotions-cta {
    text-align: center;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.4s;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .game-promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .promotions-hero-content h1 {
        font-size: 36px;
    }

    .promotions-hero-content h2 {
        font-size: 24px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 576px) {
    .promotions-hero-content h1 {
        font-size: 32px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .game-promo-cards {
        grid-template-columns: 1fr;
    }
} 