/* =====================================================
   GoldenFortune_Lotere - Luxury Gold Casino Theme
   Color: Gold #D4AF37, Red #B91C1C, Dark #1A0A0A
   Background: #1A0A0A, Text: #F5E6C8
   Font: Playfair Display (headings), Lato (body)
   Style: Luxurious, ornate borders, gold gradients
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.gf-body {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    background: #1A0A0A;
    color: #D4C5A0;
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}
a { color: #D4AF37; text-decoration: none; transition: all 0.3s; }
a:hover { color: #F5D76E; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 15px; }
.d-none { display: none !important; }
.d-lg-flex { display: flex !important; }

/* === Header - Gold gradient bar === */
.gf-header {
    position: sticky; top: 0; z-index: 9999;
    background: linear-gradient(180deg, #1A0A0A 0%, #2A1008 100%);
    border-bottom: 2px solid #D4AF37;
}
.gf-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; max-width: 1180px; margin: 0 auto; padding: 0 15px;
}
.gf-logo img {
    height: 38px; filter: drop-shadow(0 0 6px rgba(212,175,55,0.3));
}
.gf-nav { display: flex; align-items: center; gap: 4px; }
.gf-nav-link {
    color: #A08C5A; padding: 8px 15px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 2px solid transparent; transition: all 0.3s;
}
.gf-nav-link:hover, .gf-nav-link.gf-active {
    color: #D4AF37; border-bottom-color: #D4AF37;
}
.gf-dropdown { position: relative; }
.gf-dropdown-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #1A0A0A; border: none; padding: 8px 18px;
    font-size: 12px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}
