:root {
    --primary-color: #f7931e;
    --button-color: #ff6b35;
    --button-demo-color: #ff6b35;
    --background-color: #1a1f3a;
    --heading-faq-others-color: black;
    --text-color: white;
    --content-bg: #f8f9fa;
    --content-text: #333;
    --footer-bg: #2c3e50;
    --footer-text: white;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 1000;
}

.language-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-current:hover {
    border-color: #999;
    background: #f9f9f9;
}

.flag-icon {
    font-size: 20px;
    line-height: 1;
}

.lang-code {
    font-weight: 600;
    color: #333;
}

.arrow {
    font-size: 10px;
    color: #666;
    transition: transform 0.3s;
}

.lang-current.active .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: #f0f0f0;
    font-weight: 600;
}

.lang-name {
    font-size: 14px;
}

.logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-top: -20px;
    margin-bottom: -20px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px 40px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-game-container {
    flex: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-window {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-window.demo-active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 85%;
    max-width: 90%;
    border-radius: 12px;
    padding: 0;
    z-index: 9999;
    background: rgba(23, 11, 133, 0.98);
}

.game-screenshot-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.game-window.demo-active .game-screenshot-container {
    display: none;
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-window.demo-active .game-screenshot {
    display: none;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    z-index: 2;
}

.game-window.demo-active .game-buttons {
    display: none !important;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--button-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 27, 6, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--button-demo-color);
}

.btn-secondary:hover {
    background: rgba(214, 27, 6, 0.2);
    transform: translateY(-2px);
}

.demo-iframe-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.game-window.demo-active .demo-iframe-container {
    display: block !important;
    z-index: 1;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000;
}

.demo-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--button-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.game-window.demo-active .demo-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-close-btn:hover {
    transform: scale(1.1);
    background: #ff2211;
}

/* Info Table */
.hero-info-table {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-table-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid rgba(23, 11, 133, 0.1);
}

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

.info-table td {
    padding: 12px 8px;
    color: var(--content-text);
}

.info-table .label {
    font-weight: 600;
    color: #555;
    width: 40%;
}

.info-table .value {
    color: #222;
    font-weight: 500;
}

.info-table .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Main Content */
.main-content {
    background: var(--content-bg);
    color: var(--content-text);
    padding: 60px 40px;
    margin: 0;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    color: var(--heading-faq-others-color);
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 20px 0;
}

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

.footer-logos {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: transparent;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.logo-placeholder {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
}

.footer-text {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-text p {
    margin: 10px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .hero {
        flex-direction: column;
        padding: 20px 15px 40px 15px;
    }

    .hero-game-container {
        max-width: 100%;
        width: 100%;
    }

    .game-window {
        padding: 15px;
    }
	
	.game-window.demo-active {
        width: 95%;
        height: 90%;
        border-radius: 8px;
    }
	
	.game-screenshot {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .game-screenshot-container {
        aspect-ratio: 4/3;
        margin-bottom: 0;
    }

    .game-buttons {
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .hero-info-table {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .info-table-title {
        font-size: 1.5rem;
    }

    .info-table td {
        padding: 10px 5px;
        font-size: 0.95rem;
    }

    .main-content {
        padding: 40px 20px;
    }

    .main-content h1 { font-size: 2rem; }
    .main-content h2 { font-size: 1.75rem; }
    .main-content h3 { font-size: 1.5rem; }

    .main-content table {
        font-size: 0.9rem;
    }

    .main-content table img {
        width: 120px;
        height: 120px;
    }

    .main-content th,
    .main-content td {
        padding: 10px;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.active {
        padding: 15px 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .logos-container {
        gap: 20px;
    }

    .logo-item {
        min-width: 100px;
        height: 50px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .info-table-title {
        font-size: 1.3rem;
    }

    .info-table td {
        font-size: 0.9rem;
    }

    .main-content {
        padding: 30px 15px;
    }

    .main-content h1 { font-size: 1.75rem; }
    .main-content p,
    .main-content li { font-size: 1rem; }

    .logos-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo-item {
        width: 100%;
        max-width: 200px;
    }
}-others-color);
    margin: 30px 0 20px 0;
    font-weight: bold;
}

.main-content h1 { font-size: 2.5rem; }
.main-content h2 { font-size: 2rem; }
.main-content h3 { font-size: 1.5rem; }
.main-content h4 { font-size: 1.25rem; }

.main-content p {
    margin: 20px 0;
    font-size: 1.1rem;
}

.main-content ul,
.main-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-content table img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.main-content th,
.main-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.main-content th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.main-content tr:hover {
    background: #f5f5f5;
}

.main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content code {
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

/* FAQ */
.faq-title {
    font-size: 2.5rem;
    color: var(--heading-faq-others-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-faq