:root {
  --tql-bg: #0b0c10;
  --tql-surface: #13151a;
  --tql-surface-light: #1f2229;
  --tql-text: #e0e6ed;
  --tql-text-muted: #9ba4b5;
  --tql-gold: #d4af37;
  --tql-gold-hover: #f1c40f;
  --tql-wine: #721c24;
  --tql-border: rgba(212, 175, 55, 0.2);
  --tql-font-head: 'Playfair Display', serif;
  --tql-font-body: 'Inter', sans-serif;
  --tql-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --tql-radius: 4px;
  --tql-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

.tql-body {
    font-family: var(--tql-font-body);
    background-color: var(--tql-bg);
    color: var(--tql-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.tql-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.tql-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--tql-border);
    z-index: 1000;
    padding: 16px 0;
}

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

.tql-brand-mark {
    font-family: var(--tql-font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--tql-gold);
    letter-spacing: 2px;
}

.tql-brand-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tql-brand-name {
    font-family: var(--tql-font-head);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.tql-brand-sub {
    font-size: 12px;
    color: var(--tql-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tql-badge-wrap {
    display: flex;
    align-items: center;
}

.tql-badge {
    border: 1px solid var(--tql-gold);
    color: var(--tql-gold);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--tql-radius);
    letter-spacing: 1px;
}

/* Hero Section */
.tql-hero-showcase {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tql-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(114, 28, 36, 0.15) 0%, rgba(11, 12, 16, 1) 70%);
    z-index: 1;
}

.tql-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--tql-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--tql-border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
}

.tql-hero-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.tql-hero-label {
    display: inline-block;
    font-size: 13px;
    color: var(--tql-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
}

.tql-hero-label::before,
.tql-hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--tql-gold);
}

.tql-hero-label::before { right: 100%; margin-right: 15px; }
.tql-hero-label::after { left: 100%; margin-left: 15px; }

.tql-hero-headline {
    font-family: var(--tql-font-head);
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.tql-hero-desc {
    font-size: 18px;
    color: var(--tql-text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

.tql-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tql-stat-box {
    background: var(--tql-surface);
    border: 1px solid var(--tql-border);
    padding: 20px 40px;
    border-radius: var(--tql-radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    transition: var(--tql-transition);
}

.tql-stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--tql-gold);
    box-shadow: var(--tql-shadow);
}

.tql-stat-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tql-text-muted);
}

.tql-stat-val {
    font-family: var(--tql-font-head);
    font-size: 20px;
    color: var(--tql-gold);
}

/* Sections */
.tql-section-block {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.tql-gaming-area {
    background-color: var(--tql-surface);
}

.tql-section-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tql-section-title {
    font-family: var(--tql-font-head);
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.tql-section-intro {
    font-size: 16px;
    color: var(--tql-text-muted);
}

.tql-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tql-feature-card {
    background: var(--tql-surface-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--tql-radius);
    transition: var(--tql-transition);
    position: relative;
    overflow: hidden;
}

.tql-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--tql-gold);
    transition: var(--tql-transition);
}

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

.tql-feature-card:hover::before {
    height: 100%;
}

.tql-card-kicker {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tql-gold);
    margin-bottom: 12px;
}

.tql-card-title {
    font-family: var(--tql-font-head);
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.tql-card-text {
    font-size: 14px;
    color: var(--tql-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.tql-card-list {
    list-style: none;
}

.tql-card-list li {
    font-size: 14px;
    color: var(--tql-text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.tql-card-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
    color: var(--tql-gold);
}

/* Footer */
.tql-bottom-area {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--tql-border);
}

.tql-footer-slogan {
    font-family: var(--tql-font-head);
    font-size: 36px;
    color: var(--tql-gold);
    text-align: center;
    margin-bottom: 60px;
}

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

.tql-footer-col-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
}

.tql-footer-text {
    font-size: 14px;
    color: var(--tql-text-muted);
    line-height: 1.8;
}

.tql-contact-list,
.tql-nav-list {
    list-style: none;
}

.tql-contact-item,
.tql-nav-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--tql-text-muted);
}

.tql-contact-label {
    color: var(--tql-gold);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tql-contact-link,
.tql-nav-link {
    color: var(--tql-text);
    text-decoration: none;
    transition: var(--tql-transition);
}

.tql-contact-link:hover,
.tql-nav-link:hover {
    color: var(--tql-gold);
}

.tql-footer-copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .tql-grid-layout, .tql-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tql-hero-headline {
        font-size: 48px;
    }
    
    .tql-hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .tql-grid-layout, .tql-footer-grid {
        grid-template-columns: 1fr;
    }

    .tql-brand-info {
        display: none;
    }
    
    .tql-nav-inner {
        justify-content: space-between;
    }
}
