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

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #ffffff 0%, #ffeaea 100%);
    min-height: 100vh;
    

}

.main {
background-image: url(/wp-content/themes/techfile_nsf4oki4/assets/images/bcg.webp);
    background-position: center top;
    background-size: cover;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9em;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept, .btn-learn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-accept:hover, .btn-learn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Crosshair Components */
.crosshair, .crosshair-large {
    position: relative;
    display: inline-block;
}

.crosshair {
    width: 24px;
    height: 24px;
}

.crosshair-large {
    width: 120px;
    height: 120px;
}

.crosshair-inner, .crosshair-inner-large {
    position: absolute;
    background: #e53e3e;
}

.crosshair-inner {
    width: 2px;
    height: 24px;
    left: 11px;
    top: 0;
}

.crosshair-inner::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #e53e3e;
    left: -11px;
    top: 11px;
}

.crosshair-inner::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #e53e3e;
    border-radius: 50%;
    left: -11px;
    top: 0;
    background: transparent;
}

.crosshair-inner-large {
    width: 4px;
    height: 120px;
    left: 58px;
    top: 0;
}

.crosshair-inner-large::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: #e53e3e;
    left: -58px;
    top: 58px;
}

.crosshair-inner-large::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid #e53e3e;
    border-radius: 50%;
    left: -58px;
    top: 0;
    background: transparent;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
}

.header.with-cookie {
    top: 120px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.logo img {
    width: 35px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: #e53e3e;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    margin-top: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
   
    gap: 60px;
 
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-title {
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.highlight {
    color: #333;
}

.highlight-red {
    color: #e53e3e;
}

.hero-right {
    max-width: 530px;
    align-self: flex-end;
    margin-left: 20px;
}

.hero-description {
    font-size: 1em;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 30px;
    
}

.cta-button {
    border: 1px solid #D11313;
background: linear-gradient(90deg, #EEE 0%, #D11313 100%);
box-shadow: 0 4px 4px 0 rgba(209, 19, 19, 0.50) inset;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    text-decoration: none;
}

.cta-button:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
}

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

.hero-subtitle {
    font-size: 1.1em;
    font-weight: 600;
}

/* Inside torvantax Section */
.inside {
    padding: 100px 0;
    
}

.section-title {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #333;
}

.inside-content {
    max-width: 840px;
    margin: 0 auto;
}

.inside-description, .inside-final {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #666;
}

.inside-highlight {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

/* What Makes Different Section */
.what-makes-different {
    padding: 100px 0;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.crosshair-section {
    justify-self: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    
    padding: 20px;
    border-radius: 8px;
   border: 1px solid #D11313;
background: rgba(239, 239, 239, 0.40);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card {
    border: 1px solid #D11313;
background: linear-gradient(90deg, #EEE 0%, #D11313 100%);
box-shadow: 0 4px 4px 0 rgba(209, 19, 19, 0.50) inset;
   
}

.highlight-card .feature-number {
    
}

.feature-number {
    font-size: 2em;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.85em;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

/* Landscape of Genres Section */
.landscape-genres {
    padding: 100px 0;
   
}

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

.genres-description, .genres-highlight, .genres-final {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #666;
}

.genres-highlight {
    color: #333;
    font-weight: 600;
}

/* Footer */
.footer {
    border: 1px solid #D11313;
background: linear-gradient(90deg, #EEE 0%, #D11313 100%);
box-shadow: 0 4px 4px 0 rgba(209, 19, 19, 0.50) inset;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



.footer-brand .crosshair-inner,
.footer-brand .crosshair-inner::before,
.footer-brand .crosshair-inner::after {
    background: white;
    border-color: white;
}

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

.footer-info p {
    margin-bottom: 5px;
    font-size: 0.9em;
    
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: #000;
    transition: opacity 0.3s ease;
    width: 43px;
    height: 43px;
}

.footer-social a img {
    width: 100%;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 0.8em;
  
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    padding: 60px 0;
}

.game-item {
    width: 100%;
}

.game-item img {
    width: 100%;
    display: block;
}

.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.div2 {
    grid-column-start: 3;
}

.div3 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.div4 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 1;
}

.div5 {
    grid-column-start: 6;
    grid-row-start: 1;
}

.div6 {
    grid-column-start: 6;
    grid-row-start: 2;
}

.page-image {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-bottom: 30px;
    display: block;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-title {
        font-size: 3em;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-header {
        grid-template-columns: 1fr;
   
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
       
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
    .games-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .game-item {
        flex: 0 1 47%;
    }
}

@media (max-width: 480px) {
.main {
    background-image: url(/wp-content/themes/techfile_nsf4oki4/assets/images/m-bcg.webp);
    background-position: center top;
    background-size: cover;
}

    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .crosshair-large {
        width: 80px;
        height: 80px;
    }
    
    .crosshair-inner-large {
        width: 3px;
        height: 80px;
        left: 38.5px;
    }
    
    .crosshair-inner-large::before {
        width: 80px;
        height: 3px;
        left: -38.5px;
        top: 38.5px;
    }
    
    .crosshair-inner-large::after {
        width: 80px;
        height: 80px;
        border-width: 3px;
        left: -38.5px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept, .btn-learn {
        width: 100%;
        text-align: center;
    }
}

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

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                