/* Promotions & Bonuses Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/promo-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.animated-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.animated-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Featured Promotion */
.featured-promotion {
    margin-bottom: 40px;
}

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.promotion-card.featured {
    border: 1px solid var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.promotion-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    z-index: 1;
}

.promotion-badge.crypto-badge {
    background: #f7931a; /* Bitcoin color */
}

.promotion-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.promotion-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.promotion-subtitle {
    font-size: 0.9rem;
    color: #ccc;
}

.promotion-content {
    padding: 20px;
}

.promotion-description {
    margin-bottom: 20px;
}

.promotion-details {
    margin-bottom: 20px;
}

.bonus-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 5px;
}

.bonus-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.bonus-value {
    color: var(--gold);
}

.bonus-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.term-item {
    display: flex;
    flex-direction: column;
}

.term-label {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 5px;
}

.term-label i {
    margin-right: 5px;
}

.term-value {
    font-weight: bold;
}

.promotion-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Current Promotions */
.current-promotions {
    margin-bottom: 40px;
    position: relative;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.promotion-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

/* Bonus Calendar */
.bonus-calendar {
    margin-bottom: 40px;
    position: relative;
}

.calendar-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.calendar-day {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.calendar-day:hover {
    transform: translateY(-5px);
}

.day-name {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.day-bonus {
    padding: 15px;
    text-align: center;
}

.day-bonus i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.day-bonus h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.day-bonus p {
    font-size: 0.8rem;
    color: #ccc;
}

/* Promo Code Section */
.promo-code-section {
    margin-bottom: 40px;
}

.promo-code-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.promo-code-form {
    max-width: 600px;
    margin: 0 auto;
}

.promo-code-section .form-group {
    display: flex;
    gap: 10px;
}

.promo-code-section .form-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    color: #fff;
}

.promo-code-info {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Game Providers */
.game-providers {
    margin-bottom: 40px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-align: center;
}

.provider-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.provider-card img {
    max-width: 100%;
    max-height: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.provider-card:hover img {
    transform: scale(1.05);
}

.provider-name {
    font-size: 0.9rem;
    color: #fff;
    margin-top: 10px;
    font-weight: 500;
}

/* Bonus Terms Section */
.bonus-terms-section {
    margin-bottom: 40px;
}

.terms-container {
    margin-top: 30px;
}

.term-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.term-number {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.term-content {
    flex: 1;
}

.term-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.terms-footer {
    text-align: center;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/promo-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/promo-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .animated-title {
        font-size: 2.5rem;
    }

    .bonus-breakdown {
        grid-template-columns: 1fr;
    }

    .bonus-terms {
        grid-template-columns: 1fr 1fr;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .calendar-container {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
    }

    .term-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .term-number {
        margin-bottom: 10px;
    }
}
