:root {
    --primary-red: #d50000;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-main: #ffffff;
    --text-secondary: #b0b0b0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Background Effect */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2a0000 0%, #000000 100%);
    z-index: -1;
}

.container {
    max-width: 600px; /* Focus on mobile view width */
    margin: 0 auto;
    padding: 20px;
}

/* Header Image Styling */
.header-image {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(213, 0, 0, 0.3);
}

.header-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-bottom: 4px solid var(--primary-red);
}

/* Content Styling */
.content-wrapper {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary-red);
    font-size: 2.5rem;
}

.game-info-badge {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.game-info-badge span {
    background: #2a2a2a;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #444;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    color: #ddd;
}

/* BUTTON STYLING - CRITICAL FOR CONVERSION */
.cta-container {
    text-align: center;
    margin: 30px 0;
}

.download-btn {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #ff1a1a 0%, #b30000 100%);
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(213, 0, 0, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #ff4d4d;
    animation: pulse 2s infinite;
}

.download-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(213, 0, 0, 0.8);
}

.btn-icon {
    margin-right: 10px;
}

.btn-sub {
    display: block;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    margin-top: 5px;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(213, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(213, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(213, 0, 0, 0); }
}

/* Details Section */
.details-section h2, .details-section h3 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    margin-top: 25px;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-red);
    padding-left: 10px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.info-table td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.info-table tr:first-child td {
    border-top: 1px solid #333;
}

.info-table td:first-child {
    font-weight: bold;
    color: var(--text-secondary);
    width: 40%;
}

.seo-text p, .seo-text ul {
    margin-bottom: 15px;
    color: #ccc;
}

.seo-text ul {
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    border-top: 1px solid #222;
}