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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-link {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff6b35;
    transition: width 0.3s ease;
}

/* Ensure navigation consistency across all pages */
.navbar .nav-menu .nav-item .nav-link {
    color: #fff !important;
}

.navbar .nav-menu .nav-item .nav-link:hover,
.navbar .nav-menu .nav-item .nav-link.active {
    color: #ff6b35 !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%), url('images/dying-light-the-beast-promo.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background-color: #ff6b35;
    color: #fff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 107, 53, 0.6);
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: brightness(1.1) contrast(1.1);
}

.hero-image img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 107, 53, 0.9);
    filter: brightness(1.2) contrast(1.2);
}

/* Game Info Section */
.game-info {
    padding: 80px 0;
    background-color: #111;
}

.game-info h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #fff;
    font-size: 1.1rem;
}

/* System Requirements */
.system-requirements {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.system-requirements h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.requirements-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.requirements-card h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.requirements-card ul {
    list-style: none;
}

.requirements-card li {
    color: #fff;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.requirements-card li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
}

/* Blog Section */
.latest-blog {
    padding: 80px 0;
    background-color: #111;
}

.latest-blog h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-content h3 a:hover {
    color: #ff6b35;
}

.blog-content p {
    color: #ccc;
    margin-bottom: 1rem;
}

.blog-date {
    color: #ff6b35;
    font-size: 0.9rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #fff;
    border-bottom-color: #ff6b35;
    transform: translateX(5px);
}

.blog-more {
    text-align: center;
}

/* Videos Section */
.latest-videos {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.latest-videos h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.video-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
}

.video-card h3 {
    color: #fff;
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

.video-card p {
    color: #ccc;
    padding: 0 1.5rem 1.5rem;
}

.video-more {
    text-align: center;
}

/* Game Features */
.game-features {
    padding: 80px 0;
    background-color: #111;
}

.game-features h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.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: #ff6b35;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
}

/* Meteor Effect */
.meteor {
    position: fixed;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #fff);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    animation: meteor 2s linear infinite;
}

@keyframes meteor {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(100vh);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .info-grid,
    .requirements-grid,
    .blog-grid,
    .video-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 15px 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff6b35;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Blog Article Styles */
.blog-article {
    padding: 120px 0 80px;
    background-color: #0a0a0a;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.article-category {
    background-color: #ff6b35;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.article-date,
.read-time {
    color: #999;
}

.article-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-excerpt {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.8;
}

.article-content h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    border-left: 4px solid #ff6b35;
    padding-left: 1rem;
}

.article-content h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.article-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #ddd;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #ddd;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.safe-codes-table {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #333;
}

.safe-codes-table h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.code-item {
    background-color: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.code-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.code-item p {
    margin-bottom: 0.5rem;
    color: #ddd;
}

.code-item strong {
    color: #fff;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: #333;
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #ff6b35;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share p {
    color: #ccc;
    margin: 0;
}

.share-btn {
    background-color: #ff6b35;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #e55a2b;
}

.related-articles {
    padding: 80px 0;
    background-color: #111;
}

.related-articles h3 {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.related-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: brightness(1.1) contrast(1.1);
}

.related-card h4 {
    padding: 1rem;
    margin: 0;
}

.related-card h4 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.related-card h4 a:hover {
    color: #ff6b35;
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background-color: #0a0a0a;
    color: #fff;
}

.legal-content h1 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #333;
}

.legal-section h2 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    color: #ddd;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h3 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #ccc;
    margin: 0;
}

.contact-form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #0a0a0a;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.faq-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #333;
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.additional-resources {
    padding: 80px 0;
    background-color: #111;
}

.additional-resources h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.resource-card h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Video Page Styles */
.videos-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.videos-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-categories {
    padding: 40px 0;
    background-color: #111;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #333;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

.featured-video {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.featured-video h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.featured-video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    color: #999;
    font-size: 0.9rem;
}

.video-grid-section {
    padding: 80px 0;
    background-color: #111;
}

.video-grid-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.video-stats {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.video-stats h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
}

.stat-number {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-categories {
    padding: 40px 0;
    background-color: #111;
}

.blog-posts {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.blog-category {
    background-color: #ff6b35;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-overview {
    padding: 80px 0;
    background-color: #111;
}

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

.overview-text h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-characters {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.story-text h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.story-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.character-list {
    list-style: none;
    padding: 0;
}

.character-list li {
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.character-list li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.history-evolution {
    padding: 80px 0;
    background-color: #111;
}

.history-evolution h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ff6b35;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background-color: #ff6b35;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 0 2rem;
    border: 1px solid #333;
    flex: 1;
}

.timeline-content h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.technical-specs {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.technical-specs h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.spec-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.spec-card h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.spec-card p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
