/* ============================================
   征途国际 - 敦煌壁画丝路风主题样式
   CSS前缀: zt-
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* === CSS Variables === */
:root {
    --zt-primary: #8C5A3B;
    --zt-secondary: #C89F7A;
    --zt-accent: #E05A47;
    --zt-teal: #3E7A8A;
    --zt-bg: #F5EFE6;
    --zt-text: #3D2C21;
    --zt-text-light: #856A54;
    --zt-footer-bg: #5A3E2B;
    --zt-radius: 4px;
    --zt-shadow: 0 4px 15px rgba(140, 90, 59, 0.15);
    --zt-font-title: 'Noto Serif SC', FangSong, STFangsong, serif;
    --zt-font-body: 'Noto Sans SC', KaiTi, STKaiti, sans-serif;
}

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

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

body {
    font-family: var(--zt-font-body);
    color: var(--zt-text);
    background-color: var(--zt-bg);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--zt-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--zt-accent);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--zt-font-title);
    font-weight: 700;
    line-height: 1.4;
    color: var(--zt-text);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--zt-text-light);
}

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

/* === Section === */
.zt-section {
    padding: 80px 0;
    position: relative;
}

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

.zt-section-title h2 {
    font-size: 2.2rem;
    color: var(--zt-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.zt-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--zt-secondary), transparent);
}

.zt-section-title p {
    font-size: 1.05rem;
    color: var(--zt-text-light);
    margin-top: 10px;
}

/* === Navigation === */
.zt-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(140, 90, 59, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 159, 122, 0.3);
    transition: background 0.3s ease;
}

.zt-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.zt-logo img {
    height: 45px;
    width: 45px;
    border-radius: var(--zt-radius);
}

.zt-logo span {
    font-family: var(--zt-font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: #F5EFE6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.zt-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.zt-nav-links li a {
    color: #F5EFE6;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: var(--zt-radius);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.zt-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--zt-secondary);
    transition: width 0.3s ease;
}

.zt-nav-links li a:hover {
    color: var(--zt-accent);
}

.zt-nav-links li a:hover::after {
    width: 70%;
}

.zt-btn-stamp {
    display: inline-block;
    background: var(--zt-accent);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: var(--zt-radius);
    font-family: var(--zt-font-title);
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 8px rgba(224, 90, 71, 0.3);
}

.zt-btn-stamp:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(224, 90, 71, 0.5);
    color: #fff !important;
}

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

.zt-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #F5EFE6;
    transition: all 0.3s ease;
}

/* === Hero Banner === */
.zt-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.zt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.zt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(140, 90, 59, 0.5), rgba(140, 90, 59, 0.8));
}

.zt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.zt-hero-content h1 {
    font-size: 3rem;
    color: #F5EFE6;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.zt-hero-content h1 .zt-highlight {
    color: var(--zt-secondary);
    text-shadow: 0 0 20px rgba(200, 159, 122, 0.5);
}

.zt-hero-content .zt-subtitle {
    font-size: 1.2rem;
    color: rgba(245, 239, 230, 0.9);
    margin-bottom: 40px;
    font-family: var(--zt-font-body);
}

.zt-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.zt-hero-btn {
    display: inline-block;
    padding: 14px 30px;
    background: rgba(140, 90, 59, 0.6);
    color: #F5EFE6 !important;
    border: 1px solid var(--zt-secondary);
    border-radius: var(--zt-radius);
    font-family: var(--zt-font-title);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.zt-hero-btn:hover {
    background: var(--zt-secondary);
    color: var(--zt-text) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 159, 122, 0.4);
}

/* === Page Banner (Subpages) === */
.zt-page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.zt-page-banner .zt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zt-page-banner .zt-hero-overlay {
    background: linear-gradient(to bottom, rgba(140, 90, 59, 0.4), rgba(140, 90, 59, 0.75));
}

.zt-page-banner-content {
    position: relative;
    z-index: 2;
}

.zt-page-banner-content h1 {
    font-size: 2.5rem;
    color: #F5EFE6;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.zt-page-banner-content p {
    color: rgba(245, 239, 230, 0.85);
    font-size: 1.1rem;
}

/* === Breadcrumb === */
.zt-breadcrumb {
    padding: 15px 0;
    background: rgba(140, 90, 59, 0.05);
    border-bottom: 1px solid rgba(140, 90, 59, 0.1);
}

.zt-breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
}

