/* ========================================
   CSS Reset and Base Styles
======================================== */

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

/* CSS Custom Properties - Action Color Palette */
:root {
    /* Primary Colors */
    --tactical-red: #C8102E;
    --steel-gray: #4A4A4A;
    --blaze-orange: #F05A28;
    
    /* Secondary Colors */
    --night-black: #1C2526;
    --combat-green: #3D5A2E;
    --signal-yellow: #FFC107;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-action: 'Bebas Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-xxxl: 64px;
    
    /* Containers */
    --container-max-width: 1200px;
    --container-padding: var(--spacing-md);
    
    /* Borders & Shadows */
    --border-radius: 4px;
    --shadow-light: 0 2px 4px rgba(28, 37, 38, 0.1);
    --shadow-medium: 0 4px 8px rgba(28, 37, 38, 0.15);
    --shadow-heavy: 0 8px 16px rgba(28, 37, 38, 0.2);
}

/* Base HTML Elements */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background-color: var(--night-black);
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--tactical-red);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: #e0e0e0;
}

a {
    text-decoration: none;
    color: var(--signal-yellow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Navigation Styles
======================================== */

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
    border-bottom: 2px solid var(--tactical-red);
    backdrop-filter: blur(10px);
}

.nav-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 193, 7, 0.05) 50%, transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(200, 16, 46, 0.1) 2px, rgba(200, 16, 46, 0.1) 4px);
    pointer-events: none;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    z-index: 2;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--signal-yellow);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    cursor: pointer;
    background-color: var(--steel-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blaze-orange);
    border-radius: var(--border-radius);
    opacity: 0;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.2;
}

.nav-link.active {
    background-color: var(--signal-yellow);
    color: var(--night-black);
    font-weight: 600;
}

.nav-back {
    display: flex;
    align-items: center;
}

.back-button {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--signal-yellow);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--tactical-red);
    border-radius: var(--border-radius);
    background: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-button:hover {
    background: var(--tactical-red);
    color: #ffffff;
}

/* ========================================
   Section Container Styles
======================================== */

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxxl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tactical-red);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--signal-yellow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Banner Section Styles
======================================== */

.banner-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://i.pinimg.com/1200x/93/ed/69/93ed6935c970c1a7a45dc077e87bcd58.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 37, 38, 0.8) 0%, rgba(74, 74, 74, 0.6) 100%);
    z-index: 1;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(200, 16, 46, 0.1) 2px, rgba(200, 16, 46, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 193, 7, 0.05) 2px, rgba(255, 193, 7, 0.05) 4px);
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--spacing-xl);
}

.banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--tactical-red);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-tagline {
    font-size: 1.5rem;
    color: var(--signal-yellow);
    margin-bottom: var(--spacing-xxl);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--night-black);
    background-color: var(--blaze-orange);
    padding: var(--spacing-md) var(--spacing-xxl);
    border-radius: var(--border-radius);
    border: 2px solid var(--tactical-red);
    box-shadow: var(--shadow-heavy);
}

.cta-button:hover {
    background-color: var(--tactical-red);
    color: var(--signal-yellow);
    border-color: var(--signal-yellow);
}

.chevron-accents {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.chevron {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.chevron-left {
    left: var(--spacing-xl);
    border-top: 30px solid transparent;
    border-right: 40px solid var(--signal-yellow);
    border-bottom: 30px solid transparent;
}

.chevron-right {
    right: var(--spacing-xl);
    border-top: 30px solid transparent;
    border-left: 40px solid var(--signal-yellow);
    border-bottom: 30px solid transparent;
}

/* ========================================
   About Section Styles - FIXED VISIBILITY
======================================== */

.about-section {
    padding: var(--spacing-xxxl) 0;
    position: relative;
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 90, 46, 0.3) 0%, rgba(28, 37, 38, 0.5) 100%);
    z-index: 1;
}

.about-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(200, 16, 46, 0.05) 20px, rgba(200, 16, 46, 0.05) 40px);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(28, 37, 38, 0.9);
    padding: var(--spacing-xxl);
    border-radius: var(--border-radius);
    border: 2px solid var(--tactical-red);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
}

.about-text:last-child {
    margin-bottom: 0;
}

/* ========================================
   Games Section Styles
======================================== */

.games-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--night-black);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(74, 74, 74, 0.1) 4px, rgba(74, 74, 74, 0.1) 8px),
        repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(74, 74, 74, 0.1) 4px, rgba(74, 74, 74, 0.1) 8px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.game-card {
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
    border: 2px solid var(--tactical-red);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-heavy);
    position: relative;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 193, 7, 0.02) 50%, transparent 60%);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.game-card:hover {
    border-color: var(--signal-yellow);
    box-shadow: 0 8px 16px rgba(255, 193, 7, 0.2);
}

.game-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--tactical-red);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--signal-yellow);
}

.game-play-button {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--blaze-orange);
    color: var(--night-black);
    border: 2px solid var(--tactical-red);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.game-play-button:hover {
    background: var(--tactical-red);
    color: var(--signal-yellow);
    border-color: var(--signal-yellow);
}

/* ========================================
   Game Modal Styles
======================================== */

.game-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 37, 38, 0.95);
    backdrop-filter: blur(5px);
}

.game-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-modal-content {
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
    border: 3px solid var(--tactical-red);
    border-radius: var(--border-radius);
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.game-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--tactical-red);
    border-bottom: 2px solid var(--signal-yellow);
}

.game-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.game-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.game-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.game-modal-body {
    padding: 0;
}

.game-modal-body iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* ========================================
   Why Choose Us Section Styles
======================================== */

