
/* CO168 Casino Design System - Optimized CSS */

/* CSS Variables */
:root {
   --betflikco-purple: #56008b;
   --betflikco-pink: #d3017c;
   --betflikco-yellow: #fff400;
   --betflikco-orange: #ed7700;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --bg-dark: #0a0014;
    --bg-card: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #1a0033 0%, #000000 100%);
    --gradient-secondary: linear-gradient(45deg, #56008b, #d3017c);
    --gradient-accent: linear-gradient(90deg, #d3017c, #ed7700);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--co168-yellow);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Navigation - Enhanced */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(47 0 82 / 95%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--co168-yellow);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--co168-yellow);
}

/* Hero Section - Enhanced */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1470813740244-df37b8c1e0cb?w=1920&h=1080&fit=crop') center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(86, 0, 139, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--co168-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--co168-orange);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gradient-accent);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(237, 119, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(237, 119, 0, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Features Section */
.features {
    background: rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--co168-yellow);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Promotions Section */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.promo-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

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

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.promo-card h3 {
    color: var(--co168-pink);
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.promo-card p {
    color: var(--text-gray);
    margin: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.6;
}

.promo-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 12px 20px;
    background: var(--gradient-secondary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(86, 0, 139, 0.4);
}

/* Games Section */
.games {
    background: rgba(0, 0, 0, 0.2);
}

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

.game-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-card h3 {
    color: var(--co168-yellow);
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.game-card p {
    color: var(--text-gray);
    margin: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.6;
}

.game-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 12px 20px;
    background: var(--gradient-accent);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 119, 0, 0.4);
}

/* SEO Content */
.seo-content {
    background: rgba(0, 0, 0, 0.4);
}

.seo-content article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-content h2 {
    color: var(--co168-yellow);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-content h3 {
    color: var(--co168-pink);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.seo-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.seo-content strong {
    color: var(--co168-yellow);
}

/* Footer */
.footer {
    background: rgb(47 0 82 / 95%);
    padding: 3rem 0 1rem 0;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--co168-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--co168-yellow);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgb(47 0 82 / 95%);
        flex-direction: column;
        padding: 2rem 0;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .features-grid,
    .promotions-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .promo-card,
    .game-card {
        margin-bottom: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .promo-card,
    .game-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Lazy Loading Animation */
.lazy-loading {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-loading.loaded {
    opacity: 1;
}

/* Preload Critical Images */
.hero {
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1e0cb?w=1920&h=1080&fit=crop');
}

/* Optimize Animations for Mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================= */
/* PAGE-SPECIFIC STYLES */
/* ========================================= */

/* Slots Page Styles */
.slots-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1920&h=600&fit=crop') center/cover;
    padding: 100px 0 50px 0;
    text-align: center;
}

.game-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

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

.game-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    color: var(--betflikco-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.game-provider {
    color: var(--betflikco-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rtp {
    color: var(--betflikco-yellow);
}

.max-win {
    color: var(--betflikco-orange);
}

.play-button {
    width: 100%;
    padding: 10px;
    background: var(--gradient-accent);
    color: var(--text-white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 119, 0, 0.4);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--text-white);
    border: 2px solid var(--betflikco-purple);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--betflikco-purple);
    color: var(--text-white);
}

/* Promotions Page Styles */
.promos-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=600&fit=crop') center/cover;
    padding: 100px 0 50px 0;
    text-align: center;
}

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

.promo-highlight {
    background: linear-gradient(135deg, var(--betflikco-purple), var(--betflikco-pink));
    border-radius: var(--border-radius);
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 3s ease-in-out infinite;
}

.promo-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--betflikco-yellow);
}

.promo-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--betflikco-yellow);
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.promo-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.promo-terms {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 3rem 0;
}

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

.term-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--betflikco-orange);
}

.term-item h4 {
    color: var(--betflikco-yellow);
    margin-bottom: 1rem;
}

.term-item ul {
    color: var(--text-gray);
    line-height: 1.6;
}

.term-item ul li {
    margin-bottom: 0.5rem;
}

