/* Main Page Sections Fixes */

/* ========================================
   CRYPTO CASINOS SECTION FIXES
   ======================================== */

#crypto-casinos {
    padding: 2rem 0;
}

#crypto-casinos .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.crypto-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.crypto-benefit-item {
    text-align: center;
    padding: 1rem;
}

.crypto-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.crypto-casinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.crypto-casino-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crypto-casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.crypto-casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.crypto-casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.crypto-casino-logo:hover {
    transform: scale(1.05);
}

.crypto-casino-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.crypto-casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-casino-rating .stars {
    color: #f59e0b;
    font-size: 1rem;
}

.crypto-casino-rating .rating-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.crypto-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.crypto-casino-details {
    padding: 1.5rem;
}

.crypto-bonus {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.crypto-currencies {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.crypto-coin {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.crypto-casino-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.crypto-casino-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.crypto-review-btn, .crypto-play-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.crypto-review-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.crypto-review-btn:hover {
    background: var(--primary-color);
    color: white;
}

.crypto-play-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: 2px solid transparent;
}

.crypto-play-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
}

.crypto-info-box {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   BONUSES SECTION FIXES
   ======================================== */

#bonuses {
    padding: 2rem 0;
}

#bonuses .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.bonuses-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.bonuses-table {
    width: 100%;
    min-width: 800px;
}

.bonuses-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 2fr;
    gap: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    font-weight: bold;
}

.bonuses-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.bonuses-table-row:hover {
    background: var(--bg-secondary);
}

/* ========================================
   MOBILE SECTION FIXES
   ======================================== */

#mobile {
    padding: 2rem 0;
}

#mobile .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.mobile-advantages-section {
    margin: 2rem 0;
}

.mobile-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros-list, .cons-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pros-item, .cons-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pros-icon {
    color: #10b981;
    font-weight: bold;
}

.cons-icon {
    color: #ef4444;
    font-weight: bold;
}

/* ========================================
   PAYMENTS SECTION FIXES
   ======================================== */

#payments {
    padding: 2rem 0;
}

#payments .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.payment-methods-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.payment-methods-table {
    width: 100%;
    min-width: 900px;
}

.payment-methods-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 1fr;
    gap: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    font-weight: bold;
}

.payment-methods-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.payment-methods-row:hover {
    background: var(--bg-secondary);
}

/* ========================================
   FEATURED CASINOS SECTION FIXES
   ======================================== */

#featured-casinos {
    padding: 2rem 0;
}

.footer-brands-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
    margin: 2rem 0;
}

.brands-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.brand-info {
    flex: 1;
    min-width: 0;
}

.brand-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.brand-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ========================================
   CUSTOMER REVIEWS SECTION FIXES
   ======================================== */

#customer-reviews {
    padding: 2rem 0;
}

#customer-reviews .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* ========================================
   MAIN PAGE CTA BUTTONS FIXES
   ======================================== */

/* Override bonus offer button styles */
.bonus-offer-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 180px !important;
}

.bonus-offer-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.bonus-offer-button:hover::before {
    left: 100% !important;
}

.bonus-offer-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
}

/* Override premium bonus button styles */
.premium-bonus-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    padding: 1.2rem 2.5rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 220px !important;
    animation: none !important;
}

.premium-bonus-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.premium-bonus-button:hover::before {
    left: 100% !important;
}

.premium-bonus-button:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
}

/* Mobile responsive for CTA buttons */
@media (max-width: 768px) {
    .bonus-offer-button {
        padding: 0.9rem 1.5rem !important;
        font-size: 1rem !important;
        min-width: 160px !important;
    }
    
    .premium-bonus-button {
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        min-width: 180px !important;
    }
}

@media (max-width: 480px) {
    .bonus-offer-button {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
        min-width: 140px !important;
    }
    
    .premium-bonus-button {
        padding: 0.9rem 1.5rem !important;
        font-size: 1rem !important;
        min-width: 160px !important;
    }
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

@media (max-width: 768px) {
    .crypto-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .crypto-casinos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mobile-pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonuses-table-header,
    .bonuses-table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    .payment-methods-header,
    .payment-methods-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    #crypto-casinos .section-title,
    #bonuses .section-title,
    #mobile .section-title,
    #payments .section-title,
    #customer-reviews .section-title,
    .brands-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .crypto-benefits {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .brand-link {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    #crypto-casinos .section-title,
    #bonuses .section-title,
    #mobile .section-title,
    #payments .section-title,
    #customer-reviews .section-title,
    .brands-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   STICKY FOOTER STYLES
   ======================================== */

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    color: #1a202c;
    padding: 1rem 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15), 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #dc2626;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.sticky-footer.show {
    transform: translateY(0);
}

.sticky-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-footer-brand {
    display: flex;
    align-items: center;
    flex: 1;
}

.sticky-footer-brand a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    background: white;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.sticky-footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sticky-footer-info {
    text-align: left;
}

.sticky-footer-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1a202c;
}

.sticky-footer-rating {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
}

.sticky-footer-offer {
    text-align: center;
    flex: 1;
}

.sticky-footer-bonus {
    font-size: 1.3rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.sticky-footer-terms {
    font-size: 0.8rem;
    color: #64748b;
}

.sticky-footer-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
    min-width: 140px !important;
}

.sticky-footer-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
}

.sticky-footer-close {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    border: 1px solid rgba(100, 116, 139, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sticky-footer-close:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.3);
    transform: scale(1.1);
}

/* Mobile responsive for sticky footer */
@media (max-width: 768px) {
    .sticky-footer-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .sticky-footer-brand {
        width: 100%;
        justify-content: center;
    }
    
    .sticky-footer-offer {
        width: 100%;
    }
    
    .sticky-footer-bonus {
        font-size: 1.1rem;
    }
    
    .sticky-footer-button {
        padding: 0.9rem 1.5rem !important;
        font-size: 1rem !important;
        min-width: 120px !important;
    }
    
    .sticky-footer-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .sticky-footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .sticky-footer-title {
        font-size: 1rem;
    }
    
    .sticky-footer-bonus {
        font-size: 1rem;
    }
    
    .sticky-footer-button {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
        min-width: 100px !important;
    }
} 