.why-choose-section {
    padding: var(--spacing-xxxl) 0;
    background: linear-gradient(135deg, var(--combat-green) 0%, var(--night-black) 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(200, 16, 46, 0.03) 30px, rgba(200, 16, 46, 0.03) 60px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(28, 37, 38, 0.8);
    border: 2px solid var(--steel-gray);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--steel-gray);
    border-radius: 50%;
    border: 2px solid var(--tactical-red);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--signal-yellow);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* ========================================
   Gallery Section Styles
======================================== */

.gallery-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--night-black);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(74, 74, 74, 0.05) 6px, rgba(74, 74, 74, 0.05) 12px),
        repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(74, 74, 74, 0.05) 6px, rgba(74, 74, 74, 0.05) 12px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border: 2px solid var(--steel-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--steel-gray);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 37, 38, 0.9));
    color: var(--tactical-red);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    text-align: center;
}

/* ========================================
   Contact Section Styles
======================================== */

.contact-section {
    padding: var(--spacing-xxxl) 0;
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(240, 90, 40, 0.03) 25px, rgba(240, 90, 40, 0.03) 50px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-form-container {
    background: rgba(28, 37, 38, 0.8);
    border: 2px solid var(--tactical-red);
    border-radius: var(--border-radius);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-heavy);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--signal-yellow);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    padding: var(--spacing-md);
    border: 2px solid var(--steel-gray);
    border-radius: var(--border-radius);
    background: rgba(74, 74, 74, 0.3);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--tactical-red);
    background: rgba(74, 74, 74, 0.5);
}

.form-submit {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--blaze-orange);
    color: var(--night-black);
    border: 2px solid var(--tactical-red);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.form-submit:hover {
    background: var(--tactical-red);
    color: var(--signal-yellow);
    border-color: var(--signal-yellow);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-invitation {
    background: rgba(28, 37, 38, 0.6);
    border: 2px solid var(--steel-gray);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.invitation-title {
    font-family: var(--font-action);
    font-size: 2rem;
    color: var(--tactical-red);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.invitation-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-details {
    background: rgba(28, 37, 38, 0.6);
    border: 2px solid var(--steel-gray);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--steel-gray);
    border-radius: 50%;
    border: 1px solid var(--tactical-red);
}

.contact-text {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--signal-yellow);
    font-size: 1rem;
}

/* ========================================
   Disclaimer Section Styles
======================================== */

.disclaimer-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--night-black);
    position: relative;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(61, 90, 46, 0.1) 3px, rgba(61, 90, 46, 0.1) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(61, 90, 46, 0.1) 3px, rgba(61, 90, 46, 0.1) 6px);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(61, 90, 46, 0.2);
    border: 2px solid var(--combat-green);
    border-radius: var(--border-radius);
    padding: var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

.disclaimer-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: var(--spacing-lg);
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Legal Pages Styles
======================================== */

.legal-page {
    padding-top: 90px;
    min-height: 100vh;
    background: var(--night-black);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--container-padding);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--spacing-xxxl);
    padding: var(--spacing-xxl);
    background: rgba(28, 37, 38, 0.8);
    border: 2px solid var(--tactical-red);
    border-radius: var(--border-radius);
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--tactical-red);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-subtitle {
    font-size: 1.3rem;
    color: var(--signal-yellow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.legal-date {
    font-size: 1rem;
    color: #e0e0e0;
    font-style: italic;
}

.legal-content {
    background: rgba(28, 37, 38, 0.6);
    border: 2px solid var(--steel-gray);
    border-radius: var(--border-radius);
    padding: var(--spacing-xxl);
}

.legal-section {
    margin-bottom: var(--spacing-xxl);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--tactical-red);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--steel-gray);
    padding-bottom: var(--spacing-sm);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: var(--spacing-md);
}

.legal-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: var(--spacing-sm);
}

.legal-section strong {
    color: var(--signal-yellow);
    font-weight: 600;
}

.contact-info {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid var(--tactical-red);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Footer Styles
======================================== */

.footer {
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
    border-top: 2px solid var(--tactical-red);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(200, 16, 46, 0.05) 15px, rgba(200, 16, 46, 0.05) 30px);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-end;
}

.footer-copyright,
.footer-email {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--tactical-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--signal-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    color: var(--tactical-red);
}

.footer-separator {
    color: var(--steel-gray);
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--steel-gray);
    border: 2px solid var(--tactical-red);
    border-radius: 50%;
    box-shadow: var(--shadow-light);
}

.social-link:hover {
    background: var(--tactical-red);
    border-color: var(--signal-yellow);
}

/* ========================================
   Responsive Design - Mobile First
======================================== */

/* Mobile Styles (Default) */
@media (max-width: 767px) {
    /* Typography Adjustments */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--steel-gray) 0%, var(--night-black) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-xxl);
        gap: var(--spacing-xl);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: var(--spacing-md) var(--spacing-xl);
        border: 2px solid var(--tactical-red);
        border-radius: var(--border-radius);
        background: rgba(28, 37, 38, 0.8);
        min-width: 200px;
        text-align: center;
    }
    
    .logo {
        max-width: 120px;
        height: 40px;
    }
    
    /* Banner Mobile */
    .banner-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .banner-tagline {
        font-size: 1.2rem;
    }
    
    .chevron-left,
    .chevron-right {
        display: none;
    }
    
    /* Sections Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Game Modal Mobile */
    .game-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .game-modal-body iframe {
        height: 400px;
    }
    
    /* Legal Pages Mobile */
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    /* Spacing Adjustments */
    :root {
        --container-padding: var(--spacing-md);
    }
    
    .section-container {
        padding: 0 var(--spacing-md);
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .logo {
        max-width: 150px;
        height: 45px;
    }
    
    .banner-title {
        font-size: 3.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-modal-body iframe {
        height: 450px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    :root {
        --container-max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .nav-bar,
    .footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title {
        color: #000;
    }
}