.gf-dropdown-btn:hover { box-shadow: 0 0 16px rgba(212,175,55,0.4); }
.gf-dropdown-panel {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: #2A1008; border: 1px solid #D4AF37;
    min-width: 460px; padding: 20px; z-index: 10000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.gf-dropdown.open .gf-dropdown-panel { display: block; }
.gf-dropdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gf-dropdown-heading {
    color: #D4AF37; font-weight: 700; font-size: 13px;
    padding-bottom: 6px; margin-bottom: 6px;
    border-bottom: 1px solid rgba(212,175,55,0.3); display: block;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.gf-dropdown-item { color: #A08C5A; font-size: 12px; padding: 3px 0; display: block; }
.gf-dropdown-item:hover { color: #F5D76E; padding-left: 4px; }
.gf-header-actions { display: flex; gap: 8px; align-items: center; }

/* === Buttons === */
.gf-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer;
    border: 2px solid transparent; transition: all 0.3s;
    font-family: 'Lato', sans-serif; text-decoration: none;
}
.gf-btn-gold {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #1A0A0A; border-color: #D4AF37;
}
.gf-btn-gold:hover {
    box-shadow: 0 0 24px rgba(212,175,55,0.5); color: #1A0A0A;
    transform: translateY(-1px);
}
.gf-btn-outline {
    background: transparent; color: #D4AF37; border-color: #D4AF37;
}
.gf-btn-outline:hover { background: #D4AF37; color: #1A0A0A; }
.gf-btn-sm { padding: 7px 16px; font-size: 11px; }
.gf-btn-block { display: flex; width: 100%; }
.gf-btn-red {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    color: #FFF; border-color: #B91C1C;
}
.gf-btn-red:hover { box-shadow: 0 0 16px rgba(185,28,28,0.4); color: #FFF; }

/* === Mobile === */
.gf-mobile-toggle {
    display: none; position: fixed; top: 14px; right: 14px; z-index: 10001;
    background: #2A1008; border: 1px solid #D4AF37;
    width: 44px; height: 44px; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.gf-toggle-bar { width: 22px; height: 2px; background: #D4AF37; }
.gf-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10002; }
.gf-overlay.active { display: block; }
.gf-sidebar {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
    background: #1A0A0A; border-right: 2px solid #D4AF37;
    z-index: 10003; transition: left 0.3s; overflow-y: auto;
}
.gf-sidebar.open { left: 0; }
.gf-sidebar-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px; border-bottom: 1px solid rgba(212,175,55,0.2);
}
.gf-sidebar-logo { height: 36px; display: block; }
.gf-sidebar-close { background: none; border: none; color: #D4AF37; font-size: 24px; cursor: pointer; }
.gf-sidebar-menu { padding: 12px 0; }
.gf-sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; color: #A08C5A; font-size: 14px; font-weight: 500;
    border-left: 3px solid transparent; transition: all 0.3s;
}
.gf-sidebar-link:hover { background: rgba(212,175,55,0.06); border-left-color: #D4AF37; color: #D4AF37; }
.gf-sidebar-link i { width: 20px; text-align: center; color: #D4AF37; }
.gf-sidebar-cta { padding: 18px; }

/* === Main === */
.gf-content { min-height: 60vh; }

/* === Hero - Full width with gold overlay === */
.gf-hero {
    position: relative; padding: 90px 0 70px;
    background: linear-gradient(135deg, #1A0A0A 0%, #2A1008 40%, #1A0A0A 100%);
    overflow: hidden;
}
.gf-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.gf-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
.gf-hero-inner { position: relative; z-index: 2; text-align: center; }
.gf-hero-crown { font-size: 40px; color: #D4AF37; margin-bottom: 16px; display: block; }
.gf-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px; font-weight: 900; color: #FFF;
    margin: 0 0 16px; line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gf-hero h1 span {
    background: linear-gradient(135deg, #D4AF37, #F5D76E);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gf-hero-desc {
    font-size: 17px; color: #A08C5A; max-width: 560px;
    margin: 0 auto 32px; line-height: 1.8;
}
.gf-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero Promo - Gold bordered card */
.gf-hero-promo {
    display: inline-flex; align-items: center; gap: 20px;
    background: rgba(212,175,55,0.06); border: 2px solid rgba(212,175,55,0.3);
    padding: 24px 32px; text-align: left; max-width: 600px; margin: 0 auto;
    position: relative;
}
.gf-hero-promo::before, .gf-hero-promo::after {
    content: '★'; position: absolute; color: #D4AF37; font-size: 16px;
}
.gf-hero-promo::before { top: -10px; left: 16px; }
.gf-hero-promo::after { bottom: -10px; right: 16px; }
.gf-hero-promo-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #1A0A0A; border-radius: 50%;
}
.gf-hero-promo h3 { color: #FFF; font-size: 20px; font-weight: 800; margin: 0 0 4px; font-family: 'Playfair Display', serif; }
.gf-hero-promo p { color: #A08C5A; font-size: 14px; margin: 0 0 12px; }

/* === Sections === */
.gf-section { padding: 60px 0; position: relative; }
.gf-section-alt { background: rgba(212,175,55,0.03); }
.gf-section-title {
    text-align: center; margin-bottom: 44px;
}
.gf-section-title h2 {
    font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800;
    color: #FFF; margin: 0 0 6px;
}
.gf-section-title p { color: #8B7D5A; font-size: 14px; margin: 0; }
.gf-section-title .gf-ornament {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-top: 14px; color: #D4AF37;
}
.gf-section-title .gf-ornament::before, .gf-section-title .gf-ornament::after {
    content: ''; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, #D4AF37);
}
.gf-section-title .gf-ornament::after { background: linear-gradient(90deg, #D4AF37, transparent); }

/* === Games - Circle icon cards === */
.gf-game-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gf-game-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.15);
    padding: 30px 20px; text-align: center; transition: all 0.3s; cursor: pointer;
    position: relative;
}
.gf-game-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0; transition: opacity 0.3s;
}
.gf-game-card:hover::before { opacity: 1; }
.gf-game-card:hover {
    border-color: #D4AF37; transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.1);
}
.gf-game-card img {
    width: 70px; height: 70px; object-fit: contain;
    margin-bottom: 14px; border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.2); padding: 8px;
    transition: all 0.3s;
}
.gf-game-card:hover img { border-color: #D4AF37; box-shadow: 0 0 14px rgba(212,175,55,0.3); }
.gf-game-card h3 { color: #FFF; font-size: 16px; font-weight: 700; margin: 0 0 4px; font-family: 'Playfair Display', serif; }
.gf-game-card p { color: #8B7D5A; font-size: 12px; margin: 0; }

/* === Sports === */
.gf-sport-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gf-sport-card {
    background: linear-gradient(180deg, rgba(212,175,55,0.06) 0%, transparent 100%);
    border: 1px solid rgba(212,175,55,0.12); padding: 28px 16px;
    text-align: center; transition: all 0.3s;
}
.gf-sport-card:hover { border-color: #D4AF37; transform: translateY(-3px); }
.gf-sport-icon {
    width: 52px; height: 52px; margin: 0 auto 12px;
    background: rgba(212,175,55,0.1); border: 2px solid rgba(212,175,55,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #D4AF37; transition: all 0.3s;
}
.gf-sport-card:hover .gf-sport-icon { background: #D4AF37; color: #1A0A0A; }
.gf-sport-card h3 { color: #FFF; font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.gf-sport-card p { color: #8B7D5A; font-size: 12px; margin: 0 0 14px; }

/* === Featured === */
.gf-featured { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 180px; gap: 12px; }
.gf-featured-item { position: relative; overflow: hidden; border: 1px solid rgba(212,175,55,0.12); }
.gf-featured-item.gf-lg { grid-column: span 2; grid-row: span 2; }
.gf-featured-item:hover { border-color: #D4AF37; }
.gf-featured-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.75); }
.gf-featured-item:hover img { transform: scale(1.06); filter: brightness(0.9); }
.gf-featured-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px; background: linear-gradient(transparent, rgba(26,10,10,0.9));
}
.gf-featured-caption h4 { color: #FFF; font-size: 14px; margin: 0 0 6px; }

/* === Live Casino === */
.gf-live-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.gf-live-card {
    border: 1px solid rgba(212,175,55,0.12); overflow: hidden;
    background: #221008; transition: all 0.3s;
}
.gf-live-card:hover { border-color: #D4AF37; transform: translateY(-3px); }
.gf-live-card img { width: 100%; height: 150px; object-fit: cover; }
.gf-live-info { padding: 12px; }
.gf-live-badge { display: inline-block; background: #B91C1C; color: #FFF; font-size: 9px; font-weight: 800; padding: 2px 6px; margin-bottom: 4px; }
.gf-live-info h4 { color: #FFF; font-size: 14px; margin: 0 0 2px; }
.gf-live-info p { color: #8B7D5A; font-size: 11px; margin: 0; }

/* === App Download === */
.gf-appdownload {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.04), rgba(185,28,28,0.04));
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.gf-appdownload-inner { display: flex; align-items: center; gap: 40px; }
.gf-appdownload-text { flex: 1; }
.gf-appdownload-text h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: #FFF; margin: 0 0 12px; }
.gf-appdownload-text h2 i { color: #D4AF37; margin-right: 8px; }
.gf-appdownload-text p { color: #A08C5A; margin: 0 0 20px; line-height: 1.7; }
.gf-appdownload-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.gf-appdownload-img img { max-width: 240px; border: 2px solid rgba(212,175,55,0.2); }

/* === Articles === */
.gf-article-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.gf-article-cat {
    border: 1px solid rgba(212,175,55,0.12); background: rgba(255,255,255,0.02);
    margin-bottom: 20px;
}
.gf-article-cat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px; background: linear-gradient(90deg, rgba(212,175,55,0.1), transparent);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}
.gf-article-cat-header h3 {
    color: #FFF; font-size: 15px; font-weight: 800; margin: 0;
    font-family: 'Playfair Display', serif;
}
.gf-article-cat-header a { color: #D4AF37; font-size: 12px; }
.gf-article-list { list-style: none; }
.gf-article-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.gf-article-list li:last-child { border-bottom: none; }
.gf-article-list li a { color: #D4C5A0; font-size: 14px; flex: 1; }
.gf-article-list li a:hover { color: #F5D76E; }
.gf-article-list li time { color: #5A4A2A; font-size: 11px; flex-shrink: 0; margin-left: 12px; }

/* Sidebar Widget */
.gf-sidebar-widget { border: 1px solid rgba(212,175,55,0.12); background: rgba(255,255,255,0.02); margin-bottom: 20px; }
.gf-sidebar-widget-header {
    padding: 12px 16px; background: linear-gradient(90deg, rgba(212,175,55,0.08), transparent);
    border-bottom: 1px solid rgba(212,175,55,0.06);
}
.gf-sidebar-widget-header h3 { color: #FFF; font-size: 13px; font-weight: 800; margin: 0; font-family: 'Playfair Display', serif; }
.gf-sidebar-widget ul { list-style: none; }
.gf-sidebar-widget li { padding: 8px 16px; border-bottom: 1px solid rgba(255,255,255,0.02); }
.gf-sidebar-widget li:last-child { border-bottom: none; }
.gf-sidebar-widget li a { color: #D4C5A0; font-size: 13px; }
.gf-sidebar-widget li a:hover { color: #F5D76E; }
.gf-sidebar-widget li span { color: #5A4A2A; font-size: 11px; display: block; margin-top: 2px; }
.gf-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 16px; }
.gf-tags a {
    padding: 3px 10px; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2);
    color: #A08C5A; font-size: 11px;
}
.gf-tags a:hover { background: #D4AF37; color: #1A0A0A; border-color: #D4AF37; }

/* === Breadcrumb === */
.gf-breadcrumb { padding: 14px 0; margin-bottom: 20px; border-bottom: 1px solid rgba(212,175,55,0.1); }
.gf-breadcrumb .breadcrumb { background: transparent; padding: 0; margin: 0; }
.gf-breadcrumb .breadcrumb-item a { color: #D4AF37; font-size: 13px; }
.gf-breadcrumb .breadcrumb-item.active { color: #5A4A2A; font-size: 13px; }

/* === Article List Block === */
.gf-article-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.gf-article-item:last-child { border-bottom: none; }
.gf-article-thumb { width: 140px; height: 95px; flex-shrink: 0; overflow: hidden; border: 1px solid rgba(212,175,55,0.15); }
.gf-article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gf-article-thumb:hover img { transform: scale(1.04); }
.gf-article-info h4 { margin: 0 0 6px; }
.gf-article-info h4 a { color: #F5E6C8; font-size: 16px; font-weight: 600; }
.gf-article-info h4 a:hover { color: #D4AF37; }
.gf-article-info .gf-desc { color: #8B7D5A; font-size: 13px; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gf-article-info .gf-date { color: #5A4A2A; font-size: 11px; }

/* === Detail === */
.gf-detail-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: #FFF; line-height: 1.3; margin: 0 0 14px; }
.gf-detail-meta { display: flex; gap: 16px; flex-wrap: wrap; padding-bottom: 16px; margin-bottom: 24px; border-bottom: 1px solid rgba(212,175,55,0.1); font-size: 12px; color: #8B7D5A; }
.gf-detail-meta i { color: #D4AF37; margin-right: 4px; }
.gf-detail-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.gf-detail-tags a { padding: 2px 8px; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2); color: #A08C5A; font-size: 11px; }
.gf-detail-tags a:hover { background: #D4AF37; color: #1A0A0A; }
.gf-detail-body { color: #D4C5A0; font-size: 15px; line-height: 1.9; }
.gf-detail-body img { border: 1px solid rgba(212,175,55,0.15); margin: 14px 0; }
.gf-detail-body h2, .gf-detail-body h3 { color: #FFF; font-family: 'Playfair Display', serif; margin: 28px 0 12px; }
.gf-detail-body a { color: #D4AF37; border-bottom: 1px dotted #D4AF37; }
.gf-detail-body blockquote { border-left: 3px solid #D4AF37; padding: 14px 20px; margin: 20px 0; background: rgba(212,175,55,0.04); }
.gf-page-nav { display: flex; gap: 14px; padding: 20px 0; margin-top: 24px; border-top: 1px solid rgba(212,175,55,0.1); }
.gf-page-nav-item { flex: 1; padding: 14px 18px; border: 1px solid rgba(212,175,55,0.12); background: rgba(255,255,255,0.02); }
.gf-page-nav-item:hover { border-color: #D4AF37; }
.gf-page-nav-item span { color: #8B7D5A; font-size: 11px; display: block; margin-bottom: 4px; }
.gf-page-nav-item a { color: #F5E6C8; font-size: 14px; }
.gf-pagination { display: flex; justify-content: center; padding: 28px 0; }
.gf-pagination .pagination { list-style: none; display: flex; gap: 6px; }
.gf-pagination .page-item .page-link { background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.2); color: #A08C5A; padding: 7px 14px; font-size: 13px; }
.gf-pagination .page-item.active .page-link { background: #D4AF37; color: #1A0A0A; border-color: #D4AF37; }
.gf-pagination .page-item .page-link:hover { border-color: #D4AF37; color: #D4AF37; }

/* === Search/Tags === */
.gf-search-header { padding: 30px 0; margin-bottom: 24px; }
.gf-search-header h1 { font-family: 'Playfair Display', serif; font-size: 24px; color: #FFF; margin: 0 0 4px; }
.gf-search-header p { color: #8B7D5A; font-size: 14px; margin: 0; }
.gf-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 0; }
.gf-tag-cloud a { padding: 6px 16px; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); color: #A08C5A; font-size: 13px; }
.gf-tag-cloud a:hover { background: #D4AF37; color: #1A0A0A; }
.gf-tag-header { display: flex; gap: 20px; align-items: center; padding: 24px; margin-bottom: 24px; border: 1px solid rgba(212,175,55,0.15); background: rgba(212,175,55,0.04); }
.gf-tag-header-icon { width: 56px; height: 56px; border: 2px solid #D4AF37; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #D4AF37; flex-shrink: 0; }
.gf-tag-header h2 { color: #FFF; font-size: 22px; margin: 0 0 4px; font-family: 'Playfair Display', serif; }
.gf-tag-header p { color: #8B7D5A; font-size: 14px; margin: 0; }

/* === SO Search === */
.gf-so-page { min-height: 100vh; background: #1A0A0A; }
.gf-so-hero { text-align: center; padding: 80px 0 40px; }
.gf-so-hero h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: #FFF; margin: 0 0 20px; }
.gf-so-form { display: flex; max-width: 520px; margin: 0 auto; border: 2px solid #D4AF37; }
.gf-so-form input { flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.03); border: none; color: #FFF; font-size: 15px; outline: none; }
.gf-so-form input::placeholder { color: #5A4A2A; }
.gf-so-form button { padding: 14px 24px; background: #D4AF37; border: none; color: #1A0A0A; font-weight: 800; cursor: pointer; font-size: 14px; font-family: 'Lato', sans-serif; }
.gf-so-hot { max-width: 520px; margin: 24px auto 0; }
.gf-so-hot h4 { color: #D4AF37; font-size: 14px; margin: 0 0 12px; }
.gf-so-hot-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gf-so-hot-list a { color: #A08C5A; font-size: 13px; }
.gf-so-results { padding: 30px 0; }
.gf-so-result-item { padding: 16px 0; border-bottom: 1px solid rgba(212,175,55,0.08); }
.gf-so-result-item h3 a { color: #D4AF37; font-size: 17px; }
.gf-so-result-item p { color: #8B7D5A; font-size: 13px; margin: 6px 0 0; }

/* === Footer === */
.gf-footer { background: #100606; border-top: 2px solid #D4AF37; padding-top: 50px; margin-top: 40px; position: relative; }
.gf-footer::before { content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #B91C1C, #D4AF37, #B91C1C); }
.gf-footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 15px; }
.gf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(212,175,55,0.1); }
.gf-footer-col h4 { color: #D4AF37; font-size: 13px; font-weight: 800; margin: 0 0 14px; font-family: 'Playfair Display', serif; text-transform: uppercase; letter-spacing: 1px; }
.gf-footer-col a { display: block; color: #6B5A3A; font-size: 13px; padding: 3px 0; }
.gf-footer-col a:hover { color: #D4AF37; padding-left: 4px; }
.gf-footer-brand p { color: #5A4A2A; font-size: 13px; line-height: 1.7; margin: 12px 0 14px; }
.gf-footer-logo { height: 32px; filter: drop-shadow(0 0 4px rgba(212,175,55,0.3)); }
.gf-footer-social { display: flex; gap: 8px; }
.gf-footer-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(212,175,55,0.3); color: #A08C5A; font-size: 14px; padding: 0; }
.gf-footer-social a:hover { background: #D4AF37; color: #1A0A0A; border-color: #D4AF37; padding-left: 0; }
.gf-footer-games { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.gf-footer-games img { width: 100%; aspect-ratio: 1; object-fit: contain; border: 1px solid rgba(212,175,55,0.12); padding: 6px; background: rgba(255,255,255,0.02); }
.gf-footer-games img:hover { border-color: #D4AF37; }
.gf-footer-friends { padding: 20px 0; border-bottom: 1px solid rgba(212,175,55,0.08); }
.gf-footer-friends h4 { color: #D4AF37; font-size: 12px; margin: 0 0 10px; font-weight: 700; }
.gf-friend-list { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.gf-friend-list a { color: #5A4A2A; font-size: 12px; display: inline; padding: 2px 0; }
.gf-friend-list a:hover { color: #D4AF37; padding-left: 0; }
.gf-footer-bottom { padding: 16px 0; text-align: center; }
.gf-footer-bottom p { color: #3A2A1A; font-size: 12px; margin: 0; }
.gf-footer-bottom a { color: #D4AF37; }


/* === Mobile Top Bar (always visible on mobile) === */
.gf-mobile-bar {
    display: none; /* hidden on desktop */
    position: sticky; top: 0; z-index: 9998;
    background: rgba(26,10,10,0.95); backdrop-filter: blur(10px);
    height: 56px; align-items: center; justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.gf-mobile-bar-logo img { height: 30px; }
.gf-mobile-bar-toggle {
    background: none; border: 1px solid rgba(212,175,55,0.4);
    width: 40px; height: 40px; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    border-radius: 6px;
}
.gf-mobile-bar-toggle .gf-toggle-bar {
    width: 20px; height: 2px; background: #D4AF37;
}
/* Sidebar divider */
.gf-sidebar-divider {
    height: 1px; background: rgba(212,175,55,0.15); margin: 8px 20px;
}
/* Sidebar auth buttons */
.gf-sidebar-auth {
    padding: 16px 20px; display: flex; gap: 8px;
    border-top: 1px solid rgba(212,175,55,0.1);
}
.gf-sidebar-auth .gf-btn { flex: 1; font-size: 12px; padding: 8px 12px; }


/* === Jackpot Ticker Bar === */
.gf-jackpot-bar { padding: 24px 0; background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(185,28,28,0.08)); border-bottom: 1px solid rgba(212,175,55,0.15); }
.gf-jackpot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.gf-jackpot-item { }
.gf-jackpot-item i { color: #D4AF37; font-size: 20px; margin-bottom: 6px; display: block; }
.gf-jackpot-label { color: #A08C5A; font-size: 11px; display: block; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.gf-jackpot-val { color: #D4AF37; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; display: block; }

/* === Lucky Slot Grid (img/ showcase) === */
.gf-lucky-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gf-lucky-card { border: 1px solid rgba(212,175,55,0.12); background: rgba(255,255,255,0.02); overflow: hidden; transition: all 0.3s; }
.gf-lucky-featured { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.gf-lucky-card:hover { border-color: #D4AF37; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,175,55,0.1); }
.gf-lucky-img { overflow: hidden; }
.gf-lucky-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; }
.gf-lucky-card:hover .gf-lucky-img img { transform: scale(1.05); }
.gf-lucky-info { padding: 14px; }
.gf-lucky-info h3 { color: #FFF; font-size: 15px; margin: 0 0 4px; font-family: 'Playfair Display', serif; }
.gf-lucky-info p { color: #8B7D5A; font-size: 12px; margin: 0 0 10px; }
.gf-lucky-badge { display: inline-block; background: linear-gradient(135deg, #D4AF37, #B8860B); color: #1A0A0A; font-size: 10px; font-weight: 800; padding: 2px 8px; margin-bottom: 8px; }
.gf-lucky-meta { display: flex; gap: 12px; margin-bottom: 12px; }
.gf-lucky-meta span { color: #A08C5A; font-size: 12px; }
.gf-lucky-meta i { color: #D4AF37; margin-right: 4px; }

/* === VIP Tiers === */
.gf-vip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gf-vip-card {
    border: 1px solid rgba(212,175,55,0.15); background: rgba(255,255,255,0.02);
    padding: 28px 20px; text-align: center; transition: all 0.3s; position: relative;
}
.gf-vip-popular { border-color: #D4AF37; background: rgba(212,175,55,0.06); }
.gf-vip-ribbon {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: #D4AF37; color: #1A0A0A; font-size: 10px; font-weight: 800;
    padding: 3px 14px; letter-spacing: 1px;
}
.gf-vip-icon { font-size: 36px; margin-bottom: 14px; }
.gf-vip-card h3 { color: #FFF; font-size: 18px; margin: 0 0 14px; font-family: 'Playfair Display', serif; }
.gf-vip-perks { list-style: none; text-align: left; }
.gf-vip-perks li { color: #A08C5A; font-size: 13px; padding: 5px 0; border-bottom: 1px solid rgba(212,175,55,0.06); }
.gf-vip-perks li::before { content: '\2713 '; color: #D4AF37; font-weight: 700; }

/* === Casino Gallery (imgpeo/ showcase) === */
.gf-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
.gf-gallery-item { position: relative; overflow: hidden; border: 1px solid rgba(212,175,55,0.12); }
.gf-gallery-wide { grid-column: span 2; }
.gf-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.7); }
.gf-gallery-item:hover img { transform: scale(1.06); filter: brightness(0.9); }
.gf-gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(transparent, rgba(26,10,10,0.85)); }
.gf-gallery-overlay span { color: #D4AF37; font-size: 13px; font-weight: 700; }

@media (max-width: 991px) {
    .gf-jackpot-grid { grid-template-columns: repeat(2, 1fr); }
    .gf-lucky-grid { grid-template-columns: repeat(2, 1fr); }
    .gf-lucky-featured { grid-column: span 2; }
    .gf-vip-grid { grid-template-columns: repeat(2, 1fr); }
    .gf-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gf-gallery-wide { grid-column: span 2; }
}
@media (max-width: 576px) {
    .gf-jackpot-val { font-size: 14px; }
    .gf-lucky-grid { grid-template-columns: 1fr; }
    .gf-lucky-featured { grid-column: span 1; grid-row: span 1; }
    .gf-vip-grid { grid-template-columns: 1fr; }
    .gf-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 140px; }
    .gf-gallery-wide { grid-column: span 1; }
}

/* === Responsive === */
@media (max-width: 991px) {
    .gf-mobile-bar { display: flex; }
    .gf-header-desktop { display: none !important; }
    .gf-hero h1 { font-size: 30px; }
    .gf-hero { padding: 60px 0 50px; }
    .gf-game-grid { grid-template-columns: repeat(2,1fr); }
    .gf-sport-grid { grid-template-columns: repeat(2,1fr); }
    .gf-featured { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
    .gf-live-grid { grid-template-columns: repeat(2,1fr); }
    .gf-article-grid { grid-template-columns: 1fr; }
    .gf-appdownload-inner { flex-direction: column; text-align: center; }
    .gf-appdownload-btns { justify-content: center; }
    .gf-footer-grid { grid-template-columns: 1fr 1fr; }
    .gf-hero-promo { flex-direction: column; text-align: center; }
    .gf-dropdown-panel { min-width: 280px; }
    .gf-dropdown-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .gf-hero h1 { font-size: 24px; }
    .gf-hero-desc { font-size: 14px; }
    .gf-hero-btns { flex-direction: column; align-items: center; }
    .gf-btn { width: 100%; justify-content: center; }
    .gf-game-grid { grid-template-columns: 1fr 1fr; }
    .gf-sport-grid { grid-template-columns: 1fr; }
    .gf-featured { grid-template-columns: 1fr; }
    .gf-featured-item.gf-lg { grid-column: span 1; grid-row: span 1; }
    .gf-live-grid { grid-template-columns: 1fr; }
    .gf-section-title h2 { font-size: 22px; }
    .gf-footer-grid { grid-template-columns: 1fr; }
    .gf-article-item { flex-direction: column; }
    .gf-article-thumb { width: 100%; height: 180px; }
    .gf-detail-title { font-size: 22px; }
    .gf-page-nav { flex-direction: column; }
    .gf-so-form { flex-direction: column; }
}

@keyframes gfFadeIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.gf-hero-inner { animation: gfFadeIn 0.8s ease; }
.gf-game-card, .gf-sport-card, .gf-live-card { animation: gfFadeIn 0.5s ease; }


/* === Intro & FAQ === */
.gf-intro-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
.gf-intro-text h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: #FFF; margin: 0 0 14px; }
.gf-intro-text p { color: #A08C5A; line-height: 1.8; margin: 0 0 20px; }
.gf-intro-features { list-style: none; }
.gf-intro-feat { color: #D4C5A0; font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(212,175,55,0.08); }
.gf-intro-feat i { color: #D4AF37; margin-right: 10px; }
.gf-intro-stat-box { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gf-intro-stat { background: rgba(212,175,55,0.04); border: 1px solid rgba(212,175,55,0.15); padding: 18px; text-align: center; }
.gf-intro-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: #D4AF37; margin-bottom: 4px; }
.gf-intro-stat span:last-child { color: #8B7D5A; font-size: 12px; }
.gf-faq-list { max-width: 800px; margin: 0 auto; }
.gf-faq-item { border: 1px solid rgba(212,175,55,0.12); margin-bottom: 8px; background: rgba(255,255,255,0.02); }
.gf-faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 14px 18px; background: transparent; border: none; color: #FFF; font-size: 15px; font-weight: 700; cursor: pointer; text-align: left; font-family: 'Lato', sans-serif; }
.gf-faq-q:hover { background: rgba(212,175,55,0.04); }
.gf-faq-q i { color: #D4AF37; font-size: 12px; transition: transform 0.3s; }
.gf-faq-q.open i { transform: rotate(180deg); }
.gf-faq-a { display: none; padding: 14px 18px; border-top: 1px solid rgba(212,175,55,0.08); }
.gf-faq-a p { color: #A08C5A; font-size: 14px; line-height: 1.7; margin: 0; }
@media (max-width: 991px) { .gf-intro-grid { grid-template-columns: 1fr; } }

/* === GF Unique: Medallion games === */
.gf-medallion-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center; }
.gf-medallion { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all 0.3s; }
.gf-medallion:hover { transform: translateY(-4px); }
.gf-medallion-ring { width: 90px; height: 90px; border-radius: 50%; border: 3px solid rgba(212,175,55,0.3); padding: 8px; display: flex; align-items: center; justify-content: center; background: rgba(212,175,55,0.04); transition: all 0.3s; }
.gf-medallion:hover .gf-medallion-ring { border-color: #D4AF37; box-shadow: 0 0 20px rgba(212,175,55,0.3); background: rgba(212,175,55,0.08); }
.gf-medallion-ring img { width: 48px; height: 48px; object-fit: contain; }
.gf-medallion span { color: #D4C5A0; font-size: 13px; font-weight: 600; }

/* === GF Unique: Sport list rows === */
.gf-sport-list { display: flex; flex-direction: column; gap: 10px; }
.gf-sport-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: rgba(212,175,55,0.04); border: 1px solid rgba(212,175,55,0.1); transition: all 0.3s; }
.gf-sport-row:hover { border-color: #D4AF37; background: rgba(212,175,55,0.08); }
.gf-sport-row-left { display: flex; align-items: center; gap: 16px; }
.gf-sport-row-left i { font-size: 24px; color: #D4AF37; width: 36px; text-align: center; }
.gf-sport-row-left h3 { color: #FFF; font-size: 16px; font-weight: 700; margin: 0 0 2px; font-family: 'Playfair Display', serif; }
.gf-sport-row-left span { color: #8B7D5A; font-size: 12px; }
@media (max-width: 991px) { .gf-medallion-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .gf-medallion-grid { grid-template-columns: repeat(2, 1fr); } .gf-sport-row { flex-direction: column; gap: 12px; text-align: center; } .gf-sport-row-left { flex-direction: column; } }
