:root {

    --bg-base: #000000;
    --bg-surface: #0a0a0a;
    --bg-surface-hover: #141414;
    --text-main: #e5e5e5;
    --text-muted: #737373;
    --accent: #dc2626;
    --accent-hover: #ef4444;
    --border: #262626;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto Mono', monospace;
    --radius-lg: 0px;
    --radius-sm: 0px;
        
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}


.tit-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 10; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: #fff; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
a { color: var(--accent); text-decoration: none; transition: 0.2s ease; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }


.tit-header { background: rgba(var(--bg-base), 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); padding: 16px 0; }
.tit-header-inner { display: flex; justify-content: space-between; align-items: center; }
.tit-logo { font-family: var(--font-heading); font-size: 24px; color: #fff; font-weight: 700; display:flex; align-items:center; gap: 8px; letter-spacing: -0.02em; }
.tit-logo span { color: var(--accent); }
.tit-nav { display: flex; gap: 32px; }
.tit-nav a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.tit-nav a:hover { color: #fff; }
.tit-mobile-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }


.tit-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; background: var(--bg-surface); color: var(--text-main); font-family: var(--font-heading); font-weight: 600; border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all 0.2s ease; cursor: pointer; font-size: 1rem; }
.tit-btn:hover { background: var(--bg-surface-hover); border-color: var(--accent); color: #fff; }
.tit-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.tit-btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 4px 12px rgba(0,0,0,0.2); transform: translateY(-1px); }
.tit-btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.tit-btn-full { width: 100%; }


.tit-hero { position: relative; height: 80vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--border); }
.tit-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.tit-hero-slide.active { opacity: 1; z-index: 10; }
.tit-hero-bg { position: absolute; inset: 0; z-index: 1; }
.tit-hero-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; opacity: 0.4; mix-blend-mode: luminosity; }
.tit-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-base) 0%, transparent 60%), linear-gradient(to right, var(--bg-base) 0%, transparent 80%); }
.tit-hero-content { position: relative; z-index: 20; max-width: 700px; }
.tit-tagline { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 32px; font-weight: 400; }
.tit-hero-controls { position: absolute; bottom: 40px; right: 5%; z-index: 30; display: flex; gap: 12px; }
.tit-ctrl-btn { background: var(--bg-surface); border: 1px solid var(--border); color: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s; }
.tit-ctrl-btn:hover { background: var(--accent); border-color: var(--accent); }


.tit-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.tit-section-header { margin-bottom: 60px; max-width: 600px; }
.tit-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.tit-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 48px; align-items: center; }


