/* ============================================
   YAAR WIN OFFICIAL - STYLESHEET (LIGHT THEME)
   Clean, Professional, SEO & Core Web Vitals Optimized
   ============================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== LOADER ========== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.4s ease;
}

.loader-inner {
    text-align: center;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #059669;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.loader-text {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== NAVBAR ========== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #059669;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo h3 {
    font-size: 18px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #059669;
}

.btn-nav {
    background: #059669;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background 0.2s;
}

.btn-nav:hover {
    background: #047857;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #1e293b;
    font-size: 15px;
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.btn-mobile {
    background: #059669;
    color: #ffffff !important;
    text-align: center;
    border-radius: 8px;
    font-weight: 600 !important;
    border-bottom: none !important;
}

/* ========== HERO ========== */
.hero {
    padding: 60px 24px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5, #f8fafc);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
}

.green {
    color: #059669;
}

.hero-desc {
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc strong {
    color: #1e293b;
}

.hero-buttons {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-green {
    background: #059669;
    color: #ffffff;
}

.btn-green:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.btn-outline {
    border: 2px solid #059669;
    color: #059669;
    background: transparent;
}

.btn-outline:hover {
    background: #059669;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-contact {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
    width: 100%;
}

.hero-contact a {
    color: #059669;
    font-weight: 500;
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 13px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
}

.feat-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.feat-toast.feat-show {
    opacity: 1;
}

/* ========== LOGO BOX ========== */
.logo-box {
    text-align: center;
    padding: 24px 0;
}

.logo-box img {
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ========== GAMES SECTION ========== */
.games-section {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-badge {
    display: inline-block;
    background: #d1fae5;
    color: #059669;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.section-sub {
    color: #64748b;
    font-size: 14px;
}

/* Slider */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
    width: 100%;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #059669;
    width: 24px;
    border-radius: 8px;
}

/* Game Cards */
.game-card {
    min-width: 200px;
    max-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.game-card:hover {
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.game-card > div:first-child {
    position: relative;
}

.game-banner {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.hot-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
}

.new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #059669;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
}

.aviator-multiplier {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #34d399;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.game-info {
    padding: 14px;
}

.game-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e293b;
}

.game-rating {
    font-size: 12px;
    color: #f59e0b;
}

.game-players {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.game-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #059669;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s;
}

.game-btn:hover {
    background: #047857;
}

/* ========== FEATURES TABLE ========== */
.feat-section {
    padding: 40px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.feat-header {
    text-align: center;
    margin-bottom: 24px;
}

.feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feat-badge-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
}

.feat-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.feat-green {
    color: #059669;
}

.feat-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feat-table {
    width: 100%;
    border-collapse: collapse;
}

.feat-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.feat-label {
    color: #64748b;
    font-weight: 500;
    width: 40%;
}

.feat-value {
    color: #1e293b;
    font-weight: 600;
}

.feat-value-green {
    color: #059669;
}

.feat-value-bonus {
    color: #d97706;
}

.feat-highlight {
    background: #f0fdf4;
}

.feat-copy-btn {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.2s;
}

.feat-copy-btn:hover {
    background: #059669;
    color: #ffffff;
    border-color: #059669;
}

.feat-download-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: #059669;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
}

.feat-download-btn:hover {
    background: #047857;
}

/* ========== TABLE OF CONTENTS ========== */
.toc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.toc-header {
    text-align: center;
    margin-bottom: 20px;
}

.toc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.toc-badge-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
}

.toc-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.toc-toggle-all {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}

.toc-toggle-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.toc-toggle-btn:hover {
    background: #e2e8f0;
}

.toc-toggle-btn.active {
    background: #059669;
    color: #ffffff;
    border-color: #059669;
}

.toc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.toc-section {
    border-bottom: 1px solid #f1f5f9;
}

.toc-section:last-child {
    border-bottom: none;
}

.toc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.toc-section-header:hover {
    background: #f8fafc;
}

.toc-section-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-section-arrow {
    width: 20px;
    height: 20px;
    fill: #94a3b8;
    transition: transform 0.3s;
}

.toc-section.open .toc-section-arrow {
    transform: rotate(180deg);
}

.toc-sub-items {
    display: none;
    padding: 0 20px 16px 50px;
}

.toc-section.open .toc-sub-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-sub-item {
    color: #475569;
    font-size: 13px;
    transition: all 0.2s;
}

.toc-sub-item:hover {
    color: #059669;
    padding-left: 8px;
}

/* ========== CONTAINER & SECTION ========== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px;
}

.page-header {
    text-align: center;
    margin-bottom: 32px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.page-badge-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.page-title {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.page-subtitle {
    color: #64748b;
    font-size: 14px;
}

/* Content Sections */
.section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    color: #0f172a;
}

