.banner img{
    height: 200px;
}

/* Promotions Page Styles */
.page-title {
    text-align: center;
    margin: 30px 0;
    color: #333;
}

.page-title h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #27ae60;
}

.page-title p {
    font-size: 18px;
    color: #666;
}

.promo-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.promo-card {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.green-card {
    background: linear-gradient(to bottom, #0a8a3a, #075c27);
}

.purple-card {
    background: linear-gradient(to bottom, #4a0a8a, #2c075c);
}

.promo-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e6007e;
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    padding: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.team-logos {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.team-logo {
    width: 50px;
    height: 50px;
}

.promo-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-content h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.highlight {
    color: #ffde00;
}

.highlight-blue {
    color: #00e6ff;
}

.promo-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.read-more {
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yellow {
    background-color: #ffde00;
    color: #000;
}

.cyan {
    background-color: #00e6ff;
    color: #000;
}

.badge-container {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
}

.badge-circle {
    background-color: #ff6600;
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
}

/* Colorful border effect */
/*.promo-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 8px;*/
/*    background: linear-gradient(to right,*/
/*    #ff00ff, #00ffff, #ffde00, #ff00ff, #00ffff, #ffde00,*/
/*    #ff00ff, #00ffff, #ffde00, #ff00ff);*/
/*    background-size: 200% 100%;*/
/*    animation: rainbow 5s linear infinite;*/
/*}*/

@keyframes rainbow {
    0% {background-position: 0% 50%;}
    100% {background-position: 200% 50%;}
}

/* More Promos Section */
.more-promos {
    margin: 50px 0;
}

.more-promos h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #27ae60;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-5px);
}

.promo-item img {
    width: 100%;
    height: 180px;
    /*object-fit: cover;*/
}

.promo-item h3 {
    padding: 15px 15px 5px;
    font-size: 20px;
    color: #27ae60;
}

.promo-item p {
    padding: 0 15px 15px;
    color: #666;
}

.promo-link {
    display: block;
    text-align: center;
    background-color: #27ae60;
    color: white;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.promo-link:hover {
    background-color: #218c53;
}

/* FAQ Section */
.promo-faq {
    margin: 50px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
}

.promo-faq h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #27ae60;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #27ae60;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-method {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .promo-container, .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-container, .promo-grid {
        grid-template-columns: 1fr;
    }

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

    .promo-content h2 {
        font-size: 20px;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .page-title p {
        font-size: 16px;
    }
}