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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Anton', sans-serif;
    background: linear-gradient(135deg, #1a0d3d 0%, #0d1b2a 50%, #0a1128 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 13, 61, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid #ff3d8e;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #ff3d8e;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    border-radius: 60px;
background: #FF37DF;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
     display: flex;
   justify-content: center;
    align-items: center;
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 61, 142, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a0d3d;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;

    
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
   max-width: 30px;
    width: auto;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand {
   display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFF;
font-family: Anton;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase; 
gap: 6px;
text-decoration: none;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff3d8e;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
   
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
    max-width: 480px;
    width: 100%;
}

.hero-text {
    font-size: 14px;
    line-height: 1.6;
 
    opacity: 0.9;
    max-width: 205px;
    width: 100%;
    position: relative;
    z-index: 3;
    align-self: flex-end;
}

.hero-btn {
    font-size: 16px;
    padding: 20px 40px;
}

.hero-characters {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 0;
    max-width: 1368px;
}

.characters-image {
    width: 100%;
   display: block;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

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

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    margin-top: 60px;
}

.about-text {
    max-width: 387px;
    width: 100%;
}

.about-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-text .btn-primary {
    margin-top: 30px;
}

.action-image {
    max-width: 783px;
    width: 100%;
}

.action-image {
    width: 100%;
    height: auto;
    
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-btn {
    display: block;
    margin: 0 auto 60px;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    width: 100%;
 display: block;
   
}

/* Trending Section */
.trending {
    padding: 100px 0;
}

.trending-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trending-btn {
    display: block;
    margin: 0 auto 60px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.game-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
text-align: center;
font-family: Anton;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
background: #FF37DF;
transition: all 0.3s ease-in-out;
top: 0;
left: 0;
position: absolute;
opacity: 0;
}

.game-card:hover .game-title{
    opacity: 1;
}

.game-image {
    width: 100%;
   display: block;
    object-fit: cover;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    overflow: hidden;
    background-image: url(/wp-content/themes/qubrezora.com/assets/images/cbcg.webp);
    background-position: center;
    background-size: cover;
}

.cta-content {
    display: grid;
    grid-template-columns:  1fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    max-width: 795px;
    width: 65%;
}

.cta-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.cta-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-games {
  position: absolute;
  right: 0;
  width: 30%;
}

.cta-games img {
    width: 100%;
}

.cta-game {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cta-game:hover {
    transform: scale(1.05);
}

.cta-game-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff3d8e;
}

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

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-link {
    max-width: 28px;
    width: 100%;
}

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

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
 
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.card-image {
    max-width: 300px;
    width: 100%;
}

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

.card-text {
    max-width: 450px;
    width: 100%;
    font-size: 14px;
}

.about h2 {
    text-align: left;
}

.page-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 793px;
    width: 100%;
}

.page-text ul {
    padding-left: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        flex-direction: column;
       align-items: center;
       gap: 20px;
    }

    .hero-characters {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 125%;
    }

    .hero-characters img {
       
    }

    .hero-text {
        max-width: 380px;
        align-self: center;
    }

    .about-content {
       flex-direction: column;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 20px;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cta-text {
        width: 100%;
    }

    .cta-games {
        position: relative;
        align-self: flex-end;
        right: -20px;
        width: 100%;
        max-width: 500px;
    }

    .footer-content {
        flex-direction: column;
       
    }

    .footer-links {
        
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .trending-grid {
        
    }

    .cta-games {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-characters {
        width: 230%;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.characters-image {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

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

              
                

                