@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');


:root {
    --bg-primary: #0B0F1E;
    --bg-secondary: #10172B;
    --bg-card: #161D33;
    --accent-gold: #E7B854;
    --accent-gold-gradient: linear-gradient(135deg, #F4D58D 0%, #C9952B 100%);
    --accent-aurora-purple: #7C5CFC;
    --accent-aurora-teal: #34D6C0;
    --accent-aurora-gradient: linear-gradient(135deg, var(--accent-aurora-purple) 0%, var(--accent-aurora-teal) 100%);
    --text-primary: #F5F6FA;
    --text-muted: #9AA3BD;
    --border-color: #2A3354;
    --success-color: #34D6C0;
    --error-color: #FF6B6B;
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-speed: 0.3s;
    --transition-curve: cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --box-shadow-glow: 0 8px 32px 0 rgba(124, 92, 252, 0.15);
}

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

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

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


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-aurora-gradient);
    border-radius: 2px;
}

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

p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-curve);
}

a:hover {
    color: var(--text-primary);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-curve);
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gold-gradient);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(231, 184, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 184, 84, 0.5);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(231, 184, 84, 0.1);
    transform: translateY(-2px);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed) var(--transition-curve);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(11, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo svg {
    width: 32px;
    height: 32px;
}

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

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-aurora-gradient);
    transition: width var(--transition-speed) var(--transition-curve);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-speed);
}


.hero {
    position: relative;
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(124, 92, 252, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(52, 214, 192, 0.08) 0%, transparent 50%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-aurora-gradient);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge-18 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid var(--error-color);
    color: var(--error-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-glow);
    border: 1px solid var(--border-color);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}


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

.history-text {
    font-size: 1.05rem;
}

.history-image-stack {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 400px;
    position: relative;
}

.history-img-1, .history-img-2 {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.history-img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 2;
}

.history-img-2 {
    grid-column: 5 / 13;
    grid-row: 4 / 13;
    z-index: 1;
}

.history-image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    transition: all var(--transition-speed) var(--transition-curve);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-aurora-gradient);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-glow);
    border-color: rgba(124, 92, 252, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(124, 92, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-aurora-teal);
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}


.info-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
}

.info-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    position: relative;
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.game-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-curve);
}

.game-card:hover .game-card-bg {
    transform: scale(1.05);
}

.game-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(11, 15, 30, 0.95) 0%, rgba(11, 15, 30, 0.6) 70%, transparent 100%);
    transition: all 0.4s var(--transition-curve);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-card-title {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(231, 184, 84, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 23, 43, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed) var(--transition-curve);
    z-index: 5;
}

.game-card:hover .game-card-overlay,
.game-card.active .game-card-overlay {
    opacity: 1;
    pointer-events: auto;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-number {
    font-weight: 700;
    color: var(--text-primary);
}

.overlay-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 220px;
}


.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.pros-cons-col {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.pros-cons-col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.pros-cons-col.pros h3 {
    color: var(--success-color);
}

.pros-cons-col.cons h3 {
    color: var(--error-color);
}

.pros-cons-col h3 svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.pros-cons-list {
    list-style: none;
}

.pros-cons-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: var(--text-muted);
}

.pros-cons-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.pros li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334D6C0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.cons li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}


.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    text-align: left;
    min-width: 700px;
}

th, td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(16, 23, 43, 0.8);
    font-weight: 600;
    color: var(--text-primary);
}

tr:last-child td {
    border-bottom: none;
}

td {
    color: var(--text-muted);
}

td strong {
    color: var(--text-primary);
}


.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color var(--transition-speed);
}

.faq-item:hover {
    border-color: rgba(124, 92, 252, 0.3);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: transform var(--transition-speed) var(--transition-curve);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) var(--transition-curve);
    background-color: rgba(11, 15, 30, 0.3);
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
}


footer {
    background-color: #080B15;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-brand p {
    font-size: 0.95rem;
    margin: 15px 0 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-speed);
}

.social-link:hover {
    color: var(--bg-primary);
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.map-container {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.payment-methods svg,
.payment-methods img {
    height: 25px;
    fill: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.payment-methods svg:hover,
.payment-methods img:hover {
    opacity: 0.95;
}

.footer-helper-logos img {
    height: 20px !important;
    width: auto !important;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: var(--text-muted);
}

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


.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--box-shadow-glow);
}

.age-gate-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.age-gate-logo svg {
    width: 45px;
    height: 45px;
}

.age-gate-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}


.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 30, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--box-shadow-glow);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.cookie-settings-header h3 {
    margin-bottom: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-option-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option-item:last-child {
    border-bottom: none;
}

.cookie-option-info {
    max-width: 80%;
}

.cookie-option-info h5 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.cookie-option-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #242E4C;
    transition: .4s;
    border-radius: 34px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-primary);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--accent-aurora-gradient);
}

input:checked + .slider::before {
    transform: translateX(24px);
}

input:disabled + .slider {
    opacity: 0.4;
    cursor: not-allowed;
}

.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}


.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-aurora-gradient);
    border: none;
    box-shadow: 0 8px 30px rgba(124, 92, 252, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: transform var(--transition-speed);
}

.chat-button:hover {
    transform: scale(1.08);
}

.chat-button svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform-origin: bottom right;
}

.chat-window.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--accent-aurora-gradient);
    padding: 20px;
    color: var(--bg-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.chat-header-close {
    background: none;
    border: none;
    color: var(--bg-primary);
    font-size: 1.3rem;
    cursor: pointer;
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.chat-message.bot {
    background-color: rgba(42, 51, 84, 0.4);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--accent-aurora-gradient);
    color: var(--bg-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    background-color: rgba(16, 23, 43, 0.5);
}

.chat-input {
    flex-grow: 1;
    background-color: #242E4C;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 10px 18px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent-aurora-purple);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed);
}

.chat-send-btn:hover {
    background-color: #F4D58D;
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


.game-detail-hero {
    padding: 140px 0 60px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(22, 29, 51, 0.4) 0%, var(--bg-primary) 100%);
}

.game-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.game-detail-meta h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.game-specs-quick {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px 0;
}

.spec-badge {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.spec-badge strong {
    color: var(--accent-gold);
}


.game-demo-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--box-shadow-glow);
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.game-demo-screen {
    position: relative;
    background-color: #080B15;
    border-radius: 12px;
    border: 4px solid var(--border-color);
    margin: 20px 0;
    overflow: hidden;
    height: 250px;
}


.game-demo-canvas {
    width: 100%;
    height: 100%;
    background-color: #0B0F1E;
    display: block;
}

.game-demo-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0B0F1E;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.hud-item {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hud-item span {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.hud-item.balance span {
    color: var(--accent-gold);
}

.demo-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}


.detail-content-section {
    padding: 60px 0;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-main-text h3 {
    margin-top: 35px;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.spec-table-box {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.spec-table-box h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(42, 51, 84, 0.4);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    font-weight: 600;
    color: var(--text-primary);
}


.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-aurora-purple);
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-control.is-invalid + .invalid-feedback {
    display: block;
}

.form-success-msg {
    display: none;
    background-color: rgba(52, 214, 192, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}


.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    margin-top: 35px;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.legal-content li {
    margin-bottom: 10px;
}


.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-card, .team-card, .testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all var(--transition-speed);
}

.strategy-card:hover, .team-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-glow);
    border-color: rgba(124, 92, 252, 0.4);
}

.strategy-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 15px;
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    margin: 0 auto 20px auto;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    font-size: 0.9rem;
    color: var(--accent-aurora-teal);
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 15px;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}
