/* FCB88 Theme Styles */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffd700;
    position: relative;
    transition: background-color 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #ffd700;
    transition: transform 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    text-transform: capitalize;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ffd700;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-login {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-login:hover {
    background-color: #ffd700;
    color: #1a1a2e;
}

.btn-register {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 15px 35px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 15px 35px;
}

.btn-secondary:hover {
    background-color: #ffd700;
    color: #1a1a2e;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Main Content */
.site-main {
    min-height: 500px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.page-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-content p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
}

/* Brand Section */
.brand-section {
    background-color: #111;
}

/* Advantages Section */
.advantages-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

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

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.advantage-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-transform: capitalize;
}

.advantage-item p {
    color: #aaa;
    line-height: 1.8;
}

/* Promotions Section */
.promotions-section {
    background-color: #0a0a0a;
}

.promotion-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.promotion-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-row:last-child {
    border-bottom: none;
}

.promotion-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    font-weight: 700;
}

.promotion-note {
    text-align: center;
    color: #ffd700;
    font-style: italic;
    margin-top: 20px;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.game-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.game-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.game-item p {
    color: #aaa;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cta-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* FAQ Section */
.faq-section {
    background-color: #111;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: capitalize;
}

.faq-item p {
    color: #aaa;
    line-height: 1.8;
}

/* Guide Sections */
.steps-list,
.withdraw-steps,
.process-steps {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.step-item,
.process-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.step-item h3,
.process-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.step-item p,
.process-item p {
    color: #aaa;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Tips Grid */
.tips-grid,
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tip-item,
.channel-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.tip-item h3,
.channel-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.tip-item p,
.channel-item p {
    color: #aaa;
    margin-bottom: 15px;
}

.channel-item ul {
    list-style: disc;
    padding-left: 20px;
}

.channel-item li {
    color: #aaa;
    margin-bottom: 5px;
}

/* Support Categories */
.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.category-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
}

.category-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.category-item ul {
    list-style: disc;
    padding-left: 20px;
}

.category-item li {
    color: #aaa;
    margin-bottom: 8px;
}

/* Promo Cards */
.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.promo-card-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-card-header h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
}

.promo-badge {
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-card-body {
    padding: 25px;
}

.promo-value {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-desc {
    color: #aaa;
    margin-bottom: 15px;
}

.promo-conditions {
    list-style: disc;
    padding-left: 20px;
}

.promo-conditions li {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.promo-card-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tables */
.cashback-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
}

.table-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    font-weight: 700;
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.table-row:last-child {
    border-bottom: none;
}

/* VIP Levels */
.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.vip-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.vip-item:hover {
    border-color: #ffd700;
}

.vip-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.vip-item ul {
    text-align: left;
}

.vip-item li {
    color: #aaa;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.event-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid #ffd700;
}

.event-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.event-item p {
    color: #aaa;
}

/* Terms & Commitments */
.terms-list,
.commitment-list,
.security-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.term-item,
.commitment-item,
.security-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
}

.term-item h3,
.commitment-item h3,
.security-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.term-item p,
.commitment-item p,
.security-item p {
    color: #aaa;
    line-height: 1.8;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.method-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.method-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.method-item p {
    color: #aaa;
    margin-bottom: 15px;
}

.method-item ol {
    list-style: decimal;
    padding-left: 20px;
}

.method-item li {
    color: #aaa;
    margin-bottom: 8px;
}

/* Guide Tips & Notes */
.guide-tips,
.deposit-notes,
.withdraw-notes {
    background: rgba(255, 215, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.guide-tips h3,
.deposit-notes h3,
.withdraw-notes h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.guide-tips ul,
.deposit-notes ul,
.withdraw-notes ul {
    list-style: disc;
    padding-left: 20px;
}

.guide-tips li,
.deposit-notes li,
.withdraw-notes li {
    color: #aaa;
    margin-bottom: 8px;
}

/* Providers */
.providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.provider-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.provider-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.provider-item p {
    color: #aaa;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-description {
    color: #888;
    line-height: 1.8;
}

.footer-nav-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

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

.footer-menu a {
    color: #888;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffd700;
}

.footer-contact p {
    color: #888;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: #666;
    margin-bottom: 15px;
}

.footer-seo-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-primary-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        padding: 20px;
    }
    
    .menu-primary-container.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .advantages-grid,
    .games-grid,
    .tips-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Image Styles */
.hero-image,
.brand-image,
.advantages-image,
.promotions-image,
.games-image,
.section-image {
    margin: 20px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img,
.brand-image img,
.advantages-image img,
.promotions-image img,
.games-image img,
.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}
