/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF0000;
    --secondary-color: #950101;
    --dark-red: #3D0000;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #333333;
    --light-gray: #CCCCCC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    font-size: 16px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip link focus styles */
.skip-link:focus {
    top: 6px !important;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-login {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-login:hover {
    background-color: var(--dark-red);
}

.btn-register {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-register:hover {
    background-color: var(--secondary-color);
}

.btn-game {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

.btn-game:hover {
    background-color: var(--secondary-color);
}

/* Main Content */
main {
    margin-top: 100px;
    padding-top: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 50%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Features Section */
.features-section {
    background-color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Login and Register Sections */
.login-section,
.register-section {
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Company Story Section */
.company-story {
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-text h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.story-image {
    position: relative;
    text-align: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 4px solid var(--white);
}

.story-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.story-image:hover::before {
    opacity: 0.2;
    transform: scale(1.05);
}

/* Company Story Enhanced Features */
.story-text .highlight {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.story-text .quote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.story-text .quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

/* Company Story Responsive Design */
@media (max-width: 768px) {
    .company-story {
        padding: 3rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-text h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-text p {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .story-image img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .story-text .quote {
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding-left: 0;
        padding-top: 1rem;
        margin: 1.5rem 0;
    }
    
    .story-text .quote::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .company-story {
        padding: 2rem 0;
    }
    
    .story-content {
        gap: 1.5rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .story-image img {
        max-width: 300px;
        border-radius: 15px;
    }
    
    .story-image::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 20px;
    }
    
    .story-text .quote {
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    .story-text .quote::before {
        font-size: 2.5rem;
        top: -8px;
    }
}

/* Mission and Vision Section */
.mission-vision {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    padding: 5rem 0;
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e0e0e0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.mission-card h3::after,
.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    text-align: center;
    margin: 0;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    padding: 5rem 0;
    position: relative;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 2.8rem;
    position: relative;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-item:hover::before {
    opacity: 0.05;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-item > * {
    position: relative;
    z-index: 1;
}

.value-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gray);
    padding: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover img {
    transform: scale(1.1);
    background: var(--primary-color);
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Value Icons Styling */
.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Value Icons Responsive Design */
@media (max-width: 768px) {
    .value-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .value-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 0.6rem;
    }
}

/* Value Icons Animation Enhancements */
.value-icon {
    animation: valueIconFloat 4s ease-in-out infinite;
}

@keyframes valueIconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.value-item:hover .value-icon {
    animation: none;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    padding: 5rem 0;
    position: relative;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-member:hover::before {
    opacity: 0.03;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.team-member > * {
    position: relative;
    z-index: 1;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--gray);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 100%);
    padding: 5rem 0;
    position: relative;
    color: var(--white);
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="0.3" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="40" r="0.4" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.achievements-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.achievements-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--white));
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.achievement-item:hover::before {
    opacity: 0.2;
}

.achievement-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.achievement-item > * {
    position: relative;
    z-index: 1;
}

.achievement-item h3 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-item p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for All Sections */
@media (max-width: 768px) {
    /* Mission Vision Responsive */
    .mission-vision {
        padding: 3rem 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.8rem;
    }
    
    /* Values Section Responsive */
    .values-section {
        padding: 3rem 0;
    }
    
    .values-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding: 0 15px;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
    }
    
    .value-item img {
        width: 70px;
        height: 70px;
        padding: 0.8rem;
    }
    
    /* Team Section Responsive */
    .team-section {
        padding: 3rem 0;
    }
    
    .team-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .team-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding: 0 15px;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    /* Achievements Section Responsive */
    .achievements-section {
        padding: 3rem 0;
    }
    
    .achievements-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .achievement-item {
        padding: 2rem 1rem;
    }
    
    .achievement-item h3 {
        font-size: 2.5rem;
    }
    
    .achievement-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Mission Vision Mobile */
    .mission-vision {
        padding: 2rem 0;
    }
    
    .mission-vision-grid {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Values Section Mobile */
    .values-section {
        padding: 2rem 0;
    }
    
    .values-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
    
    .value-item img {
        width: 60px;
        height: 60px;
        padding: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .value-item h3 {
        font-size: 1.3rem;
    }
    
    .value-item p {
        font-size: 0.95rem;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 2rem 0;
    }
    
    .team-section h2 {
        font-size: 1.8rem;
    }
    
    .team-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
    }
    
    .team-member .position {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .team-member p {
        font-size: 0.95rem;
    }
    
    /* Achievements Section Mobile */
    .achievements-section {
        padding: 2rem 0;
    }
    
    .achievements-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .achievement-item {
        padding: 1.5rem 1rem;
    }
    
    .achievement-item h3 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .achievement-item p {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gamePattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23e0e0e0" opacity="0.2"/><rect x="20" y="20" width="10" height="10" fill="%23e0e0e0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gamePattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.games-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.games-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.game-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card:hover::before {
    opacity: 0.05;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.game-card > * {
    position: relative;
    z-index: 1;
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-bottom: 2px solid var(--light-gray);
}

.game-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.game-card h3 {
    padding: 2rem 2rem 1rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.game-card p {
    padding: 0 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
}

.game-card .btn-game {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card .btn-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    background: var(--secondary-color);
}

/* Games Section Enhanced Features */
.game-card .game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-card .game-stats {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem 1rem;
    border-top: 1px solid var(--light-gray);
    margin-top: 1rem;
}

.game-card .game-stat {
    text-align: center;
    flex: 1;
}

.game-card .game-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.game-card .game-stat .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Games Section Responsive Design */
@media (max-width: 768px) {
    .games-section {
        padding: 3rem 0;
    }
    
    .games-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .game-card {
        border-radius: 20px;
    }
    
    .game-card img {
        height: 200px;
    }
    
    .game-card h3 {
        padding: 1.5rem 1.5rem 1rem;
        font-size: 1.4rem;
    }
    
    .game-card p {
        padding: 0 1.5rem 1rem;
        font-size: 1rem;
    }
    
    .game-card .btn-game {
        margin: 0 1.5rem 1.5rem;
        width: calc(100% - 3rem);
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .game-card .game-stats {
        padding: 0 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-card .game-stat {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 2rem 0;
    }
    
    .games-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .games-grid {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .game-card {
        border-radius: 15px;
    }
    
    .game-card img {
        height: 180px;
    }
    
    .game-card h3 {
        padding: 1rem 1rem 0.5rem;
        font-size: 1.3rem;
    }
    
    .game-card p {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .game-card .btn-game {
        margin: 0 1rem 1rem;
        width: calc(100% - 2rem);
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .game-card .game-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
        order: 3;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-buttons {
        display: none;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        order: 2;
    }

    .nav-buttons.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        order: 1;
        align-self: flex-end;
        margin-bottom: 1rem;
    }
    
    .nav-logo {
        order: 0;
        align-self: center;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    /* Mobile-specific adjustments */
    .container {
        padding: 0 15px;
    }
    
    main {
        margin-top: 120px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid,
    .options-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo img {
        height: 50px;
    }

    section {
        padding: 2rem 0;
    }

    .hero-section {
        padding: 2rem 0;
    }
    
    main {
        margin-top: 110px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading and Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-buttons,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }
    
    .office-location {
        background: var(--white) !important;
        border: 2px solid var(--black) !important;
        page-break-inside: avoid;
    }
    
    .location-info {
        box-shadow: none !important;
        border: 1px solid var(--black) !important;
    }
    
    .location-info .address-section,
    .location-info .hours-section,
    .location-info .emergency-section {
        background: var(--white) !important;
        border-left: 2px solid var(--black) !important;
        page-break-inside: avoid;
    }
    
    .company-story {
        background: var(--white) !important;
        page-break-inside: avoid;
    }
    
    .story-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .story-image img {
        box-shadow: none !important;
        border: 1px solid var(--black) !important;
    }
    
    .story-text .quote {
        border-left: 2px solid var(--black) !important;
        color: var(--black) !important;
    }
    
    .mission-vision,
    .values-section,
    .team-section,
    .achievements-section {
        background: var(--white) !important;
        page-break-inside: avoid;
    }
    
    .mission-card,
    .vision-card,
    .value-item,
    .team-member,
    .achievement-item {
        box-shadow: none !important;
        border: 1px solid var(--black) !important;
        page-break-inside: avoid;
    }
    
    .achievements-section {
        color: var(--black) !important;
    }
    
    .achievement-item h3 {
        color: var(--black) !important;
    }
    
    .achievement-item p {
        color: var(--black) !important;
    }
    
    .games-section {
        background: var(--white) !important;
        page-break-inside: avoid;
    }
    
    .game-card {
        box-shadow: none !important;
        border: 1px solid var(--black) !important;
        page-break-inside: avoid;
    }
    
    .game-card img {
        border-bottom: 1px solid var(--black) !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #FF0000;
        --secondary-color: #CC0000;
        --dark-red: #990000;
        --black: #000000;
        --white: #FFFFFF;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content sections */
.content-section {
    padding: 4rem 0;
}

.policy-content,
.terms-content,
.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2,
.terms-content h2,
.disclaimer-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.policy-content h3,
.terms-content h3,
.disclaimer-content h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.policy-content p,
.terms-content p,
.disclaimer-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-content ul,
.terms-content ul,
.disclaimer-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li,
.terms-content li,
.disclaimer-content li {
    margin-bottom: 0.5rem;
}

.policy-footer,
.terms-footer,
.disclaimer-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray);
    text-align: center;
}

/* Contact page styles */
.contact-info {
    background-color: var(--gray);
    padding: 4rem 0;
}

/* Office Location Section */
.office-location {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    padding: 4rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.office-location h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.office-location h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.location-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.location-info strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.location-info br {
    margin-bottom: 0.5rem;
}

/* Office Location Icons and Enhanced Styling */
.location-info .address-section,
.location-info .hours-section,
.location-info .emergency-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.location-info .address-section:hover,
.location-info .hours-section:hover,
.location-info .emergency-section:hover {
    background: var(--white);
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.location-info .address-section h4,
.location-info .hours-section h4,
.location-info .emergency-section h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info .address-section h4::before,
.location-info .hours-section h4::before,
.location-info .emergency-section h4::before {
    content: '📍';
    font-size: 1.5rem;
}

.location-info .hours-section h4::before {
    content: '🕒';
}

.location-info .emergency-section h4::before {
    content: '🚨';
}

/* Office Location Responsive Design */
@media (max-width: 768px) {
    .office-location {
        padding: 3rem 0;
    }
    
    .office-location h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .location-info {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .location-info p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .location-info .address-section,
    .location-info .hours-section,
    .location-info .emergency-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .location-info .address-section h4,
    .location-info .hours-section h4,
    .location-info .emergency-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .office-location {
        padding: 2rem 0;
    }
    
    .office-location h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .location-info {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .location-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .location-info p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .location-info .address-section,
    .location-info .hours-section,
    .location-info .emergency-section {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .location-info .address-section h4,
    .location-info .hours-section h4,
    .location-info .emergency-section h4 {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    .location-info .address-section h4::before,
    .location-info .hours-section h4::before,
    .location-info .emergency-section h4::before {
        font-size: 1.2rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card img {
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.contact-form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* FAQ page styles */
.faq-categories {
    background-color: var(--gray);
    padding: 4rem 0;
}

.faq-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.faq-categories .category-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-categories .category-card:hover {
    transform: translateY(-5px);
}

.faq-categories .category-card img {
    margin-bottom: 1rem;
}

.faq-categories .category-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Category Icons Styling */
.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Benefit Icons Styling */
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Icon Responsive Design */
@media (max-width: 768px) {
    .category-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .category-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 0.6rem;
    }
    
    .benefit-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        margin-bottom: 0.6rem;
    }
}

/* Icon Animation Enhancements */
.category-icon,
.benefit-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.category-card:hover .category-icon,
.benefit-item:hover .benefit-icon {
    animation: none;
}

.faq-content {
    padding: 4rem 0;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item h3 {
    background: var(--gray);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    color: var(--dark-gray);
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.still-questions {
    background-color: var(--gray);
    padding: 4rem 0;
    text-align: center;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Games page styles */
.featured-game {
    padding: 4rem 0;
    background-color: var(--gray);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.game-features h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.game-features ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.game-features li {
    margin-bottom: 0.5rem;
}

.featured-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.how-to-play {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.game-categories {
    background-color: var(--gray);
    padding: 4rem 0;
}

.game-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-categories .category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-categories .category-card:hover {
    transform: translateY(-5px);
}

.game-categories .category-card img {
    margin-bottom: 1rem;
    border-radius: 5px;
}

.game-categories .category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.popular-games {
    padding: 4rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card.featured {
    border: 3px solid var(--primary-color);
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
    margin: 0;
}

.game-card p {
    padding: 0 1.5rem 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.game-stats {
    padding: 0 1.5rem 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--gray);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.game-benefits {
    background-color: var(--gray);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item img {
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Support page styles */
.support-options {
    padding: 4rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card img {
    margin-bottom: 1rem;
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-support {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-support:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.3);
}

.help-categories {
    background-color: var(--gray);
    padding: 4rem 0;
}

.help-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.help-category ul {
    list-style: none;
    padding: 0;
}

.help-category li {
    margin-bottom: 0.5rem;
}

.help-category a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-category a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.quick-solutions {
    padding: 4rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.solution-item ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.solution-item li {
    margin-bottom: 0.5rem;
}

.solution-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.solution-item a:hover {
    text-decoration: underline;
}

.support-team {
    background-color: var(--gray);
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.response-times {
    padding: 4rem 0;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.time-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.time-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.time-item .time {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-support {
    background-color: var(--gray);
    padding: 4rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* 404 page styles */
.error-section {
    padding: 6rem 0 4rem;
    text-align: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.error-text h1 {
    font-size: 6rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.error-text h2 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin: 1rem 0;
}

.error-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-links-section {
    background-color: var(--gray);
    padding: 4rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
}

.quick-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-content,
    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-text h2,
    .error-text h1 {
        text-align: center;
    }
    
    .featured-buttons {
        justify-content: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .error-text h1 {
        font-size: 4rem;
    }
    
    .times-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-buttons,
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error states */
.error {
    border-color: var(--primary-color) !important;
}

.error-message {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success states */
.success {
    border-color: #28a745 !important;
}

.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 