@import url('https://fonts.googleapis.com/css2?family=Impact&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Impact', Arial, sans-serif;
    background: #0a0f14;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #0f1419;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: left;
    position: relative;
}

.cookie-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.cookie-link {
    color: #40e0d0;
    text-decoration: underline;
}

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

.btn-accept {
    background: #40e0d0;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #36c7b8;
}

.btn-refuse {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refuse:hover {
    background: #ffffff;
    color: #0f1419;
}

/* Header */
.header {
 
    position: fixed;
    top: 24px;
    width: 100%;
    background: rgba(10, 15, 20, 0.95);

    z-index: 1000;
    padding: 15px 0;
    left: 50%;
    transform: translateX(-50%);

    border-radius: 20px;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 0 10.9px 0 rgba(0, 0, 0, 0.25);
max-width: 768px;
margin: 0 auto;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
}

.logo {
    width: 35px;
    height: 35px;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: normal;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #40e0d0;
}

.games-btn {
    background: #40e0d0 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 25px !important;
    font-weight: bold !important;

    border-radius: 10px !important;
background: #32BFCF !important;
}

.games-btn:hover {
    background: #36c7b8 !important;
    color: #ffffff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0f1419;
    z-index: 2000;
    transition: right 0.3s ease;
    width: 100%;
}

.mobile-menu.open {
    right: 0;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-weight: normal;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(45deg, #0a0f14 0%, #1a2332 100%);
    background-image: 
        linear-gradient(45deg, transparent 74%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1) 76%, transparent 77%),
        linear-gradient(-45deg, transparent 74%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1) 76%, transparent 77%);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
    background: url(/wp-content/themes/ludomera/../images/bg.png);
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.game-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50px;
    left: 0;
}

.game-icon {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

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

.game-icon.top-left { 
    top: 10%; 
    left: 0%; 
}
.game-icon.top-right { 
    top: 5%; 
    right: 0%; 
}
.game-icon.left { 
    top: 52%; 
    left: 5%; 
}
.game-icon.right { 
    top: 52%; 
    right: 5%; 
}
.game-icon.bottom-left { 
    bottom: -24%; 
    left: 15%; 
}
.game-icon.bottom-right { 
    bottom: -24%; 
    right: 15%; 
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.online-games-badge {
    display: inline-block;
    background: #40e0d0;
    color: #0a0f14;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: normal;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #40e0d0;
    color: #fff;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Impact', Arial, sans-serif;
    text-decoration: none;

    border-radius: 10px;
background: #32BFCF;
}

.btn-primary:hover {
    background: #36c7b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 20px 40px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Impact', Arial, sans-serif;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0f14;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #0a0f14;

    border-radius: 40px;
background: rgba(255, 255, 255, 0.05);
}

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

.about h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: normal;
    line-height: 1.6;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.about-visual {
    position: relative;
    width: 100%;
    height: 100%;
}
.about-visual img{
  width: 100%;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    color: #40e0d0;
    font-size: 1.5rem;
    animation: twinkle 2s infinite;
}

.star1 { top: 15%; right: 20%; animation-delay: 0s; }
.star2 { top: 25%; left: 15%; animation-delay: 0.5s; }
.star3 { bottom: 30%; right: 25%; animation-delay: 1s; }
.star4 { bottom: 20%; left: 20%; animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.monitor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.monitor img {
    width: 200px;
    height: auto;
}

.trophy {
    position: absolute;
    top: 10%;
    right: 15%;
    z-index: 3;
}

.trophy img {
    width: 100px;
    height: auto;
}

.controller {
    position: absolute;
    bottom: 15%;
    left: 15%;
    z-index: 3;
}

.controller img {
    width: 120px;
    height: auto;
}

/* Games Section */
.games {
    padding: 120px 0;
    background: #0f1419;
}

.games h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 80px;
    font-weight: normal;
    letter-spacing: -1px;
}

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

.game-category {
    text-align: center;
    padding: 0;
}

.game-category-icons {
    position: relative;
    height: 250px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}






.earth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 2;
}

.player {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.player1 { top: 10%; left: 50%; transform: translateX(-50%); }
.player2 { top: 30%; right: 10%; }
.player3 { bottom: 30%; left: 10%; }
.player4 { bottom: 10%; right: 50%; transform: translateX(50%); }

.game-category h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: -1px;
}

.game-category p {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: normal;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #0a0f14;
}

.features h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 80px;
    font-weight: normal;
    letter-spacing: -1px;
}

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

.feature {
    text-align: center;
    padding: 0;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.feature h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: -1px;
}

.feature p {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: normal;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: #0f1419;
}

.testimonials h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 80px;
    font-weight: normal;
    letter-spacing: -1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}



.testimonial p {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.4;
    padding-top: 10px;
    letter-spacing: -0.5px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: #0a0f14;
}

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

.cta h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: normal;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: normal;
}

.btn-cta {
    background: #40e0d0;
    color: #0a0f14;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Impact', Arial, sans-serif;
}

.btn-cta:hover {
    background: #36c7b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
}

.community-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.community-visual img{
  width: 100%;
}

.community-group {
    position: relative;
    width: 250px;
    height: 250px;
}

.community-player {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 0;
}

.community-player:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.community-player:nth-child(2) { top: 20%; right: 0; }
.community-player:nth-child(3) { top: 50%; left: 50%; transform: translateX(-50%); z-index: 2; }
.community-player:nth-child(4) { bottom: 20%; left: 0; }
.community-player:nth-child(5) { bottom: 0; right: 20%; }

.community-controller {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 80px;
    height: auto;
}

.community-dice {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 50px;
    height: auto;
}

.star-community {
    position: absolute;
    top: 25%;
    right: 5%;
    color: #40e0d0;
    font-size: 2rem;
    animation: twinkle 2s infinite;
}

/* Footer */
.footer {
    background: #0f1419;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: normal;
}

.footer-contact {
    text-align: right;
    display: flex;
    gap: 50px;
}
@media (max-width: 768px) {
  .footer-contact{
    flex-direction: column;
  
  }
}

.footer-contact p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: normal;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-weight: normal;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-social img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: normal;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .game-icon {
        width: 100px;
        height: 100px;
    }
    
    .about-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        gap: 15px;
    }
    
    h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .game-icon {
        width: 80px;
        height: 80px;
    }
    
    .cookie-content h3 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .nav-brand {
        font-size: 1.5rem;
    }
}