.tit-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.tit-card:hover { transform: translateY(-4px); border-color: var(--text-muted); }
.tit-card-img { height: 240px; width: 100%; object-fit: cover; border-radius: 0; border-bottom: 1px solid var(--border); }
.tit-card-body { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.tit-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tit-tag { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.tit-card-desc { color: var(--text-muted); margin-bottom: 24px; flex-grow: 1; font-size: 0.95rem; }
.tit-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; color: #fff; font-weight: 600; font-family: var(--font-heading); font-size: 1.25rem; }
.tit-star { color: var(--accent); }


.tit-feature-box { background: var(--bg-surface); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.tit-feature-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); font-size: 24px; }


.tit-game-header { padding: 120px 0 80px; text-align: center; border-bottom: 1px solid var(--border); background: var(--bg-surface); }
.tit-game-img-lg { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 40px; }
.tit-meta-bar { display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.tit-meta-item { display: flex; flex-direction: column; align-items: center; }
.tit-meta-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.tit-meta-val { color: #fff; font-weight: 600; font-family: var(--font-heading); font-size: 1.25rem; }
.tit-content-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; margin: 64px auto; }
.tit-prose p { margin-bottom: 24px; font-size: 1.1rem; color: var(--text-muted); }
.tit-prose h2 { margin-top: 48px; }
.tit-sidebar-box { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 100px; }
.tit-ideal-box { padding: 24px; background: rgba(255,255,255,0.02); border-left: 2px solid var(--accent); margin: 40px 0; font-style: italic; color: var(--text-main); }


.tit-small-list { display: flex; flex-direction: column; gap: 16px; }
.tit-list-item { display: flex; align-items: center; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.tit-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.tit-list-img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.tit-list-title { font-size: 1rem; margin: 0; font-family: var(--font-heading); }


.tit-form-group { margin-bottom: 24px; }
.tit-label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.tit-input { width: 100%; padding: 16px; background: var(--bg-base); border: 1px solid var(--border); color: #fff; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.2s; }
.tit-input:focus { outline: none; border-color: var(--accent); }
.tit-accordion { border-bottom: 1px solid var(--border); }
.tit-acc-btn { width: 100%; text-align: left; padding: 24px 0; background: none; border: none; color: #fff; font-family: var(--font-heading); font-size: 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.tit-acc-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-muted); }
.tit-acc-content p { padding-bottom: 24px; }
.tit-accordion.active .tit-acc-content { max-height: 400px; }
.tit-accordion.active .tit-acc-btn { color: var(--accent); }
.tit-msg-box { margin-top: 24px; padding: 16px; background: rgba(16, 185, 129, 0.1); border: 1px solid #10b981; color: #10b981; border-radius: var(--radius-sm); display: none; }


.tit-footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 80px 0 40px; margin-top: 100px; }
.tit-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.tit-footer-logo { font-family: var(--font-heading); font-size: 24px; color: #fff; font-weight: 700; margin-bottom: 16px; display: block; }
.tit-footer-desc { color: var(--text-muted); font-size: 0.95rem; max-width: 300px; }
.tit-footer h4 { margin-bottom: 24px; font-size: 1.1rem; }
.tit-footer a { display: block; color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; }
.tit-footer a:hover { color: #fff; }
.tit-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 900px) {
    .tit-content-layout { grid-template-columns: 1fr; gap: 40px; }
    .tit-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .tit-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-surface); flex-direction: column; gap: 0; padding: 16px 0; border-bottom: 1px solid var(--border); }
    .tit-nav.active { display: flex; }
    .tit-nav a { padding: 16px 5%; font-size: 1.1rem; border-bottom: 1px solid var(--border); }
    .tit-mobile-btn { display: block; }
    .tit-grid-2 { grid-template-columns: 1fr; }
    .tit-hero-content h1 { font-size: 3rem; }
}



.promo-banners { padding: 80px 0; position: relative; z-index: 10; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 24px; }
.promo-card { position: relative; padding: 50px 30px; border-radius: 0; overflow: hidden; background-size: cover; background-position: center; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 350px; z-index: 1; border: 1px solid var(--border); transition: 0.3s; }
.promo-card::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.8); z-index: -1; transition: 0.3s; }
.promo-card:hover { border-color: var(--accent); }
.promo-card:hover::before { background: rgba(0,0,0,0.6); }
.promo-label { background: var(--accent); color: #fff; font-family: var(--font-heading); font-weight: bold; font-size: 16px; padding: 4px 16px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.promo-card h2 { color: #fff; font-size: 2.5rem; margin-bottom: 30px; max-width: 90%; line-height: 1.1; font-family: var(--font-heading); text-transform: uppercase; }
.promo-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; background: transparent; color: #fff; font-family: var(--font-heading); font-weight: 600; border: 1px solid var(--accent); border-radius: 0; transition: all 0.2s ease; cursor: pointer; font-size: 1.2rem; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.promo-btn:hover { background: var(--accent); border-color: var(--accent); }


.testi-section { position: relative; padding: 100px 0; background-size: cover; background-position: center; background-attachment: fixed; text-align: center; z-index: 1; margin-top: 80px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-section::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.9); z-index: -1; }
.testi-content { max-width: 900px; margin: 0 auto; color: var(--text-main); position: relative; z-index: 10; }
.testi-quote { font-size: 2.8rem; font-weight: bold; margin-bottom: 20px; font-family: var(--font-heading); color: #fff; line-height: 1.2; text-transform: uppercase;}
.testi-body { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; font-style: italic; line-height: 1.6; font-family: var(--font-body); }
.testi-author img { width: 70px; height: 70px; border-radius: 0; border: 2px solid var(--accent); margin: 0 auto 15px; display: block; object-fit: cover; filter: grayscale(100%); transition: 0.3s; }
.testi-author:hover img { filter: grayscale(0%); }
.testi-author h4 { font-size: 1.5rem; margin-bottom: 5px; color: #fff; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }
.testi-author span { color: var(--accent); font-size: 0.9rem; font-family: var(--font-body); text-transform: uppercase; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.testi-dot { width: 30px; height: 4px; border-radius: 0; background: var(--border); cursor: pointer; transition: 0.3s; }
.testi-dot.active { background: var(--accent); }
.testi-dot:hover { background: var(--text-muted); }

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-card { min-height: 250px; padding: 40px 20px; }
    .promo-card h2 { font-size: 2rem; }
    .testi-quote { font-size: 2rem; }
}


.forum-comment-box { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 30px; text-align: left; max-width: 800px; margin: 0 auto; backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.forum-comment-header { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 20px; }
.testi-author-name { font-size: 1.2rem; font-weight: bold; margin: 0; font-family: inherit; color: inherit; }
.testi-author-role { background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; color: #fff; }
.forum-date { color: #aaa; font-size: 0.9rem; margin-left: auto; font-family: sans-serif; font-style: italic; }
.testi-quote { font-size: 1.8rem; margin-bottom: 15px; font-family: inherit; line-height: 1.3;}
.testi-body { font-size: 1.05rem; color: #ddd; line-height: 1.7; font-style: normal; font-family: inherit; }

@media (max-width: 768px) {
    .forum-comment-box { padding: 20px; }
    .forum-comment-header { flex-wrap: wrap; }
    .forum-date { margin-left: 0; width: 100%; margin-top: 10px; }
    .testi-quote { font-size: 1.4rem; }
}


.glitched { position: relative; }
.glitched::before, .glitched::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.glitched::before { left: 2px; text-shadow: -2px 0 #dc2626; clip: rect(24px, 550px, 90px, 0); animation: glitch-anim 0.5s infinite linear alternate-reverse; }
.glitched::after { left: -2px; text-shadow: -2px 0 #00ffff; clip: rect(85px, 550px, 140px, 0); animation: glitch-anim 0.5s infinite linear alternate-reverse; }
@keyframes glitch-anim { 0% { clip: rect(3px, 9999px, 86px, 0); } 20% { clip: rect(23px, 9999px, 12px, 0); } 40% { clip: rect(98px, 9999px, 73px, 0); } 60% { clip: rect(61px, 9999px, 96px, 0); } 80% { clip: rect(4px, 9999px, 34px, 0); } 100% { clip: rect(87px, 9999px, 56px, 0); } }
