
:root {
   
    --bg-body: #f3f5f9;       
    --bg-card: #ffffff;      
    
    --primary: #00b894;       
    --primary-hover: #00a884; 
    --accent: #6c5ce7;        
    
    --text-main: #2d3436;    
    --text-body: #555555;     
    --text-light: #b2bec3;   
    
    --radius: 12px;           
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* --- 2. Basic Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.8; 
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo { font-size: 26px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.badge { background: var(--accent); color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }

.nav-link { margin-left: 30px; font-weight: 700; font-size: 16px; color: #666; }
.nav-link:hover { color: var(--primary); }


.game-section {
    background: #fff; 
    padding: 30px 0 25px 0;
    text-align: center;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}


.game-frame-container {
    background: #000;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15); 
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.game-controls {
    background: #fff;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    border-top: none;
    font-weight: 600;
}

.control-tip strong { color: var(--accent); }

.btn-steam {
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}
.btn-steam:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(108, 92, 231, 0.5); }



.main-content-section {
    padding: 0 0 80px 0;
    background: var(--bg-body); 
}


.content-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 25px; 
}

.doc-header { text-align: center; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #eee; }
.doc-header h1 { font-size: 2.4rem; margin-bottom: 10px; margin-top: 0; }
.rating { color: #f1c40f; font-weight: 700; font-size: 16px; }

.doc-block { margin-bottom: 40px; }

.doc-block h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid var(--primary);
    line-height: 1.2;
}

.doc-block:first-child h2 { margin-top: 0; }

.doc-block h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-top: 25px;
    margin-bottom: 10px;
}

.doc-block p { font-size: 1.1rem; margin-bottom: 15px; }

.feature-list { margin-left: 20px; font-size: 1.1rem; line-height: 2; color: #444; }

.divider { border: 0; border-top: 1px solid #eee; margin: 40px 0; }

.image-placeholders-vertical {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.game-screenshot {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.empty-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.pros-box { background: #e8f5e9; padding: 25px; border-radius: 12px; border: 1px solid #c8e6c9; }
.cons-box { background: #ffebee; padding: 25px; border-radius: 12px; border: 1px solid #ffcdd2; }

.pros-box h4 { color: #2e7d32; margin-bottom: 15px; }
.cons-box h4 { color: #c62828; margin-bottom: 15px; }

.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li, .cons-box li { margin-bottom: 8px; position: relative; padding-left: 25px; }

.pros-box li::before { content: "✔"; position: absolute; left: 0; color: #2e7d32; font-weight: bold; }
.cons-box li::before { content: "✖"; position: absolute; left: 0; color: #c62828; font-weight: bold; }

.faq-list-flat { display: flex; flex-direction: column; gap: 25px; }
.faq-item-flat h3 { font-size: 1.25rem; margin-bottom: 8px; margin-top: 0; color: var(--text-main); }
.faq-item-flat h3::before { content: "Q."; color: var(--primary); margin-right: 8px; font-weight: 800; }
.faq-item-flat p { margin-bottom: 0; font-size: 1.05rem; padding-left: 28px; }

.site-footer {
    background: #2d3436;
    color: #b2bec3;
    text-align: center;
    padding: 40px 0;
    font-size: 13px;
    margin-top: 0;
}

.site-footer strong { color: #fff; }

.copyright-text {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.disclaimer-text { color: #a4b0be; }
.desktop-separator { margin: 0 8px; color: #636e72; }

.footer-links {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    display: block;
}

.footer-links a {
    color: #dfe6e9;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }
.separator { color: #636e72; }

/* --- 10. Mobile Adaptation --- */
@media (max-width: 768px) {
    .content-card { padding: 25px; margin-top: 20px; }
    .pros-cons-container { grid-template-columns: 1fr; }
    .game-controls { flex-direction: column; gap: 15px; text-align: center; }
    .header-content { flex-direction: column; gap: 10px; }
    .nav-link { margin: 0 10px; }
    .btn-steam { width: 100%; justify-content: center; }
    
    .desktop-separator { display: none; }
    .disclaimer-text { display: block; margin-top: 5px; }
}