* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ffd700;
    --primary-red: #ff0000;
    --bg-dark: #0a0a1a;
    --bg-nav: linear-gradient(180deg, #1a1a3a 0%, #0d0d2a 100%);
    --text-white: #ffffff;
    --text-gold: #ffd700;
    --btn-green: #00c853;
    --btn-red: #ff1744;
    --btn-orange: #ff9100;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 72px;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a2e 0%, #1a0a3a 50%, #0a0a1a 100%);
    z-index: -1;
}

/* Header */
.main-header {
    background: linear-gradient(180deg, #1a1a4a 0%, #0d0d2a 100%);
    padding: 10px 20px;
    border-bottom: 2px solid #3a3a6a;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.world-cup-badge {
    display: flex;
    align-items: center;
    gap: 5px;
}

.world-cup-badge img {
    width: 50px;
    height: 50px;
}

.badge-text {
    font-size: 10px;
    font-weight: bold;
    color: var(--primary-gold);
    text-align: center;
    line-height: 1.2;
}

.logo {
    margin-left: 130px;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
}

.logo-text .red { color: #ff0000; }
.logo-text .gold { color: #ffd700; }
.logo-text .white { color: #ffffff; }

.login-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    margin-left: auto;
    margin-right: 20px;
}

.home-login-section {
    transform: translateX(-76px);
}

.forgot-link {
    font-size: 12px;
    color: #aaa;
    text-align: right;
    cursor: pointer;
}

.forgot-link:hover {
    color: var(--primary-gold);
}

.login-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-field {
    padding: 8px 15px;
    border: 1px solid #3a3a6a;
    border-radius: 5px;
    background: #1a1a3a;
    color: white;
    font-size: 14px;
    width: 150px;
}

.input-field::placeholder {
    color: #888;
}

.btn-login, .btn-register, .btn-quick-register {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Kanit', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border: none;
}

.btn-register {
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    border: none;
}

.btn-quick-register {
    background: linear-gradient(180deg, #ff9100 0%, #ff6d00 100%);
    color: white;
}

.btn-login:hover, .btn-register:hover, .btn-quick-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 250px;
    gap: 15px;
}

.datetime {
    width: 200px;
    font-size: 12px;
    color: var(--primary-gold);
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    white-space: nowrap;
}

.language-selector img {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
}

/* Sticky Navigation */
.main-nav {
    background: var(--bg-nav);
    border-bottom: 3px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 5px;
    overflow-x: auto;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #ccc;
    font-size: 11px;
    transition: all 0.3s;
    border-radius: 8px;
    min-width: 70px;
}

.nav-item img {
    width: 35px;
    height: 35px;
    margin-bottom: 3px;
    transition: transform 0.3s;
}

.nav-item:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.nav-item:hover img {
    transform: scale(1.15);
}

.nav-item.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.15);
}

/* Main Content */
.main-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Floating Elements */
.floating-left, .floating-right {
    position: fixed;
    top: 200px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-left {
    left: 10px;
}

.floating-right {
    right: 10px;
}

.floating-game, .floating-wheel, .floating-football {
    position: relative;
    cursor: pointer;
}

.floating-game img, .floating-wheel img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover {
    background: #ff0000;
}

/* Banner Section */
.banner-section {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 2000 / 485;
    height: auto;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 30px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-gold);
    width: 50px;
}

.dot:hover {
    background: var(--primary-gold);
}

/* Lottery Section */
.lottery-section {
    margin-bottom: 30px;
}

.lottery-banner {
    background: linear-gradient(90deg, #1a3a6a 0%, #2a1a4a 50%, #1a3a6a 100%);
    border-radius: 15px;
    padding: 15px 30px;
    border: 2px solid #3a5a8a;
}

.lottery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lottery-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lottery-logo .eday {
    font-size: 24px;
    font-weight: bold;
    color: #00c853;
}

.lottery-logo .huay {
    font-size: 18px;
    color: white;
    background: #ff6b6b;
    padding: 3px 10px;
    border-radius: 5px;
}

.lottery-icons {
    display: flex;
    gap: 10px;
}

.lottery-icons img {
    width: 40px;
    height: 40px;
}

.lottery-text {
    display: flex;
    flex-direction: column;
}

.huay-main {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-gold);
}

.huay-sub {
    font-size: 16px;
    color: #ffa;
}

.btn-play {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #8b4513 0%, #654321 100%);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Kanit', sans-serif;
    text-decoration: none;
}

.btn-play:hover {
    background: linear-gradient(180deg, #a0522d 0%, #8b4513 100%);
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3a3a6a;
}

.section-header h2 {
    font-size: 24px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 img {
    height: 30px;
}

/* Games Grid */
.games-section {
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play-game {
    padding: 10px 25px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, #b8860b 100%);
    border: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
}

/* Providers Grid */
.providers-section {
    margin-bottom: 40px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.provider-card {
    background: linear-gradient(180deg, #2a2a5a 0%, #1a1a3a 100%);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.provider-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.provider-card img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
}

.cockfight-room-grid {
    grid-template-columns: repeat(4, minmax(140px, 180px));
    justify-content: center;
}

.cockfight-room-card {
    min-height: 150px;
    flex-direction: column;
    gap: 10px;
}

.cockfight-room-card img {
    max-width: 100%;
    max-height: 130px;
}

.cockfight-room-card span {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* Casino Section */
.casino-section {
    margin-bottom: 40px;
}

.casino-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-gold);
}

.slider-btn img {
    width: 20px;
    height: 20px;
}

.casino-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    flex: 1;
    padding: 10px 0;
}

.casino-cards::-webkit-scrollbar {
    display: none;
}

.casino-card {
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.casino-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

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

/* Top 10 Section */
.top10-section {
    margin-bottom: 40px;
}

.top10-bg {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 30px;
}

.top10-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.top10-header img {
    height: 50px;
}

.top10-header h2 {
    font-size: 28px;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.top10-games {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top10-card {
    position: relative;
    width: 150px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.top10-card .frame {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    z-index: 2;
    pointer-events: none;
}

.top10-card .game-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.top10-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.top10-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.top10-btn:hover {
    transform: scale(1.1);
}

.top10-btn img {
    height: 40px;
}

/* Sports Section */
.sports-section {
    margin-bottom: 40px;
}

.sports-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    justify-content: center;
}

.sports-grid::-webkit-scrollbar {
    display: none;
}

.sports-card {
    flex-shrink: 0;
    background: linear-gradient(180deg, #2a2a5a 0%, #1a1a3a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.sports-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.sports-card img {
    width: 200px;
    height: 120px;
    object-fit: contain;
}

/* Winners Section */
.winners-section {
    margin-bottom: 40px;
}

.winners-frame {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 200px;
    padding: 30px;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Content Intro Section */
.content-intro {
    margin-bottom: 30px;
}

.intro-box {
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.95) 0%, rgba(42, 26, 74, 0.95) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3a6a;
}

.intro-box h2 {
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.intro-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 10px;
}

.intro-box strong {
    color: var(--primary-gold);
}

.highlight-box {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(42, 26, 74, 0.95) 100%);
}

/* Content Details Section */
.content-details {
    margin-bottom: 40px;
}

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

.detail-card {
    background: linear-gradient(180deg, rgba(26, 26, 58, 0.95) 0%, rgba(10, 10, 26, 0.95) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #3a3a6a;
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.detail-card h3 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.detail-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 10px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.detail-card ul li {
    font-size: 13px;
    color: #bbb;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.detail-card ul li::before {
    content: "•";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

.detail-card strong {
    color: var(--primary-gold);
}

.details-box {
    background: linear-gradient(180deg, rgba(26, 26, 58, 0.95) 0%, rgba(10, 10, 26, 0.95) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3a6a;
}

.details-box h3 {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 15px;
    color: #ddd;
    padding: 10px 0;
    line-height: 1.6;
}

.steps-list li strong {
    color: var(--primary-gold);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(180deg, rgba(26, 26, 58, 0.95) 0%, rgba(10, 10, 26, 0.95) 100%);
    border-radius: 12px;
    padding: 20px 25px;
    border: 1px solid #3a3a6a;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-item h3 {
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
}

/* Promo Section */
.promo-section {
    margin-bottom: 40px;
}

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

.promo-card {
    background: linear-gradient(180deg, rgba(26, 26, 58, 0.95) 0%, rgba(10, 10, 26, 0.95) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #3a3a6a;
    position: relative;
    transition: all 0.3s;
}

.promo-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.promo-card.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(10, 10, 26, 0.95) 100%);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.promo-card h3 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    margin-top: 10px;
}

.promo-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.promo-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.promo-card ul li {
    font-size: 13px;
    color: #bbb;
    padding: 4px 0;
}

.promo-condition {
    font-size: 12px;
    color: #888;
    font-style: italic;
    border-top: 1px solid #3a3a6a;
    padding-top: 10px;
    margin-top: 10px;
}

.promo-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-register-big {
    display: inline-block;
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Kanit', sans-serif;
    text-decoration: none;
}

.btn-register-big:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 200, 83, 0.4);
    text-decoration: none;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.95) 0%, rgba(42, 26, 74, 0.95) 100%);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #3a3a6a;
}

.page-header h1 {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header-link {
    display: inline-block;
    margin: -5px 0 12px;
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.page-header-link:hover {
    text-decoration: underline;
}

.page-header p {
    font-size: 16px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Casino Grid for detail pages */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.casino-grid .casino-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.casino-grid .casino-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

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

.poker-room-grid .casino-card {
    background: rgba(255, 255, 255, 0.04);
}

.poker-room-grid .casino-card img {
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    background: var(--bg-dark);
}

/* SEO Content Sections */
.seo-intro {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.9) 0%, rgba(42, 26, 74, 0.9) 100%);
    border-radius: 15px;
    border: 1px solid #3a3a6a;
}

.seo-intro h1 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.seo-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
}

.seo-intro strong {
    color: var(--primary-gold);
}

.seo-footer {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(180deg, rgba(26, 26, 58, 0.95) 0%, rgba(10, 10, 26, 0.95) 100%);
    border-radius: 15px;
    border: 1px solid #3a3a6a;
}

.seo-footer h2 {
    font-size: 22px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 25px;
}

.sports-register-note {
    max-width: 900px;
    margin: -8px auto 24px;
    color: var(--primary-gold);
    text-align: center;
    line-height: 1.7;
}

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

.seo-feature {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.seo-feature:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.seo-feature h3 {
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.seo-feature p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #1a1a3a 0%, #0a0a1a 100%);
    padding: 40px 20px;
    border-top: 2px solid #3a3a6a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social a img {
    height: 40px;
    transition: transform 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.footer-copyright {
    color: #666;
    font-size: 12px;
}

/* Bottom action bar */
.bottom-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    height: 70px;
    background: linear-gradient(135deg, #00c853, #009624);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2px 18px rgba(0, 200, 83, 0.35);
}

.bottom-action-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.bottom-action-item:hover,
.bottom-action-item:focus {
    color: var(--primary-gold);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.06);
}

.bottom-action-item + .bottom-action-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    border-left: 1px dashed rgba(255, 255, 255, 0.65);
}

.bottom-action-icon {
    color: var(--primary-gold);
    font-size: 21px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .floating-left, .floating-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .login-form {
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-slider {
        height: auto;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px;
    }

    .header-container {
        gap: 12px;
    }

    .world-cup-badge {
        display: none;
    }

    .login-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
        justify-content: center;
        transform: none;
    }

    .header-right {
        flex: 0 1 100%;
        justify-content: center;
    }

    .datetime {
        width: auto;
        text-align: center;
    }

    .login-form {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .input-field {
        width: 100%;
    }

    .btn-login,
    .btn-register {
        flex: 0 1 112px;
        min-width: 0;
        padding: 10px 12px;
        white-space: nowrap;
    }

    .nav-item {
        min-width: 60px;
        padding: 5px 8px;
    }

    .nav-item img {
        width: 28px;
        height: 28px;
    }

    .nav-item span {
        font-size: 9px;
    }

    .banner-slider {
        height: auto;
    }

    .lottery-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .casino-card img {
        width: 150px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 64px;
    }

    .bottom-action-bar {
        height: 64px;
    }

    .bottom-action-item {
        gap: 4px;
        font-size: 16px;
    }

    .bottom-action-icon {
        font-size: 18px;
    }

    .bottom-action-item + .bottom-action-item::before {
        top: 14px;
        bottom: 14px;
    }

    .logo-text {
        font-size: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .game-card img {
        height: 140px;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px var(--primary-gold); }
    50% { box-shadow: 0 0 25px var(--primary-gold); }
}

.floating-game:hover, .floating-wheel:hover {
    animation: pulse 0.5s ease-in-out;
}

.game-card:hover {
    animation: glow 1s ease-in-out infinite;
}