.zt-breadcrumb-list li::after {
    content: '>';
    margin-left: 8px;
    color: var(--zt-text-light);
}

.zt-breadcrumb-list li:last-child::after {
    display: none;
}

.zt-breadcrumb-list li:last-child {
    color: var(--zt-primary);
    font-weight: 500;
}

/* === Game Cards (Scroll) === */
.zt-games {
    background-image: url('../images/game-scroll-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.zt-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 239, 230, 0.88);
}

.zt-games .zt-container {
    position: relative;
    z-index: 1;
}

.zt-game-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.zt-game-scroll::-webkit-scrollbar {
    height: 6px;
}

.zt-game-scroll::-webkit-scrollbar-track {
    background: rgba(140, 90, 59, 0.1);
    border-radius: 3px;
}

.zt-game-scroll::-webkit-scrollbar-thumb {
    background: var(--zt-secondary);
    border-radius: 3px;
}

.zt-game-card {
    min-width: 240px;
    max-width: 240px;
    background: #fff;
    border-radius: var(--zt-radius);
    overflow: hidden;
    box-shadow: var(--zt-shadow);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(140, 90, 59, 0.15);
}

.zt-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(140, 90, 59, 0.25);
}

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

.zt-game-card-info {
    padding: 15px;
}

.zt-game-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--zt-primary);
}

.zt-game-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.zt-game-tags span {
    font-size: 0.75rem;
    padding: 2px 8px;
    background: rgba(140, 90, 59, 0.1);
    color: var(--zt-primary);
    border-radius: 2px;
}

.zt-btn-jade {
    display: inline-block;
    padding: 6px 16px;
    background: var(--zt-teal);
    color: #fff !important;
    border-radius: var(--zt-radius);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.zt-btn-jade:hover {
    background: #2d6370;
    color: #fff !important;
}

/* === Live Casino === */
.zt-live-casino {
    background-size: cover;
    background-position: center;
    position: relative;
}

.zt-live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.zt-live-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--zt-radius);
    overflow: hidden;
    box-shadow: var(--zt-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(140, 90, 59, 0.15);
}

.zt-live-card:hover {
    transform: translateY(-5px);
}

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

.zt-live-card-info {
    padding: 15px;
    text-align: center;
}

.zt-live-card-info h3 {
    font-size: 1.05rem;
    color: var(--zt-primary);
    margin-bottom: 8px;
}

.zt-live-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--zt-text-light);
    margin-bottom: 12px;
}

