/* ==========================================
   VELDURION - STYLE.CSS
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #5B7FFF;
    --light-blue: #7B9AFF;
    --dark-bg: #1A1A1A;
    --darker-bg: #0F0F0F;
    --light-gray: #E5ECF1;
    --white: #FFFFFF;
    --purple: #B084FF;
    --orange: #FFB84D;
    --cyan: #4DD4FF;
    --green: #4DFF7B;
    --yellow: #C8FF4D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'MuseoModerno', sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-bg);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: 'MuseoModerno', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   COOKIE CONSENT
   ========================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-accept,
.cookie-decline {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--yellow);
    color: var(--dark-bg);
}

.cookie-accept:hover {
    background: #D4FF6B;
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-decline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: #14161A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo img {
    width: 35px;
  
}

.nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

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

.donate-btn {
    border-radius: 12px;
background: #DAFE86;
    color: var(--dark-bg);
    padding: 10px 30px;
   text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #D4FF6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 255, 77, 0.4);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

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

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

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

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 60px 0 60px;
   
    overflow: hidden;
}

.hero-content {
    text-align: center;
}

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

.new-badge {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-bg);
    text-align: left;
}

.hero-brand {
    font-size: 12vw;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -2px;
}

.hero-image {
    max-width: 300px;
    margin: -50px auto;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.games-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
    width: 100%;
}



.games-scroll img {
   max-width: 110%;
}

.see-all-btn {
   border-radius: 99px;
border: 1px solid #14161A;
background: #DAFE86;
    color: var(--dark-bg);
    padding: 8px 50px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(200, 255, 77, 0.3);
}

.see-all-btn:hover {
    background: #D4FF6B;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 255, 77, 0.4);
}

.see-all-btn .arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.see-all-btn:hover .arrow {
    transform: translateX(5px);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 80px 0;
   border-radius: 42px;
background: #1E1E1E;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
   width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
 align-items: center;
 gap: 30px;
    justify-content: space-between;
}

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

.feature-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.feature-description {
    max-width: 200px;
    
}

.feature-description p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
    font-weight: 700;
}

.rewards-badge {
    background: rgba(200, 255, 77, 0.15);
    border: 2px solid var(--yellow);
    border-radius: 15px;
    padding: 15px 20px;
    color: var(--white);
    text-align: center;
}

.rewards-badge strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--yellow);
}

.rewards-badge span {
    font-size: 12px;
    line-height: 1.4;
}

.feature-icon {
    margin: 20px 0;
}

.feature-icon img {
    max-width: 150px;
}

.feature-text,
.feature-text-alt {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    max-width: 200px;
    font-weight: 700;
}

.feature-text-alt {
    margin-top: auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 96px;
    font-weight: 900;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 60px;
    line-height: 1;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-bg);
    margin-bottom: 30px;
    text-align: center;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    line-height: 1.4;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 80px 0;
    border-radius: 42px;
background: #1E1E1E;
margin-bottom: 60px;
}

.faq-title {
    font-size: 96px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--purple);
    border-radius: 20px;
    
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-question {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
   
}

.faq-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    min-width: 50px;
}

.faq-question h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    flex: 1;
}

.faq-icon {
    position: absolute;
    max-width: 300px;
    right: 20px;
    bottom: -18px;
}

.faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

/* ==========================================
   GAMES SECTION
   ========================================== */
.games-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.game-card {
    border-radius: 25px;
    padding: 24px;
    display: flex;
    gap: 25px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 16px;
background: #BA91FF;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.game-image {
    width: 120px;
    aspect-ratio: 1;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.game-info {
    flex: 1;
}

.game-title {
    font-size: 28px;
    font-weight: 800;
    color: #14161A;
    margin-bottom: 10px;
}

.game-description {
    font-size: 14px;
    font-weight: 500;
    color: #14161A;
    line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: var(--white);
    transition: color 0.3s ease;
}

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

.footer-contact,
.footer-email {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.social-link:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

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

.game-page {
    margin-bottom: 60px;
    border-radius: 42px;
background: #1E1E1E;
}

.game-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 60px 0;
    color: #fff;
}

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

.game-content {
    max-width: 528px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.game-features {
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
}

.game-pic {
    max-width: 300px;
    width: 100%;
    position: relative;
    bottom: -77px;
    right: 20px;
    align-self: flex-end;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1023px) {
    .hero-brand {
       
    }

    .hero-image {
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 72px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .game-inner {
        flex-direction: column;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
         background: #14161A;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .donate-btn {
        display: none;
    }
    
    .hero-brand {
       font-size: 14vw;
    }
    
    .games-scroll {
       
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .feature-title {
        font-size: 36px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-title {
        font-size: 48px;
    }
    
    .faq-question h3 {
        font-size: 20px;
    }
    
    .game-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .game-image {
        max-width: 300px;
        width: 100%;
    }
    .faq-icon {
        display: none;
    }
}

@media (max-width: 550px) {
    .hero-brand {
        font-size: 16vw;
    }

    .games-scroll img {
        max-width: 170%;
    }

    .feature-card, .feature-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-icon {
        align-self: flex-end;
    }

    .feature-title {
        font-size: 38px;
    }
    
    .new-badge {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .feature-card {
        
    }

    .hand {
        display: none;
    }
    
    .faq-number {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 0 25px 0 70px;
        width: 100%;
    }
    
}

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

              
                

                