.section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0 10px;
    color: #059669;
}

.section p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.7;
}

.section strong {
    color: #1e293b;
}

.section ul,
.section ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.section li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
    padding-left: 4px;
}

.section li::marker {
    color: #059669;
}

.img-box {
    border-radius: 10px;
    margin: 16px 0;
    width: 100%;
    border: 1px solid #e2e8f0;
}

/* Info Box */
.info-box {
    background: #f0fdf4;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #475569;
}

.info-box strong {
    color: #059669;
}

/* FAQ */
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    padding: 14px 18px;
    background: #f8fafc;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: #1e293b;
}

.faq-a {
    padding: 14px 18px;
    font-size: 13px;
    color: #475569;
    border-top: 1px solid #e2e8f0;
}

.faq-a a {
    color: #059669;
    font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
    background: #ffffff;
    padding: 30px 24px;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand .logo {
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
}

.footer-brand .logo span {
    color: #059669;
}

.footer-brand p {
    font-size: 12px;
    color: #64748b;
    max-width: 500px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #64748b;
}

.footer-bottom a {
    color: #059669;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: #059669;
}

.footer-disclaimer {
    font-size: 11px;
    color: #64748b;
    margin-top: 16px;
    padding: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    text-align: center;
}

.footer-disclaimer strong {
    color: #dc2626;
}

/* ========== SCROLL TOP ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #059669;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: all 0.2s;
}

.scroll-top-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-badge-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.contact-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-title span {
    color: #059669;
}

.contact-subtitle {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    border-color: #059669;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-telegram { background: #e0f2fe; color: #0284c7; }
.icon-website { background: #d1fae5; color: #059669; }
.icon-info { background: #fef3c7; color: #d97706; }

.contact-card-info { flex: 1; }
.contact-card-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: #1e293b; }
.contact-card-info p { font-size: 13px; color: #64748b; margin: 0; }
.contact-card-note { font-size: 11px !important; color: #94a3b8 !important; margin-top: 2px !important; }
.contact-card-arrow { color: #94a3b8; font-size: 20px; flex-shrink: 0; margin-top: 10px; transition: 0.3s; }
.contact-card:hover .contact-card-arrow { color: #059669; }

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #0f172a; }
.form-subtitle { font-size: 13px; color: #64748b; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 6px; }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    outline: 0;
    transition: 0.2s;
    background: #ffffff;
    color: #1e293b;
    font-family: inherit;
}

.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #059669; }

.form-submit {
    width: 100%;
    padding: 14px;
    background: #059669;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.form-submit:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.form-note { font-size: 11px; color: #94a3b8; margin-top: 12px; text-align: center; }
.form-note a { color: #059669; }

.success-msg { text-align: center; padding: 40px 20px; }
.check-icon { font-size: 60px; margin-bottom: 14px; }
.success-msg h3 { font-size: 22px; font-weight: 700; color: #059669; margin-bottom: 6px; }
.success-msg p { font-size: 14px; color: #64748b; }

.contact-help-section { max-width: 800px; margin: 40px auto; }
.contact-help-title { text-align: center; margin-bottom: 24px; font-size: 22px; color: #0f172a; }
.contact-help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.contact-help-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.contact-help-card h4 { color: #059669; margin-bottom: 8px; font-size: 15px; }
.contact-help-card p { font-size: 13px; color: #64748b; line-height: 1.6; }

.contact-note-box { max-width: 800px; margin: 0 auto 40px; text-align: center; }
.contact-note-box > div { background: #ffffff; border: 2px solid #059669; border-radius: 16px; padding: 24px; }
.contact-note-box h3 { color: #059669; margin-bottom: 8px; }
.contact-note-box p { color: #64748b; font-size: 14px; margin-bottom: 8px; }
.contact-note-links a { color: #059669; margin: 0 5px; }

/* ========== RESPONSIBLE, ABOUT, PRIVACY & TERMS ========== */
.resp-page, .abt-page, .priv-page, .term-page { max-width: 860px; margin: 0 auto; padding: 40px 24px; }
.resp-hero, .abt-hero, .priv-hero, .term-hero {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #a7f3d0;
    border-radius: 20px;
    padding: 40px 24px;
}

.resp-hero-icon, .abt-hero-icon, .priv-hero-icon, .term-hero-icon { font-size: 50px; margin-bottom: 12px; }
.resp-hero-badge, .abt-hero-badge, .priv-hero-badge, .term-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.resp-hero-title, .abt-hero-title, .priv-hero-title, .term-hero-title { font-size: clamp(26px, 5vw, 36px); font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.resp-hero-title span, .abt-hero-title span, .priv-hero-title span, .term-hero-title span { color: #059669; }
.resp-hero-desc, .abt-hero-desc, .priv-hero-desc, .term-hero-desc { font-size: 15px; color: #475569; max-width: 650px; margin: 0 auto; line-height: 1.7; }

.resp-section, .abt-section, .priv-section, .term-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.resp-section h2, .abt-section h2, .priv-section h2, .term-section h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    color: #0f172a;
}

.resp-section p, .abt-section p, .priv-section p, .term-section p { font-size: 14px; color: #475569; margin-bottom: 12px; line-height: 1.7; }
.resp-section a, .abt-section a, .priv-section a, .term-section a { color: #059669; }

.resp-guide-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.resp-guide-num {
    width: 36px;
    height: 36px;
    background: #059669;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.resp-guide-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #1e293b; }
.resp-guide-content p { font-size: 13px; color: #64748b; margin: 0; }

.resp-warning-box, .abt-warning-box, .priv-warning, .term-warning {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 14px;
    padding: 20px;
    margin: 16px 0;
}

.resp-warning-box li, .abt-warning-box li, .term-warning li { font-size: 14px; color: #475569; margin-bottom: 6px; }
.resp-danger-text { margin-top: 12px; font-weight: 600; color: #dc2626; font-size: 14px !important; }

.resp-tips-grid, .abt-feature-grid, .abt-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.resp-tip-card, .abt-feature-card, .abt-trust-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }
.resp-tip-card p strong { color: #1e293b; display: block; margin-bottom: 2px; }

.resp-exclusion-grid, .resp-helpline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 16px; }
.resp-exclusion-card, .resp-helpline-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }
.resp-helpline-num { font-size: 20px; font-weight: 700; color: #059669; margin: 4px 0; }

.resp-danger-box { background: #fef2f2; border: 2px solid #fecaca; border-radius: 14px; padding: 20px; text-align: center; margin: 16px 0; }
.resp-danger-box h3 { font-size: 18px; color: #dc2626; margin-bottom: 6px; }
.resp-age-badge { display: inline-block; background: #dc2626; color: #ffffff; padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-top: 6px; }

.priv-table-wrap { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; margin: 16px 0; }
.priv-table { width: 100%; border-collapse: collapse; }
.priv-table th { background: #059669; color: #ffffff; padding: 10px 14px; font-size: 13px; text-align: left; }
.priv-table td { padding: 10px 14px; font-size: 13px; border-bottom: 1px solid #f1f5f9; color: #475569; }

.term-list { display: flex; flex-direction: column; gap: 10px; }
.term-list-item { display: flex; align-items: flex-start; gap: 12px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 12px; }
.term-num { width: 28px; height: 28px; background: #059669; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }

.priv-faq-item, .term-faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; }
.priv-faq-item h3, .term-faq-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: #1e293b; }
.priv-faq-item p, .term-faq-item p { font-size: 13px; color: #475569; margin: 0; }

.resp-related-grid, .abt-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.resp-related-grid a, .abt-related-grid a { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 12px; color: #1e293b; font-size: 13px; font-weight: 500; text-align: center; }
.resp-related-grid a:hover, .abt-related-grid a:hover { border-color: #059669; color: #059669; }

/* ========== BLOG LISTING & POSTS ========== */
.blg-page { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.blg-header { text-align: center; margin-bottom: 36px; }
.blg-title { font-size: clamp(26px, 5vw, 34px); font-weight: 800; margin-bottom: 6px; color: #0f172a; }
.blg-title span { color: #059669; }
.blg-subtitle { font-size: 14px; color: #64748b; max-width: 650px; margin: 0 auto; }

.blg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.blg-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); transition: 0.2s; }
.blg-card:hover { border-color: #059669; transform: translateY(-2px); }
.blg-card-body { padding: 20px; }
.blg-meta { font-size: 11px; color: #94a3b8; margin-bottom: 6px; }
.blg-card-body h2 { font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.blg-card-body h2 a { color: #1e293b; }
.blg-card-body h2 a:hover { color: #059669; }
.blg-card-body p { font-size: 13px; color: #64748b; margin-bottom: 12px; line-height: 1.6; }
.blg-read-more { color: #059669; font-weight: 600; font-size: 13px; }

.blg-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.blg-cat-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px; text-align: center; }
.blg-cat-card:hover { border-color: #059669; transform: translateY(-2px); }
.blg-cat-icon { font-size: 28px; margin-bottom: 6px; }
.blg-cat-card h4 { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 2px; }
.blg-cat-card p { font-size: 12px; color: #64748b; margin: 0; }

.blg-tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 12px; }
.blg-tag { background: #ffffff; border: 1px solid #e2e8f0; padding: 6px 14px; border-radius: 20px; color: #475569; font-size: 12px; }
.blg-tag:hover { background: #059669; color: #ffffff; border-color: #059669; }

.blg-newsletter { max-width: 480px; margin: 30px auto; background: #f0fdf4; border: 2px solid #059669; border-radius: 14px; padding: 24px; text-align: center; }
.blg-newsletter h3 { color: #059669; margin-bottom: 6px; font-size: 18px; }
.blg-newsletter p { font-size: 13px; color: #64748b; margin-bottom: 14px; }
.blg-newsletter-input { width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 13px; margin-bottom: 10px; outline: none; }
.blg-newsletter-btn { width: 100%; padding: 10px; background: #059669; color: #ffffff; border: none; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; }

.blg-related-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.blg-rel-btn { padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.blg-rel-green { background: #059669; color: #ffffff; }
.blg-rel-dark { background: #1e293b; color: #ffffff; }
.blg-rel-orange { background: #ea580c; color: #ffffff; }
.blg-rel-purple { background: #7c3aed; color: #ffffff; }
.blg-rel-gray { background: #64748b; color: #ffffff; }
.blg-rel-darkgray { background: #334155; color: #ffffff; }

/* ========== SINGLE BLOG POST STYLES (FIXED LIGHT THEME) ========== */
.avtr-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.avtr-breadcrumb {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
}

.avtr-breadcrumb a {
    color: #059669;
}

.avtr-category {
    display: inline-block;
    background: #d1fae5;
    color: #059669;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.avtr-title {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #0f172a;
}

.avtr-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.avtr-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.avtr-section h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    color: #0f172a;
}

.avtr-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 16px 0 8px;
    color: #059669;
}

.avtr-section p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.7;
}

.avtr-section strong {
    color: #1e293b;
}

.avtr-section ul,
.avtr-section ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.avtr-section li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.avtr-section li::marker {
    color: #059669;
}

.avtr-section a {
    color: #059669;
}

.avtr-steps ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.avtr-steps li {
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 8px;
}

.avtr-highlight {
    background: #f0fdf4;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #475569;
}

.avtr-warning {
    background: #fffbeb;
    border: 2px solid #fcd34d;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #92400e;
}

.avtr-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
}

.avtr-faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.avtr-faq-item p {
    font-size: 13px;
    color: #475569;
    margin: 0;
}

.avtr-cta-box {
    background: #f0fdf4;
    border: 2px solid #059669;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    margin: 24px 0;
}

.avtr-cta-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.avtr-cta-box p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.avtr-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #059669;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}

.avtr-cta-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

.avtr-cta-note {
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 10px !important;
}

.avtr-related {
    margin-top: 36px;
}

.avtr-related h3 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
    color: #0f172a;
}

.avtr-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.avtr-related-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: 0.2s;
}

.avtr-related-card:hover {
    border-color: #059669;
    transform: translateY(-2px);
}

.avtr-related-card h4 {
    color: #059669;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
}

.avtr-related-card p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 900px) {
    .blg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .game-card { min-width: 160px; max-width: 180px; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero { padding: 36px 16px; }
    .section, .avtr-section, .resp-section, .abt-section, .priv-section, .term-section { padding: 20px 16px; }
    .resp-hero, .abt-hero, .priv-hero, .term-hero { padding: 28px 16px; }
    .feat-table td { font-size: 12px; padding: 10px 12px; }
    .game-card { min-width: 140px; max-width: 160px; }
    .game-banner { height: 100px; }
    .container, .resp-page, .abt-page, .priv-page, .term-page, .blg-page, .avtr-page { padding: 20px 12px; }
    .blg-grid { grid-template-columns: 1fr; }
}