.zt-btn-lantern {
    display: inline-block;
    padding: 8px 20px;
    background: var(--zt-accent);
    color: #fff !important;
    border-radius: var(--zt-radius);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.zt-btn-lantern:hover {
    box-shadow: 0 0 20px rgba(224, 90, 71, 0.4);
    color: #fff !important;
}

/* === Sports Section === */
.zt-sports {
    background: var(--zt-bg);
}

.zt-sports-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

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

.zt-match-card {
    background: #fff;
    border-radius: var(--zt-radius);
    padding: 20px;
    box-shadow: var(--zt-shadow);
    border-left: 3px solid var(--zt-accent);
}

.zt-match-league {
    font-size: 0.85rem;
    color: var(--zt-teal);
    font-weight: 500;
    margin-bottom: 8px;
}

.zt-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.zt-match-teams .zt-team {
    font-weight: 700;
    font-size: 1rem;
}

.zt-match-teams .zt-vs {
    color: var(--zt-accent);
    font-weight: 700;
}

.zt-match-odds {
    display: flex;
    gap: 10px;
}

.zt-odd-btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    background: rgba(140, 90, 59, 0.08);
    border-radius: var(--zt-radius);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zt-odd-btn:hover {
    background: var(--zt-secondary);
    color: #fff;
}

.zt-odd-btn .zt-odd-label {
    display: block;
    font-size: 0.75rem;
    color: var(--zt-text-light);
}

.zt-odd-btn .zt-odd-value {
    display: block;
    font-weight: 700;
    color: var(--zt-accent);
}

.zt-sports-art {
    border-radius: var(--zt-radius);
    overflow: hidden;
    box-shadow: var(--zt-shadow);
}

.zt-sports-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Video Section === */
.zt-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zt-video-card {
    background: #fff;
    border-radius: var(--zt-radius);
    overflow: hidden;
    box-shadow: var(--zt-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(140, 90, 59, 0.1);
}

.zt-video-card:hover {
    border-color: var(--zt-secondary);
    box-shadow: 0 0 25px rgba(200, 159, 122, 0.3);
}

.zt-video-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #000;
}

.zt-video-card-info {
    padding: 15px;
}

.zt-video-card-info h3 {
    font-size: 1rem;
    color: var(--zt-primary);
    margin-bottom: 8px;
}

.zt-video-card-info p {
    font-size: 0.9rem;
}

/* === Jackpot Section === */
.zt-jackpot {
    background: linear-gradient(135deg, var(--zt-primary), #6B4226);
    color: #F5EFE6;
    text-align: center;
}

.zt-jackpot .zt-section-title h2 {
    color: var(--zt-secondary);
}

.zt-jackpot .zt-section-title p {
    color: rgba(245, 239, 230, 0.7);
}

.zt-jackpot-amount {
    font-size: 4rem;
    font-family: var(--zt-font-title);
    font-weight: 900;
    color: var(--zt-secondary);
    text-shadow: 0 0 30px rgba(200, 159, 122, 0.5);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.zt-jackpot-ticker {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 40px;
    position: relative;
}

.zt-ticker-track {
    display: flex;
    animation: zt-ticker 20s linear infinite;
    white-space: nowrap;
}

.zt-ticker-item {
    padding: 8px 30px;
    font-size: 0.95rem;
    color: rgba(245, 239, 230, 0.85);
    white-space: nowrap;
}

@keyframes zt-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === APP Download === */
.zt-app-section {
    background: var(--zt-bg);
}

.zt-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.zt-app-phone {
    text-align: center;
}

.zt-app-phone img {
    max-height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(140, 90, 59, 0.3);
}

.zt-app-info h2 {
    color: var(--zt-primary);
    margin-bottom: 10px;
}

.zt-app-info .zt-app-subtitle {
    color: var(--zt-text-light);
    margin-bottom: 25px;
}

.zt-app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.zt-app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: var(--zt-radius);
    box-shadow: var(--zt-shadow);
}

.zt-app-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--zt-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.zt-app-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

.zt-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.zt-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--zt-primary);
    color: #fff !important;
    border-radius: var(--zt-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.zt-download-btn:hover {
    background: var(--zt-accent);
    color: #fff !important;
    transform: translateY(-2px);
}

/* === Promotions === */
.zt-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zt-promo-card {
    background: #fff;
    border-radius: var(--zt-radius);
    overflow: hidden;
    box-shadow: var(--zt-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(140, 90, 59, 0.1);
}

.zt-promo-card:hover {
    transform: translateY(-5px);
}

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

.zt-promo-card-info {
    padding: 20px;
}

.zt-promo-card-info h3 {
    color: var(--zt-primary);
    margin-bottom: 8px;
}

.zt-promo-card-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* === Testimonials === */
.zt-testimonials {
    background: rgba(140, 90, 59, 0.05);
}

.zt-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zt-testimonial-card {
    background: #fff;
    border-radius: var(--zt-radius);
    padding: 25px;
    box-shadow: var(--zt-shadow);
    border-top: 3px solid var(--zt-secondary);
    transition: transform 0.3s ease;
}

.zt-testimonial-card:hover {
    transform: translateY(-3px);
}

.zt-testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.zt-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--zt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-family: var(--zt-font-title);
}

.zt-testimonial-name {
    font-weight: 700;
    color: var(--zt-text);
}

.zt-testimonial-stars {
    color: var(--zt-secondary);
    font-size: 0.9rem;
}

.zt-testimonial-text {
    font-style: italic;
    color: var(--zt-text-light);
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--zt-secondary);
}

/* === Trust Section === */
.zt-trust {
    background: linear-gradient(135deg, #4A3225, var(--zt-footer-bg));
    color: #F5EFE6;
    text-align: center;
}

.zt-trust .zt-section-title h2 {
    color: var(--zt-secondary);
}

.zt-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.zt-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 150px;
}

.zt-trust-badge-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 159, 122, 0.15);
    border: 2px solid var(--zt-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--zt-secondary);
}

.zt-trust-badge span {
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.8);
    text-align: center;
}

/* === Footer === */
.zt-footer {
    background: var(--zt-footer-bg);
    color: rgba(245, 239, 230, 0.8);
    padding: 60px 0 0;
}

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

.zt-footer-brand .zt-logo {
    margin-bottom: 15px;
}

