@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;900&display=swap');

:root {
    --bg-body: #F8F9FA;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F3F5;
    --gold: #D4AF37; /* Slightly darker gold for contrast */
    --gold-glow: rgba(212, 175, 55, 0.3);
    --green-action: #28A745;
    --text-main: #212529;
    --text-muted: #6C757D;
    --border-glass: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #111111;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.brand-logo {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #cccccc;
    transition: color 0.2s;
}

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

.nav-actions .btn-sm {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: all 0.2s;
}

.btn-login {
    color: #ffffff;
    margin-right: 10px;
}

.btn-login:hover {
    color: var(--gold);
}

.btn-register {
    background: var(--gold);
    color: #111111;
    box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}

.btn-register:hover {
    background: #e6c855;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5% 80px 5%;
    background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--green-action);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-large {
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-download {
    background: var(--green-action);
    color: white;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.3);
}

.btn-play {
    background: var(--bg-card);
    color: var(--text-main);
    border: 2px solid var(--border-glass);
}

.btn-play:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #FFFFFF;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 75%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(-3deg);
}

/* Glassmorphism App Info */
.app-info-glass {
    margin: -30px 5% 25px 5%;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
}

.stat-item:active {
    transform: translateY(-2px) scale(0.98);
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Section Containers */
.section {
    padding: 25px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Professional Features Layout */
.features-pro-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.features-pro-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.features-pro-left h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111111;
}

.features-pro-left p {
    font-size: 18px;
    color: var(--text-muted);
}

.features-pro-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.pro-feature {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pro-feature:first-child {
    padding-top: 0;
}

.pro-feature:last-child {
    border-bottom: none;
}

.pro-feature:hover .pro-num {
    color: var(--gold);
}

.pro-num {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #cccccc;
    transition: color 0.3s ease;
}

.pro-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #111111;
}

.pro-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Split Content */
.content-split {
    display: flex;
    align-items: center;
    gap: 30px;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 17px;
}

.split-list {
    list-style: none;
    padding: 0;
}

.split-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.split-list li::before {
    content: "✓";
    color: var(--green-action);
    font-weight: bold;
    font-size: 18px;
}

.split-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.split-img {
    max-width: 85%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-glass);
}

/* Payments */
.payments-banner {
    background: linear-gradient(135deg, var(--bg-card), #F1F3F5);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 12px 25px;
    border-radius: 12px;
    background: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #111;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pb-easy { color: #008751; }
.pb-jazz { color: #E31837; }

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--gold-glow);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    position: relative;
    outline: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide default arrow in webkit */
}

/* Custom Plus/Minus Icon */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-glass);
    color: var(--gold);
    background: #FFFFFF;
}

.faq-content {
    padding: 25px 30px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    background: #F8F9FA;
    border-top: 1px solid rgba(0,0,0,0.02);
}

/* Footer */
footer {
    background: #FFFFFF;
    padding: 25px 5%;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

footer p {
    color: var(--text-muted);
}

/* SEO Article Styles */
.seo-article-container {
    background: #FFFFFF;
    padding: 60px 5%;
    border-top: 1px solid var(--border-glass);
}

.seo-article {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
}

.seo-article h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 30px;
    line-height: 1.2;
}

.seo-article h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    color: #111111;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: var(--gold);
    margin-top: 40px;
    margin-bottom: 15px;
}

.seo-article p {
    margin-bottom: 20px;
}

/* SEO Feature Cards */
.seo-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.seo-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    cursor: pointer;
    overflow: hidden;
}

.seo-feature-icon {
    font-size: 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 196, 48, 0.05));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.seo-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.seo-feature-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    color: #111111;
}

.seo-feature-content .feature-text {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: #555555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Features Grid Section Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-top: 0;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Games Grid Premium Styles */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.game-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4c430);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.game-card:hover::after {
    transform: scaleX(1);
}

.game-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 196, 48, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    
    /* Pop-up hover effect */
    opacity: 0;
    transform: scale(0) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover .game-icon {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.game-title {
    font-size: 21px;
    font-weight: 800;
    color: #111;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.game-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.game-badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-skill { background: #1a1a1a; color: #fff; }
.badge-instant { background: rgba(212, 175, 55, 0.15); color: #b58500; }
.badge-live { background: #e74c3c; color: #fff; }
.badge-highroller { background: #8e44ad; color: #fff; }
.badge-arcade { background: #3498db; color: #fff; }

.seo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    background-color: #FFFFFF;
}

.seo-feature-card:hover .seo-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.seo-feature-card:hover .feature-text {
    -webkit-line-clamp: 10;
}

/* Typewriter Cursor */
.typewriter-cursor {
    font-weight: 300;
    color: var(--gold);
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* SEO Highlight Section (Features Wrap) */
.seo-highlight-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 196, 48, 0.02));
    padding: 60px 5%;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    width: 100%;
}

.seo-highlight-section h2 {
    margin-top: 0;
    border-bottom: none;
    text-align: center;
}

.seo-highlight-section .seo-features-grid {
    margin-bottom: 0;
}

.seo-article strong {
    color: #111111;
}

/* Normal Specs Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.normal-specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
}

.normal-specs-table tr {
    border-bottom: 1px solid #eaeaea;
}

.normal-specs-table tr:last-child {
    border-bottom: none;
}

.normal-specs-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #444;
    vertical-align: middle;
}

.normal-specs-table .label-cell {
    width: 40%;
    background-color: #fbfbfb;
    border-right: 1px solid #eaeaea;
}

.normal-specs-table .label-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #222;
}

.normal-specs-table .label-content svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.normal-specs-table .value-cell {
    width: 60%;
    text-align: left;
    color: #555;
}

.pros-cons-container {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.pros-box, .cons-box {
    flex: 1;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}

.pros-box {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.2);
}

.pros-box h3 {
    color: #28a745;
    margin-top: 0;
}

.cons-box {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.2);
}

.cons-box h3 {
    color: #dc3545;
    margin-top: 0;
}

.pros-cons-container ul {
    padding-left: 20px;
    margin: 0;
}

.pros-cons-container li {
    margin-bottom: 10px;
    color: #444;
}

@media (max-width: 900px) {
    .seo-article h1 { font-size: 32px; }
    .seo-article h2 { font-size: 26px; }
    .pros-cons-container { flex-direction: column; }
}

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-content { margin-bottom: 60px; }
    .hero-buttons { justify-content: center; }
    .content-split, .content-split.reverse { flex-direction: column; gap: 40px; margin-top: 60px; }
    .nav-menu { display: none; }
    .app-info-glass { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .stat-item { min-width: 120px; }
    .hero-title { font-size: 42px; }
    .hero-img { transform: none; }
    .hero-img:hover { transform: none; }
}
