/*
Theme Name: GTASA Pro Theme
Theme URI: #
Author: GTASA Pro
Author URI: #
Description: Premium GTA San Andreas APK website theme with full SEO content and real game artwork.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: gtasapro
*/

/* ============================================================
   FONTS & RESET
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    --dark:       #0d0d0d;
    --dark2:      #141414;
    --dark3:      #1a1a1a;
    --brown:      #3b2410;
    --orange:     #f97316;
    --orange2:    #fb923c;
    --gold:       #eab308;
    --green:      #22c55e;
    --green2:     #16a34a;
    --white:      #ffffff;
    --gray:       #9ca3af;
    --light-bg:   #f9fafb;
    --border:     rgba(255,255,255,0.08);
    --font-main:  'Inter', sans-serif;
    --font-title: 'Oswald', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.7;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1000 100%);
    border-bottom: 1px solid rgba(249,115,22,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* CSS Logo */
.site-logo-link,
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(249,115,22,0.5);
    flex-shrink: 0;
}

.logo-gta {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1 {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.logo-line2 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 0.3rem;
    list-style: none;
}

.main-nav a {
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a:hover {
    color: var(--orange);
    background: rgba(249,115,22,0.1);
}

.header-cta {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34,197,94,0.5);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a0a00 40%, #2d1500 100%);
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left { flex: 1.2; }

/* GTA CSS Title */
.gta-title-block { margin-bottom: 2rem; }

.gta-text-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.gta-main {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.gta-sub {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.gta-tag {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    border-top: 2px solid var(--orange);
    padding-top: 0.4rem;
}

.hero-desc {
    color: #d1d5db;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 580px;
}

/* Download Button */
.download-btn-wrap { margin-bottom: 2.5rem; }

.btn-download-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(34,197,94,0.35);
    transition: all 0.3s;
}

.btn-download-hero i { font-size: 1.6rem; margin-bottom: 2px; }

.btn-download-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34,197,94,0.5);
}

.btn-sub {
    font-size: 0.8rem;
    font-family: var(--font-main);
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 1px;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem;
    transition: border-color 0.3s;
}

.spec-item:hover { border-color: rgba(249,115,22,0.3); }

.spec-item > i {
    font-size: 1.4rem;
    color: var(--green);
    background: rgba(34,197,94,0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-item div { display: flex; flex-direction: column; }
.spec-item strong { font-size: 0.8rem; color: #9ca3af; }
.spec-item span { font-size: 0.85rem; font-weight: 600; color: #fff; }

/* Hero Right */
.hero-right {
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GTA Poster Image */
.gta-poster-wrap {
    position: relative;
    display: inline-block;
    border-radius: 36px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.gta-poster-wrap:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.8),
        0 0 30px rgba(249,115,22,0.5),
        0 0 60px rgba(249,115,22,0.25),
        0 0 100px rgba(234,179,8,0.15),
        0 0 0 2px rgba(249,115,22,0.4);
}

/* Edge glow overlay on hover */
.gta-poster-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(249,115,22,0.6), rgba(234,179,8,0.3), rgba(249,115,22,0.6)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gta-poster-wrap:hover::after {
    opacity: 1;
}

.gta-poster-img {
    display: block;
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 36px;
}

.phone-screen-content {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

/* CSS GTA Phone Art */
.gta-phone-art {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    background:
        radial-gradient(circle at 20% 80%, rgba(120,0,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,100,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249,115,22,0.05) 0%, transparent 70%),
        linear-gradient(180deg, #050010 0%, #100030 50%, #050010 100%);
}

.gta-art-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.gta-art-stars span {
    position: absolute;
    color: #fff;
    animation: twinkle 3s infinite alternate;
    font-size: 0.7rem;
    opacity: 0.6;
}
.gta-art-stars span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.gta-art-stars span:nth-child(2) { top: 20%; right: 10%; animation-delay: 0.5s; color: var(--orange); }
.gta-art-stars span:nth-child(3) { top: 45%; left: 5%; animation-delay: 1s; }
.gta-art-stars span:nth-child(4) { top: 60%; right: 8%; animation-delay: 1.5s; color: #a78bfa; }
.gta-art-stars span:nth-child(5) { top: 75%; left: 20%; animation-delay: 0.8s; color: var(--gold); }
.gta-art-stars span:nth-child(6) { top: 85%; right: 20%; animation-delay: 1.2s; }

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.gta-art-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.95;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.gta-l1, .gta-l2, .gta-l3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2.8rem;
    background: linear-gradient(180deg, #fbbf24 0%, #f97316 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(0,0,0,0.5);
    filter: drop-shadow(0 2px 4px rgba(249,115,22,0.8));
}

.gta-art-sa {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    border-top: 1px solid rgba(249,115,22,0.5);
    border-bottom: 1px solid rgba(249,115,22,0.5);
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(249,115,22,0.5);
    position: relative;
    z-index: 1;
}

.gta-art-chars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.char {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(249,115,22,0.4));
}

.char-center { font-size: 3rem; transform: translateY(-5px); }

.gta-art-badge {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #000;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 0.3rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(249,115,22,0.5);
}

.gta-art-ver {
    color: #9ca3af;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.gta-art-tap {
    color: var(--orange);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    animation: blink 1.5s infinite;
    position: relative;
    z-index: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================================
   CONTENT AREA (White)
============================================================ */
.content-area {
    background: #ffffff;
    color: #111827;
    padding: 4rem 2rem;
}

.section-block {
    max-width: 1100px;
    margin: 0 auto 5rem auto;
}

.section-heading {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-sub {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.pill-title {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    margin: 0 auto 2rem auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Pros & Cons */
.pros-cons-section .section-heading { margin-bottom: 0.5rem; }

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

.pros-card, .cons-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
}

.pros-card { border-color: #22c55e; }
.cons-card { border-color: #ef4444; }

.pros-card h3 {
    background: #22c55e;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cons-card h3 {
    background: #ef4444;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 1.5rem;
    background: #fafafa;
}

.pros-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0fdf4;
    color: #166534;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}
.pros-card li::before { content: "✓"; position: absolute; left: 0; color: #22c55e; font-weight: 700; }

.cons-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #fef2f2;
    color: #991b1b;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}
.cons-card li::before { content: "✗"; position: absolute; left: 0; color: #ef4444; font-weight: 700; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feat-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 12px 30px rgba(249,115,22,0.1);
}

.feat-card > i {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.7rem;
}

.feat-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Comparison Table */
.table-wrap { overflow-x: auto; margin-top: 2rem; }

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.compare-table th {
    background: #111;
    color: #fff;
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1rem;
}

.compare-table td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.compare-table tr:hover { background: #fafafa; }
.compare-table .yes { color: #16a34a; font-weight: 600; }
.compare-table .no { color: #ef4444; font-weight: 600; }

/* SEO Articles */
.seo-article p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 1.2rem;
}

.install-steps {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.install-steps li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 1rem;
}

/* Issues Grid */
.issues-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.issue-card {
    background: #fef9f0;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 1.5rem;
}

.issue-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.issue-card p {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
}

/* Hidden SEO H1 */
.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a0a00 100%);
    border-top: 1px solid rgba(249,115,22,0.2);
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-logo-link { margin-bottom: 1.5rem; }

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(249,115,22,0.3);
}

.footer-links-col h4 {
    color: var(--orange);
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(249,115,22,0.2);
}

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

.footer-links-col li { margin-bottom: 0.7rem; }

.footer-links-col a {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 100%;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #6b7280;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

/* ============================================================
   SEO MEGA ARTICLE STYLES
============================================================ */
.seo-mega-article { border-top: 3px solid #f3f4f6; padding-top: 4rem; }

.seo-article-body { max-width: 900px; margin: 0 auto; }

.seo-article-body h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.seo-article-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.seo-article-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 1.2rem;
}

.seo-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.seo-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f9fafb;
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
}

.seo-ordered-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-ordered-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f9fafb;
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
}

/* Cheat Codes Grid */
.cheat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.cheat-card {
    background: #111;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cheat-name {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.cheat-code {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
}

/* FAQ */
.faq-list { margin-top: 1.5rem; }

.faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h4 { color: #111; font-size: 1rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.95rem; color: #4b5563; margin: 0; line-height: 1.7; }

.req-table-wrap { overflow-x: auto; margin: 1.5rem 0; }

/* ============================================================
   MOBILE RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .hero-inner { gap: 2rem; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {

    /* Header */
    .header-inner {
        flex-wrap: wrap;
        padding: 0.7rem 1rem;
        gap: 0.5rem;
    }

    .main-nav { display: none; }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }

    /* Hero */
    .hero-section { padding: 3rem 1.2rem 2.5rem; }

    .hero-inner {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .hero-left { width: 100%; }

    .gta-sub { font-size: 2.4rem; }

    .hero-desc { font-size: 0.95rem; }

    .btn-download-hero {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }

    .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }

    .spec-item { padding: 0.6rem; }

    .gta-poster-img {
        width: 240px;
        height: 480px;
    }

    /* Content area */
    .content-area { padding: 2.5rem 1.2rem; }

    .section-heading { font-size: 1.5rem; }

    .pros-cons-grid { grid-template-columns: 1fr; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .cheat-grid { grid-template-columns: repeat(2, 1fr); }

    .issues-list { grid-template-columns: 1fr; }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.2rem;
    }

    .footer-bottom-links { justify-content: center; }

    .footer-social { justify-content: center; }

    /* SEO Article */
    .seo-article-body h3 { font-size: 1.2rem; }

    .compare-table th, .compare-table td { padding: 0.7rem 0.8rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .gta-sub { font-size: 2rem; }
    .gta-tag { font-size: 1.2rem; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cheat-grid { grid-template-columns: 1fr; }
    .gta-poster-img { width: 200px; height: 400px; }
    .logo-line2 { font-size: 1.1rem; }
    .logo-badge { width: 42px; height: 42px; }
    .logo-gta { font-size: 0.9rem; }
    .seo-list li, .seo-ordered-list li { font-size: 0.95rem; }
    .faq-item { padding: 1rem; }
    .pros-cons-grid { grid-template-columns: 1fr; gap: 1rem; }
    .section-heading { font-size: 1.3rem; }
}