.zt-footer-brand p {
    color: rgba(245, 239, 230, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.zt-footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(200, 159, 122, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zt-secondary);
    transition: all 0.3s ease;
}

.zt-footer-social a:hover {
    background: var(--zt-secondary);
    color: var(--zt-footer-bg);
}

.zt-footer h4 {
    color: var(--zt-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 159, 122, 0.2);
}

.zt-footer-links {
    list-style: none;
}

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

.zt-footer-links a {
    color: rgba(245, 239, 230, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.zt-footer-links a:hover {
    color: var(--zt-secondary);
}

.zt-footer-bottom {
    border-top: 1px solid rgba(200, 159, 122, 0.15);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.5);
}

/* === Content Page === */
.zt-content-page {
    padding: 60px 0;
}

.zt-content-page article {
    max-width: 900px;
    margin: 0 auto;
}

.zt-content-page article h2 {
    color: var(--zt-primary);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(140, 90, 59, 0.15);
}

.zt-content-page article h3 {
    color: var(--zt-text);
    margin-top: 25px;
}

.zt-content-page article p {
    text-indent: 2em;
    margin-bottom: 1.2rem;
}

.zt-content-page article img {
    border-radius: var(--zt-radius);
    box-shadow: var(--zt-shadow);
    margin: 20px 0;
}

/* === Casino Guide Cards === */
.zt-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.zt-casino-card {
    background: #fff;
    border-radius: var(--zt-radius);
    overflow: hidden;
    box-shadow: var(--zt-shadow);
    transition: transform 0.3s ease;
}

.zt-casino-card:hover {
    transform: translateY(-5px);
}

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

.zt-casino-card-body {
    padding: 25px;
}

.zt-casino-card-body h3 {
    color: var(--zt-primary);
    margin-bottom: 5px;
}

.zt-casino-rating {
    color: var(--zt-secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.zt-casino-card-body p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.zt-casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.zt-casino-features span {
    font-size: 0.8rem;
    padding: 3px 10px;
    background: rgba(62, 122, 138, 0.1);
    color: var(--zt-teal);
    border-radius: 2px;
}

.zt-casino-info-table {
    width: 100%;
    font-size: 0.85rem;
    border-collapse: collapse;
}

.zt-casino-info-table td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(140, 90, 59, 0.08);
}

.zt-casino-info-table td:first-child {
    color: var(--zt-text-light);
    width: 80px;
}

/* === Filter Tabs === */
.zt-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.zt-filter-tab {
    padding: 8px 24px;
    border: 1px solid var(--zt-primary);
    border-radius: var(--zt-radius);
    color: var(--zt-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    font-family: var(--zt-font-body);
    font-size: 0.95rem;
}

.zt-filter-tab:hover,
.zt-filter-tab.zt-active {
    background: var(--zt-primary);
    color: #fff;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .zt-live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zt-sports-layout {
        grid-template-columns: 1fr;
    }
    .zt-sports-art {
        display: none;
    }
    .zt-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .zt-hamburger {
        display: flex;
    }
    .zt-nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(140, 90, 59, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }
    .zt-nav-links.zt-active {
        display: flex;
    }
    .zt-nav-links li a {
        display: block;
        padding: 12px 15px;
    }
    .zt-hero-content h1 {
        font-size: 2rem;
    }
    .zt-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .zt-page-banner {
        height: 300px;
    }
    .zt-page-banner-content h1 {
        font-size: 1.8rem;
    }
    .zt-video-grid {
        grid-template-columns: 1fr;
    }
    .zt-promo-grid {
        grid-template-columns: 1fr;
    }
    .zt-testimonial-grid {
        grid-template-columns: 1fr;
    }
    .zt-app-layout {
        grid-template-columns: 1fr;
    }
    .zt-app-phone {
        order: -1;
    }
    .zt-app-features {
        grid-template-columns: 1fr;
    }
    .zt-live-grid {
        grid-template-columns: 1fr;
    }
    .zt-footer-grid {
        grid-template-columns: 1fr;
    }
    .zt-jackpot-amount {
        font-size: 2.5rem;
    }
    .zt-section {
        padding: 50px 0;
    }
    .zt-casino-grid {
        grid-template-columns: 1fr;
    }
    .zt-trust-badges {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .zt-hero-content h1 {
        font-size: 1.6rem;
    }
    .zt-section-title h2 {
        font-size: 1.6rem;
    }
    .zt-match-odds {
        flex-direction: column;
    }
    .zt-download-btns {
        flex-direction: column;
    }
}
