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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: #2d1b4e;
}

h2 {
    font-size: 2.5rem;
    color: #2d1b4e;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    border-radius: 12px;
background: #96D636;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d1b4e, #4a2c7a);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept, .btn-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline:hover {
    background: white;
    color: #2d1b4e;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #2d1b4e;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #2d1b4e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #7c4dff;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d1b4e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 20px;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #2d1b4e;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section */
.hero {
 
    padding: 40px 0;

    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.hero h1 {
 
   
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero p {
text-align: center;
    font-size: 14px;
 
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    height: 440px;
    margin-top: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    top: 0;
 object-fit: cover;
 object-position: center bottom;
}

/* Story Section */
.story {
    padding: 100px 0;
   
}

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

.story-text p {
    font-size: 14px;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    width: 100%;
    height: auto;
    max-width: 424px;
}

.bot-img {
    width: 100%;
}

/* Trends Section */
.trends {
    padding: 100px 0 120px;
   background-image: url(/wp-content/themes/glamondico.com/assets/images/gbcg.webp);
   background-size: cover;
   background-position: center bottom;
    color: white;
    position: relative;

}

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

.trends-text {
    max-width: 600px;
}

.trends h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2.8rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.trends p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.7;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width:450px;
    margin-left: auto;
}

.game-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.game-card img {
    width: 100%;
    height: 100%;
    
}

.game-title {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #000;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: normal;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
border-radius: 15px;
background: #96D636;
transition: all 0.3s linear;
z-index: 3;
top: 0;
left: 0;
}

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

.point {
    position: absolute;
    right: 0;
    width: 30%;
    bottom: 18%;
}

.game-image {
    max-width: 320px;
    width: 100%;
}

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

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

/* FAQ Section */
.faq {
    padding: 100px 0 0;
    background: white;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8f9ff;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #2d1b4e;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #7c4dff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #5a5a5a;
}

/* Adventure Section */
.adventure {
    padding: 100px 0;
    background-image: url(/wp-content/themes/glamondico.com/assets/images/gbcg.webp);
   background-size: cover;
   background-position: center bottom;
    color: white;
}

.adventure h2 {
    color: #fff;
}

.adventure p {
    color: #fff;
}

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

.adventure-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.adventure-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Footer */
.footer {
    background: white;
    color: #2d1b4e;
    padding: 40px 0 20px;
   
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #2d1b4e;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #2d1b4e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #7c4dff;
}

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

.social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.twitter {
   
    color: white;
}

.social-link.facebook {
    
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.footer-bottom p {
    color: #8e8e8e;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav {
       
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .story-content,
    .faq-content,
    .adventure-content,
    .trends-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 60px 0 60px;
        text-align: center;
    }

    .story,
    .trends,
    .adventure {
        padding: 60px 0;
    }

    .trends, .adventure {
        padding: 60px 0 160px;
    }

    .point {
        bottom: 10%;
        width: 45%;
    }

    .trends h2 {
        font-size: 1.8rem;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
      
        margin: 0 auto;
    }

    .trends-text {
        max-width: none;
       
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-nav {
        justify-content: center;
        gap: 25px;
    }

    .footer-social {
        justify-content: center;
    }

    .wave-divider svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

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

    .hero-image {
        height: 260px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .trends h2 {
        font-size: 1.4rem;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 0.8rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 0 40px;
    }

    .story,
    .trends,
    .adventure {
        padding: 40px 0;
    }

    .trends, .adventure {
        padding: 40px 0 180px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .wave-divider svg {
        height: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

@keyframes waveFloat {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.hero-content > *,
.story-content > *,
.trends-content > *,
.faq-content > *,
.adventure-content > * {
    animation: fadeInUp 0.8s ease;
}

.game-card {
    animation: fadeInUp 0.6s ease both;
}

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

/* Loading State */
body.loading {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

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

              
                

                