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

:root {
    --primary-color: #e900d9;
    --secondary-color: #ff00ff;
    --accent-color: #00ffff;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --gradient-primary: linear-gradient(135deg, #e900d9 0%, #ff00ff 100%);
    --gradient-secondary: linear-gradient(135deg, #00ffff 0%, #e900d9 100%);
    --border-radius: 25px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 0, 217, 0.3);
}

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

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

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

.cookie-content {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cookie-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cookie-content p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FF3BFF;
box-shadow: 0 0 10.9px 0 rgba(0, 0, 0, 0.25);
    z-index: 1000;
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    text-decoration: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow-x: clip;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 689px;
    width: 100%;
}

.hero h1 {
    margin-bottom: 20px;
    font-weight: 600;
    margin-bottom: 60px;
}

.brand-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-description {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.section-number {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    flex-shrink: 0;
}

.hero-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
    font-size: 24px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Games Ticker */
.games-ticker {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 150%;
    height: 40px;
    background: var(--primary-color);
    overflow: hidden;
    transform: translateX(-50%) rotate(-3deg);
    transform-origin: left;
}

.games-ticker-r {
    transform: translateX(-50%) rotate(8deg);
    transform-origin: left;
    bottom: 15%;
}

.games-ticker.bottom {
    position: relative;
    margin-top: 50px;
}

.games-ticker.footer-ticker {
    transform: rotate(2deg);
    margin-bottom: 0;
}

.ticker-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-right: 50px;
}

@keyframes ticker {
    0% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    grid-template-columns: 100px, 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 479px;
    width: 100%;
}

.about-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.about-title {
   writing-mode: vertical-rl;
text-orientation: mixed;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}

.about-text h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Games Section */
.games {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.game-category {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
box-shadow: 0 6px 8.8px 0 rgba(255, 255, 255, 0.05) inset;
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon img {
  width: 100%;
}



.game-category h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-category p {
    color: var(--text-secondary);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
   
}

.why-choose-content {
    display: flex;
   justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.why-choose-image {
    width: 100%;
    max-width: 460px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-bg {
    background: var(--gradient-secondary);
}

.vertical-title {
   writing-mode: vertical-rl;
text-orientation: mixed;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
  
}

.why-choose-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 440px;
    width: 100%;
}

.why-choose-features img {
    width: 100%;
}

.feature {
    width: 100%;
    flex: 0 1 46%;
}

.feature h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Community Section */
.community {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.community-content {
    width: 100%;
    margin: 0 auto;
    padding: 142px 20px;
    background-image: url(/wp-content/themes/techfile_mgjuvaus/assets/images/s-bcg.png);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.community h2 {
    margin-bottom: 20px;
     max-width: 521px;
    width: 100%;
}

.community p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 521px;
    width: 100%;
}

/* Footer */
.footer {
    overflow: hidden;
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link img {
    width: 100%;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 0, 217, 0.3);
}



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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-title {
    font-weight: 700;
    line-height: 1;
    font-size: 16vw;
}

.games-inner {
    padding-top: 40px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 16px;
     grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
}

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

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

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

.div4 {
    grid-row-start: 3;
}

.div5 {
    grid-row-start: 3;
}

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-row-start: 3;
}

.game-item {
    width: 100%;
    flex: 0 1 47%;
}

.game-item img {
    width: 100%;

}

.game-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.page-image {
    max-width: 450px;
    width: 100%;
}

.page-image img {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-title,
    .vertical-title {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .why-choose-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 810px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FF3BFF;
        backdrop-filter: blur(10px);
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        padding-top: 160px;
        text-align: center;
        padding-bottom: 140px;
        min-height: auto;
    }

    .game-card {
        flex-direction: column;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        position: relative;
        z-index: 3;
    }
    
    .hero-description {
        flex-direction: column;
        text-align: left;
    }

    .about-content, .why-choose-content {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .about-image {
        flex: 0 1 70%;
        height: 520px;
    }

    .why-choose-image {
        flex: 0 1 50%;
        height: 520px;
    }

    .feature {
        flex: 0 1 42%;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        padding-bottom: 80px;
    }
    
    .cookie-content {
        padding: 30px;
        margin: 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero h1 {
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .games-inner {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .games-ticker {
        height: 40px;
    }
    
    .ticker-content span {
        font-size: 0.8rem;
        margin-right: 30px;
    }
}

              .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;
              }

              
                

                