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

:root {
    --orange: #ff5722;
    --dark-bg: #4a4a4a;
    --darker-bg: #3d3d3d;
    --light-card: #d4d4d4;
    --white: #ffffff;
    --text-light: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background: #393B38;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

::selection {
    background-color: var(--orange);
    color: var(--white);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  
 
 
    position: relative;
    top: 0;
    z-index: 1000;

  

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #D1D1CF;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--orange);
    border-radius: 6px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: var(--white);
    border-radius: 2px;
}

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

.nav-menu a {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-light);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 80px 0 100px;

    /* min-height: calc(100vh - 80px); */
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.hero-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #e8e8e8;
}

.hero-arrow-1 {
    position: absolute;
    width: 180px;
    height: auto;
    top: 15%;
    right: 10%;
    transform: rotate(-10deg);
}

.hero-arrow-2 {
    position: absolute;
    width: 120px;
    height: auto;
    bottom: 10%;
    left: 18%;
    transform: rotate(15deg);
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.hero-welcome {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-light);
}

.btn-join {
    display: inline-block;
    padding: 14px 48px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background-color: var(--white);
    color: var(--darker-bg);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 30px;
    align-items: end;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

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

.hero-image:first-child,
.hero-image:last-child {
    height: 450px;
}

.hero-image-center {
    height: 600px;
    transform: translateY(40px);
}

/* ========================================
   GAMES SECTION
   ======================================== */
.games {
    padding: 100px 0;
   
}


.games-wrapper {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 60px;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.games-header h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
}

.games-subtitle {
    font-size: 20px;
    max-width: 400px;
    text-align: right;
    color: var(--text-light);
    line-height: 1.4;
}

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

.game-card {
    background-color: var(--light-card);
    color: #2a2a2a;
    padding: 35px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.games2{
  padding-top: 0;
}
.games2 .game-card{

 
  padding: 10px;
}
.games2 .game-image{
 margin-top: 0;
}
.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-card-featured {
    background-color: var(--orange);
    color: #2a2a2a;
}

.game-card h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.game-card p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.game-image {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
}

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

.games-theme {
    text-align: center;
    padding: 60px 40px;
    padding-top: 0;
}

.theme-title {
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-light);
    letter-spacing: -1px;
}

.theme-highlight {
    color: var(--orange);
}

.theme-description {
    font-size: 22px;
    color: var(--text-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
  
}

.about-wrapper {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.about-wrapper h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 100px 0;
   
}

.testimonials-wrapper {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 70px;
}

.testimonials h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-light);
}

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

.testimonial-card {
    background-color: var(--light-card);
    color: #2a2a2a;
    padding: 45px 35px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card-featured {
    background-color: var(--orange);
}

.testimonial-card p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

.stars {
    display: flex;
    gap: 8px;
}

.stars span {
    color: var(--orange);
    font-size: 26px;
}

.testimonial-card-featured .stars span {
    color: #2a2a2a;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  
    padding: 80px 0 40px;
}

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

.footer-contact p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 16px;
}

.footer-contact a:hover {
    color: var(--white);
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 16px;
}

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

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

.footer-social a {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}

.social-facebook {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
}

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

.social-twitter::before,
.social-facebook::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: var(--white);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.social-twitter::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z'/%3E%3C/svg%3E");
}

.social-facebook::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z'/%3E%3C/svg%3E");
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   COOKIE POPUP
   ======================================== */
.cookie-popup {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--darker-bg);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    max-width: 750px;
    width: 90%;
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.btn-accept,
.btn-refuse {
    flex: 1;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--orange);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #ff6b3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

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

.btn-refuse:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 100px;
    }

    .games-header {
        flex-direction: column;
        gap: 20px;
    }

    .games-subtitle {
        text-align: left;
        max-width: 100%;
    }

    .about-wrapper {
        gap: 50px;
        padding: 60px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-menu {
        gap: 30px;
        font-size: 16px;
    }

    .hero-title {
        font-size: 70px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-image:first-child,
    .hero-image:last-child,
    .hero-image-center {
        height: 400px;
        transform: translateY(0);
    }

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

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .footer-links {
        align-items: center;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 20px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-arrow-1,
    .hero-arrow-2 {
        display: none;
    }

    .hero-welcome {
        font-size: 26px;
    }

    .games-wrapper,
    .about-wrapper,
    .testimonials-wrapper {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .games-header h2,
    .testimonials h2,
    .about-wrapper h2 {
        font-size: 40px;
    }

    .theme-title {
        font-size: 42px;
    }

    .game-card,
    .testimonial-card {
        padding: 30px 25px;
    }

    .cookie-popup {
        width: 95%;
        padding: 35px 25px;
        bottom: 20px;
    }

    .cookie-content h3 {
        font-size: 28px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo span {
        font-size: 18px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 15px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-welcome {
        font-size: 22px;
    }

    .btn-join {
        padding: 12px 36px;
        font-size: 16px;
    }

    .games-header h2,
    .testimonials h2,
    .about-wrapper h2 {
        font-size: 32px;
    }

    .games-subtitle,
    .theme-description {
        font-size: 18px;
    }

    .theme-title {
        font-size: 32px;
    }

    .game-card h3 {
        font-size: 28px;
    }

    .game-card p {
        font-size: 15px;
    }

    .testimonial-card p {
        font-size: 17px;
    }

    .about-text p {
        font-size: 17px;
    }

    .games-wrapper,
    .about-wrapper,
    .testimonials-wrapper {
        padding: 30px 20px;
    }

    .footer-social a {
        width: 70px;
        height: 70px;
    }

    .cookie-popup {
        padding: 30px 20px;
    }

    .cookie-content h3 {
        font-size: 24px;
    }

    .cookie-content p {
        font-size: 15px;
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b3d;
}
.img_game{
  display: flex;
  justify-content: center;
}
.hero_game{
  padding-bottom: 0px;
}
.about_game h2{
  color: #D1D1CF;
font-family: Montserrat;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 90%; /* 36px */
}