/**
 * FCB88 Theme Styles
 * 
 * @package FCB88_Theme
 */

/* Reset and Base Styles */
*,
*::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: #333;
    background-color: #f5f5f5;
}

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

a:hover {
    color: #b8941d;
}

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

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

/* 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;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #d4af37;
    color: #fff;
    padding: 8px 16px;
    z-index: 100000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

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

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

.site-branding {
    flex: 0 0 auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #d4af37;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

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

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

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

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

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

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

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941d 100%);
    color: #1a1a2e;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8941d 0%, #9a7b18 100%);
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

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

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-register {
    background: #d4af37;
    color: #1a1a2e;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-register:hover {
    background: #b8941d;
    color: #1a1a2e;
}

.btn-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8941d 100%);
    color: #1a1a2e;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #b8941d 0%, #9a7b18 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Site Content */
.site-content {
    min-height: calc(100vh - 400px);
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.brand-content {
    text-align: center;
}

.brand-image {
    text-align: center;
    margin-bottom: 30px;
}

.brand-image img {
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.brand-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages-section {
    background: #f8f9fa;
}

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

.advantage-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    background: #fff;
}

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

.product-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.product-card p {
    color: #555;
    line-height: 1.7;
}

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

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

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

/* SEO Content Section */
.seo-content-section {
    background: #fff;
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.main-content h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    margin-top: 40px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 1.4rem;
    color: #16213e;
    margin-bottom: 15px;
    margin-top: 30px;
}

.main-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    margin-top: 20px;
}

.main-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.main-content ul,
.main-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.main-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

/* Steps List */
.steps-list,
.guide-steps {
    margin: 30px 0;
}

.step-item,
.guide-step {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.step-item h4,
.guide-step h3 {
    margin-top: 0;
    color: #1a1a2e;
}

/* Troubleshooting */
.troubleshooting {
    margin: 30px 0;
}

.troubleshooting h3 {
    margin-top: 25px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.widget h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
}

.widget p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.quick-contact {
    list-style: none;
    padding: 0;
}

.quick-contact li {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.quick-contact li:last-child {
    border-bottom: none;
}

.quick-contact strong {
    color: #1a1a2e;
    margin-bottom: 5px;
}

.quick-contact span {
    color: #666;
    font-size: 0.95rem;
}

/* Promotions */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promotion-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.promotion-card.featured {
    grid-column: 1 / -1;
}

.promotion-card.vip {
    border: 2px solid #d4af37;
}

.promotion-card h3 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 20px 30px;
    font-size: 1.4rem;
}

.promotion-card.vip h3 {
    background: linear-gradient(135deg, #d4af37 0%, #b8941d 100%);
    color: #1a1a2e;
}

.promotion-content {
    padding: 30px;
}

.promotion-highlight {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

.promotion-terms,
.vip-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.promotion-terms li,
.vip-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.promotion-terms li::before,
.vip-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Terms Section */
.terms-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 30px 0;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 25px;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-list li {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.features-list strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 5px;
}

/* Withdrawal Guide */
.withdrawal-guide {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 30px 0;
}

.withdrawal-guide ol {
    margin-bottom: 30px;
}

.withdrawal-guide li {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Tips Section */
.tips-section {
    margin: 30px 0;
}

.tip-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.tip-item h4 {
    margin-top: 0;
    color: #d4af37;
}

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

.game-item,
.card-game-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-top: 3px solid #d4af37;
}

.game-item h4,
.card-game-item h4 {
    margin-top: 0;
    color: #1a1a2e;
    font-size: 1.2rem;
}

/* Slot Types */
.slot-types {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.slot-types li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.slot-types strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 8px;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-item {
    text-align: center;
    padding: 30px;
}

.reason-item h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* Contact Methods */
.contact-methods {
    margin: 40px 0;
}

.contact-method {
    background: #fff;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.contact-method h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Support Hours */
.support-hours {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

/* Common Issues */
.common-issues {
    margin: 30px 0;
}

.issue-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #d4af37;
}

.issue-item h4 {
    margin-top: 0;
    color: #1a1a2e;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Entry Styles */
.entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.entry-title {
    font-size: 2.2rem;
    color: #1a1a2e;
}

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

.entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget {
    padding: 20px 0;
}

.footer-title {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

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

.footer-menu a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #d4af37;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.icon {
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 3px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 30px 0;
}

.footer-bottom-inner {
    text-align: center;
}

.copyright {
    margin-bottom: 20px;
}

.copyright p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.copyright a {
    color: #d4af37;
}

.footer-seo-text {
    max-width: 900px;
    margin: 0 auto;
}

.footer-seo-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main-navigation {
        order: 1;
        width: auto;
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        order: 1;
        margin-right: auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title,
    .page-title {
        font-size: 1.8rem;
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .promotion-card.featured {
        grid-column: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 60px 0;
    }

    .advantage-card,
    .product-card,
    .promotion-card,
    .step-item,
    .guide-step,
    .contact-method,
    .issue-item,
    .tip-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title,
    .page-title {
        font-size: 1.5rem;
    }

    .site-title {
        font-size: 1.4rem;
    }

    .btn-login,
    .btn-register {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}
