/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

/* Language Navigation Header */
.language-nav {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.language-label {
    color: #d4af37;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
}

.language-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.lang-link {
    color: #fff;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-1px);
}

.lang-link.active {
    background: #d4af37;
    color: #000;
    font-weight: bold;
}

/* Page Title */
.page-title-container {
    max-width: 1000px;
    margin: 30px auto 20px auto;
    padding: 0 15px;
    text-align: center;
}

.page-title {
    font-size: 36px;
    color: #d4af37;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

/* Game Container */
.game-container {
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #000;
    position: relative;
    height: 600px;
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Review Content Styling */
.review-css {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.review-css h2 {
    color: #2c3e50;
    font-size: 28px;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #d4af37;
    font-weight: 700;
}

.review-css h3 {
    color: #34495e;
    font-size: 22px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.review-css p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.review-css strong {
    color: #d4af37;
    font-weight: 700;
}

/* Table Styling */
.review-css table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 15px; /* One size smaller than base font */
}

.review-css th,
.review-css td {
    padding: 4px 8px; /* Very small padding for compact rows */
    text-align: left;
    border-bottom: 1px solid #ddd;
    line-height: 1.3; /* Compact line height */
}

.review-css th {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.review-css td:first-child {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}

.review-css tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Image Styling */
.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 20px 0 10px 0;
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.image-caption {
    font-style: italic;
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
}

/* Lists */
.review-css ol,
.review-css ul {
    margin: 15px 0 15px 30px;
}

.review-css li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FAQ Section Styling */
.faq-css {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.faq-css h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #d4af37;
}

.faq-css > div {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.faq-css > div:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-css h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-css p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .game-container {
        height: 400px;
    }
    
    .game-container iframe {
        height: 400px;
    }
    
    .review-css,
    .faq-css {
        margin: 15px;
        padding: 20px;
    }
    
    .review-css h2 {
        font-size: 24px;
    }
    
    .review-css h3 {
        font-size: 20px;
    }
    
    .review-css p {
        font-size: 15px;
        text-align: left;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .language-links {
        justify-content: center;
    }
    
    .lang-link {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .review-css table {
        font-size: 13px;
    }
    
    .review-css th,
    .review-css td {
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .page-title-container {
        margin: 20px auto 15px auto;
    }
    
    .game-container {
        height: 350px;
    }
    
    .game-container iframe {
        height: 350px;
    }
    
    .review-css,
    .faq-css {
        margin: 10px;
        padding: 15px;
    }
    
    .review-css h2 {
        font-size: 22px;
    }
    
    .review-css h3 {
        font-size: 18px;
    }
    
    .review-css p {
        font-size: 14px;
    }
    
    .language-links {
        gap: 4px;
    }
    
    .lang-link {
        font-size: 10px;
        padding: 4px 6px;
    }
    
    .review-css table {
        font-size: 11px;
    }
    
    .review-css th,
    .review-css td {
        padding: 2px 4px;
    }
    
    .faq-css > div {
        padding: 15px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Game Placeholder Styles */
.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.placeholder-content {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 600px;
}

.placeholder-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.placeholder-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
    line-height: 1.6;
}

.placeholder-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-play-demo,
.btn-play-real {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-play-demo {
    background: linear-gradient(135deg, #d4af37, #f4e04d);
    color: #000;
}

.btn-play-demo:hover {
    background: linear-gradient(135deg, #f4e04d, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-play-real {
    background: linear-gradient(135deg, #00c851, #00ff88);
    color: #000;
}

.btn-play-real:hover {
    background: linear-gradient(135deg, #00ff88, #00c851);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

.btn-icon {
    font-size: 24px;
}

/* Mobile adjustments for placeholder */
@media (max-width: 768px) {
    .placeholder-content h2 {
        font-size: 28px;
    }
    
    .placeholder-content p {
        font-size: 16px;
    }
    
    .btn-play-demo,
    .btn-play-real {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .placeholder-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .placeholder-content {
        padding: 20px;
    }
    
    .placeholder-content h2 {
        font-size: 24px;
    }
    
    .placeholder-content p {
        font-size: 14px;
    }
    
    .btn-play-demo,
    .btn-play-real {
        font-size: 14px;
        padding: 10px 20px;
    }
}