.vip-section {
    background: linear-gradient(135deg, var(--betflikco-orange), var(--betflikco-pink));
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

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

/* Live Casino Page Styles */
.casino-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1571169002082-53bbe43e6c19?w=1920&h=600&fit=crop') center/cover;
    padding: 100px 0 50px 0;
    text-align: center;
}

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

.casino-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
}

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

.casino-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--betflikco-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.casino-info {
    padding: 1.5rem;
}

.casino-title {
    color: var(--betflikco-yellow);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.casino-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.casino-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tables {
    color: var(--betflikco-pink);
}

.min-bet {
    color: var(--betflikco-orange);
}

.stats-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--betflikco-yellow);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
}

/* Sports Page Styles */
.sports-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=1920&h=600&fit=crop') center/cover;
    padding: 100px 0 50px 0;
    text-align: center;
}

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

.sport-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

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

.sport-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sport-info {
    padding: 1.5rem;
}

.sport-title {
    color: var(--betflikco-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sport-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.features-list li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--betflikco-yellow);
    font-weight: bold;
}

.odds-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 3rem 0;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.odds-table th,
.odds-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.odds-table th {
    background: var(--betflikco-purple);
    color: white;
    font-weight: 600;
}

.odds-table td {
    color: var(--text-gray);
}

.odds-value {
    color: var(--betflikco-orange);
    font-weight: bold;
}

/* Fishing Page Styles */
.fishing-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&h=600&fit=crop') center/cover;
    padding: 100px 0 50px 0;
    text-align: center;
}

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

.feature-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--betflikco-yellow);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.game-type-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.game-type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-type-info {
    padding: 1.5rem;
}

.game-type-title {
    color: var(--betflikco-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.game-type-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tips-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

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

.tip-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--betflikco-pink);
}

.tip-item h4 {
    color: var(--betflikco-yellow);
    margin-bottom: 1rem;
}

.tip-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Fishing page enhancements */
.fishing-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--co168-orange);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cta-button.cta-outline {
    background: transparent;
    border: 2px solid var(--co168-yellow);
    box-shadow: none;
}

/* Providers */
.provider-section {
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.provider-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    align-items: center;
    justify-items: center;
}

.provider-logo {
    max-height: 54px;
    object-fit: contain;
    filter: saturate(0.9) brightness(0.95);
    opacity: 0.9;
    transition: var(--transition);
}

.provider-logo:hover {
    filter: saturate(1.1) brightness(1);
    opacity: 1;
    transform: translateY(-3px);
}

/* How-to steps */
.howto-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin: 3rem 0;
    padding: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Sticky CTA */
.cta-sticky {
    position: fixed;
    left: 0;
    bottom: 20px;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 1100;
}

.cta-sticky.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cta-sticky-inner {
    background: linear-gradient(90deg, rgba(211, 1, 124, 0.95), rgba(237, 119, 0, 0.95));
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
}

.cta-sticky-text {
    font-weight: 600;
}

.cta-sticky-btn {
    display: inline-block;
    background: #00000033;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.cta-sticky-btn:hover {
    transform: translateY(-2px);
    background: #00000055;
}

.close-sticky {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
    transition: var(--transition);
}

.close-sticky:hover { opacity: 1; }

@media (max-width: 768px) {
    .hero-ctas { flex-direction: column; }
    .cta-sticky { bottom: 0; }
    .cta-sticky-inner { border-radius: 0; padding: 0.9rem 1rem; }
}

/* Additional Sports Page Styles */
.live-indicator {
    background: var(--betflikco-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Additional Promotions Page Styles */
.vip-level {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.vip-level h4 {
    color: var(--betflikco-yellow);
    margin-bottom: 1rem;
}

.vip-level p {
    color: white;
    font-size: 0.9rem;
}

/* Fix CSS Variable Names */
:root {
    --co168-yellow: var(--betflikco-yellow);
    --co168-pink: var(--betflikco-pink);
    --co168-orange: var(--betflikco-orange);
    --co168-purple: var(--betflikco-purple);
}
