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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Bebas Neue", sans-serif;
    background-color: #010101;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    border: 1px solid #333;
}

.cookie-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #cccccc;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept {
   border-radius: 10px;
background: radial-gradient(50% 50% at 50% 50%, #8BACDE 0%, #578ADB 100%);
display: flex;
justify-content: center;
text-align: center;
text-decoration: none;
    color: white;
    border: none;
    padding: 15px 40px;
   
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-accept:hover {
    background: #3a8eef;
    transform: translateY(-2px);
}

.btn-refuse {
    background: transparent;
    color: white;
    border: 2px solid #666;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-refuse:hover {
    border-color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-icon {
    width: 24px;
    height: 24px;
}



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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #4a9eff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-games {
    border-radius: 10px;
background: radial-gradient(50% 50% at 50% 50%, #8BACDE 0%, #578ADB 100%);
display: flex;
justify-content: center;
text-align: center;
text-decoration: none;
    color: white;
    border: none;
    padding: 12px 25px;
   
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-games:hover {
    background: #3a8eef;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

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

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

.burger-menu.active span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background-image: url(/wp-content/themes/yopikado/images/nav-hero.webp);
    background-position: center;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.btn-primary {
    border-radius: 10px;
background: radial-gradient(50% 50% at 50% 50%, #8BACDE 0%, #578ADB 100%);
display: flex;
justify-content: center;
text-align: center;
text-decoration: none;
    color: white;
    border: none;
    padding: 18px 35px;
  max-width: 200px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #3a8eef;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.crystal-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #60a5fa);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 50px rgba(59, 130, 246, 0.5),
        inset 0 0 50px rgba(30, 58, 138, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

.character-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 150px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 40px 40px 0 0;
}

.hero-decorations {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
}

.decoration-1,
.decoration-2 {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #fbbf24, transparent);
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    right: 50px;
    height: 200px;
    top: 20%;
    animation-delay: 0s;
}

.decoration-2 {
    right: 20px;
    height: 150px;
    top: 60%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

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

/* Play Anytime Section */
.play-anytime {
    padding: 100px 0;
    
}

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

.play-visual {
    position: relative;
    max-width: 532px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-visual img {
    width: 100%;
}

.sphere-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.blue-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, #60a5fa, #1e40af, #1e3a8a);
    border-radius: 50%;
    box-shadow: 
        0 0 100px rgba(96, 165, 250, 0.4),
        inset 20px 20px 40px rgba(30, 64, 175, 0.3);
    animation: rotate 20s linear infinite;
}

.character-figure {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 120px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 30px 30px 0 0;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.play-text h2 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.play-text p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 400px;
}

/* Universe Section */
.universe-section {
    padding: 100px 0;
    overflow-x: clip;
}

.universe-content {
    
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;

}

.universe-text {
    display: flex;
    gap: 60px;
    width: 100%;
}

.universe-left h2 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.universe-left p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}

.universe-right h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.universe-right p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
}

.universe-visual {
    position: relative;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.universe-visual::before {
    content: '';
    border-radius: 576px;
background: rgba(211, 161, 76, 0.40);
filter: blur(150px);
position: absolute;
z-index: -1;
top: 50%;
left: 50%;
width: 576px;
height: 576px;
transform: translate(-50%, -50%);
}

.universe-visual img {
    width: 100%;
}

.pyramid-character {
    position: relative;
    width: 200px;
    height: 200px;
}

.pyramid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 120px solid #d4af37;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.glowing-eyes {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

/* Challenge Section */
.challenge-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.challenge-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-blue {
    color: #4a9eff;
    font-size: 3rem;
    max-width: 80px;
    display: inline-block;
}

.highlight-blue img {
    width: 100%;
}

.highlight-yellow {
    color: #fbbf24;
    font-size: 3rem;
    max-width: 80px;
     display: inline-block;
}

.highlight-yellow img {
    width: 100%;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: #0a0a0a;
    overflow-x: clip;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cat-col {
    display: flex;
    align-items: center;
    flex-direction: column;
   gap: 50px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.category-item span {
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.category-icon {
    width: 60px;
    height: 60px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.center-emblem {
    grid-column: 2;
    grid-row: 2;
    max-width: 442px;
    width: 100%;
    position: relative;
}

.center-emblem::before {
    content: "";
    position: absolute;
z-index: -1;
top: 50%;
left: 50%;
width: 576px;
height: 576px;
transform: translate(-50%, -50%);
border-radius: 576px;
background: rgba(139, 172, 222, 0.40);
filter: blur(150px);
}

.center-emblem img {
    width: 100%;
}

.emblem-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.emblem-inner {
    width: 40px;
    height: 40px;
    background: #666;
    border-radius: 4px;
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

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

.twitter {
    background: #1da1f2;
}

.facebook {
    background: #4267b2;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-icon {
    width: 100%;
   
    
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    width: 90%;
}

.footer-logo img {
    width: 100%;
}

.footer-legal {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.legal-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 0.8rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #4a9eff;
}

/* Games page integration styles */
.header .nav-link[href="/"] {
    color: white;
}

.header .nav-link[href="/"]:hover {
    color: #4a9eff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .play-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .universe-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .universe-text {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .play-text h2,
    .universe-left h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .challenge-content h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        gap: 30px;
        max-width: 400px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h2 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .play-text h2,
    .universe-left h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .challenge-content h2 {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
    }
    
    .center-emblem {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .hero-visual,
    .play-visual,
    .universe-visual {
        height: 300px;
    }
    
    .crystal-portal {
        width: 200px;
        height: 300px;
    }
    
    .blue-sphere {
        width: 180px;
        height: 180px;
    }
}

/* Games Page Specific Styles */

/* Active state for Games button */
.btn-games.active {
    background: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.3);
}

/* Games Hero Section */
.games-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.games-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.games-hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-hero-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

/* Games Slider Section with Swiper - Simple Version */
.games-slider-section {
    padding: 80px 0 120px;
    background: #0a0a0a;
    position: relative;
}

.games-swiper-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.games-swiper, .swiper {
    padding: 40px 0 80px !important;
    overflow: visible;
}

.games-swiper .swiper-wrapper {
    align-items: center;
}

.games-swiper .swiper-slide {
    width: 200px;
    height: 200px;
    transition: all 0.3s ease;
    border-radius: 20px;
    opacity: 0.7;
    transform: scale(0.8);
}

.games-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.2) !important;
    z-index: 10;
}

.games-swiper .swiper-slide-next,
.games-swiper .swiper-slide-prev {
    opacity: 0.8;
    transform: scale(0.9) !important;
}

.game-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.game-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* Navigation Styles */
.swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.games-prev,
.games-next {
    width: 60px;
    height: 60px;
    background: rgba(74, 158, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: static;
    margin: 0;
}

.games-prev:hover,
.games-next:hover {
    background: rgba(74, 158, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.games-prev:active,
.games-next:active {
    transform: scale(0.95);
}

.games-prev svg,
.games-next svg {
    transition: transform 0.2s ease;
}

.games-prev:hover svg,
.games-next:hover svg {
    transform: scale(1.2);
}

.games-prev::after,
.games-next::after {
    display: none;
}

/* Responsive Design for Games Page */
@media (max-width: 1200px) {
    .games-swiper .swiper-slide {
        width: 180px;
        height: 180px;
    }
    
    .games-swiper .swiper-slide-active {
        transform: scale(1.15);
    }
}

@media (max-width: 1024px) {
    .games-hero-content h1 {
        font-size: 3rem;
    }
    
    .games-swiper .swiper-slide {
        width: 160px;
        height: 160px;
    }
    
    .games-swiper .swiper-slide-active {
        transform: scale(1.1);
    }
    
    .games-prev,
    .games-next {
        width: 50px;
        height: 50px;
    }
}



@media (max-width: 768px) {
    .games-hero {
        min-height: 60vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .games-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .games-hero-content p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .games-slider-section {
        padding: 60px 0 80px;
    }
    
    .games-slider-container {
        flex-direction: row;
        gap: 15px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .games-slider {
        width: calc(100% - 130px);
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .game-item {
        width: 140px;
        height: 140px;
    }
    
    .game-item.active {
        transform: scale(1.1);
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .prev-btn,
    .next-btn {
        order: 0;
        position: relative;
    }
}

@media (max-width: 768px) {
    .games-hero {
        min-height: 60vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .games-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .games-hero-content p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .games-slider-section {
        padding: 60px 0 80px;
    }
    
    .games-swiper {
        padding: 20px 0 60px;
    }
    
    .games-swiper .swiper-slide {
        width: 140px;
        height: 140px;
    }
    
    .games-swiper .swiper-slide-active {
        transform: scale(1.05);
    }
    
    .swiper-navigation {
        gap: 20px;
        margin-top: 30px;
    }
    
    .games-prev,
    .games-next {
        width: 45px;
        height: 45px;
    }

    .games-hero-content h1 {
        font-size: 2rem;
    }
    
    .games-hero-content p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .games-swiper .swiper-slide {
        width: 150px;
        height: 150px;
    }
    
    .games-swiper .swiper-slide-active {
        transform: scale(1.0);
    }
    
    .swiper-navigation {
        gap: 15px;
        margin-top: 25px;
    }
    
    .games-prev,
    .games-next {
        width: 40px;
        height: 40px;
    }
    
    .games-prev svg,
    .games-next svg {
        width: 18px;
        height: 18px;
    }
    
    /* Adjust game elements for smaller screens */
    .monkey-icon {
        font-size: 2rem;
    }
    
    .ball-body {
        width: 60px;
        height: 60px;
    }
    
    .green-creature {
        width: 45px;
        height: 30px;
    }
    
    .block {
        width: 15px;
        height: 15px;
    }
    
    .building-1 { width: 12px; height: 25px; }
    .building-2 { width: 16px; height: 35px; }
    .building-3 { width: 14px; height: 28px; }
    .building-4 { width: 10px; height: 20px; }
    
    .stick-head {
        width: 15px;
        height: 15px;
        border-width: 2px;
    }
    
    .stick-body {
        height: 30px;
    }
    
    .ninja-head {
        width: 20px;
        height: 20px;
    }
    
    .ninja-body {
        width: 16px;
        height: 28px;
    }
    
    .soldier-body {
        width: 20px;
        height: 28px;
    }
    
    .helmet {
        font-size: 1.5rem;
    }
}

/* Additional animations and effects */
.swiper-slide {
    animation: fadeInUp 0.6s ease forwards;
}

.swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.swiper-slide:nth-child(4) { animation-delay: 0.4s; }
.swiper-slide:nth-child(5) { animation-delay: 0.5s; }
.swiper-slide:nth-child(6) { animation-delay: 0.6s; }
.swiper-slide:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(0.8);
    }
}

/* Hover effects for game cards */
.game-card {
    position: relative;
    overflow: hidden;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.game-link:hover .game-card::after {
    left: 100%;
}

/* Focus states for accessibility */
.game-link:focus {
    outline: 2px solid #4a9eff;
    outline-offset: 2px;
    border-radius: 20px;
}

.games-prev:focus,
.games-next:focus {
    outline: 2px solid #4a9eff;
    outline-offset: 2px;
}

/* Loading state */
.games-swiper.loading {
    opacity: 0.7;
    pointer-events: none;
}

.games-swiper.loading .swiper-slide {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
}

/* Game Page Styles */

/* Game Hero Section Base */
.game-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.game-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.game-hero-text {
    max-width: 600px;
}

.game-hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: white;
}

.game-hero-text p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.btn-play {
    background: #4a9eff;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
}

.btn-play:hover {
    background: #3a8eef;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.game-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* EVOWORLD.IO Specific Styles */
.evoworld-hero {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #2F4F4F 100%);
    background-image: url(/wp-content/themes/yopikado/images/fly-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.evoworld-creatures {
    position: relative;
    width: 100%;
    height: 100%;
}

.creature {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.creature-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #666, #333);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.creature-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #888, #555);
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.creature-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #AAA, #777);
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

/* LEVEL DEVIL Specific Styles */
.leveldevil-hero {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #8B4513 100%);
    background-image: url(/wp-content/themes/yopikado/images/jump-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.leveldevil-blocks {
    position: relative;
    width: 100%;
    height: 100%;
}

.devil-block {
    position: absolute;
    background: #654321;
    border: 2px solid #8B4513;
    animation: shift 3s ease-in-out infinite;
}

.devil-block-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.devil-block-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.devil-block-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 30%;
    animation-delay: 2s;
}

.devil-cityscape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 40%;
    background: linear-gradient(to top, #654321 0%, #8B4513 50%, #DAA520 100%);
    clip-path: polygon(0 100%, 20% 80%, 40% 85%, 60% 70%, 80% 75%, 100% 60%, 100% 100%);
}

/* RED BALL 4 Specific Styles */
.redball-hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    background-image: url(/wp-content/themes/yopikado/images/red-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.redball-character {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-ball-main {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #FF6B6B, #DC143C, #8B0000);
    border-radius: 50%;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
    border: 8px solid #8B0000;
}

.red-ball-main::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 30%;
    width: 60px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    box-shadow: 80px 0 0 #333;
}

.red-ball-main::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 40%;
    width: 40px;
    height: 20px;
    background: #333;
    border-radius: 0 0 40px 40px;
}

/* KOUR.IO Specific Styles */
.kour-hero {
    background: linear-gradient(135deg, #98FB98 0%, #32CD32 50%, #228B22 100%);
    background-image: url(/wp-content/themes/yopikado/images/shot-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.kour-character {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kour-soldier {
    width: 250px;
    height: 350px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    position: relative;
    animation: march 3s ease-in-out infinite;
    border-radius: 10px;
}

.kour-soldier::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #D2B48C;
    border-radius: 50%;
}

.kour-soldier::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -40px;
    width: 80px;
    height: 15px;
    background: #2F4F4F;
    border-radius: 5px;
    transform: rotate(-10deg);
}

/* SCARY TEACHER 3D Specific Styles */
.scary-teacher-hero {
    background: linear-gradient(135deg, #2F2F2F 0%, #8B0000 30%, #DC143C 70%, #B22222 100%);
    background-image: url(/wp-content/themes/yopikado/images/teach-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.scary-teacher-face {
    position: relative;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 40% 30%, #D2B48C, #CD853F, #A0522D);
    border-radius: 50%;
    animation: scary-float 4s ease-in-out infinite;
}

.teacher-eye {
    position: absolute;
    top: 35%;
    right: 25%;
    width: 80px;
    height: 60px;
    background: white;
    border-radius: 50%;
    border: 3px solid #333;
}

.teacher-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #8B0000;
    border-radius: 50%;
}

.teacher-nose {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #A0522D;
}

.teacher-mouth {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #8B0000;
    border-radius: 0 0 60px 60px;
    border: 2px solid #333;
}

.teacher-hair {
    position: absolute;
    top: -10%;
    left: 10%;
    right: 10%;
    height: 40%;
    background: #654321;
    border-radius: 50% 50% 0 0;
}

/* WE BECOME WHAT WE BEHOLD Specific Styles */
.we-become-hero {
    background: linear-gradient(135deg, #F5F5F5 0%, #D3D3D3 30%, #696969 70%, #2F2F2F 100%);
    background-image: url(/wp-content/themes/yopikado/images/scare-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.camera-eye-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-eye {
    position: relative;
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    border: 8px solid #333;
    animation: blink 4s ease-in-out infinite;
}

.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #333;
    border-radius: 50%;
}

.eye-reflection {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
}

.camera-frame {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 80px;
    background: #333;
    border-radius: 10px;
    border: 3px solid #666;
}

.camera-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #666, #333);
    border-radius: 50%;
    border: 2px solid #999;
}

/* MONKEY MART Specific Styles */
.monkey-mart-hero {
    background: linear-gradient(135deg, #87CEEB 0%, #FFD700 30%, #FFA500 70%, #FF8C00 100%);
    background-image: url(/wp-content/themes/yopikado/images/monk-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.monkey-mart-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monkey-character {
    position: relative;
    animation: monkey-bounce 3s ease-in-out infinite;
}

.monkey-head {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #DEB887, #CD853F);
    border-radius: 50%;
    position: relative;
    border: 3px solid #8B4513;
}

.monkey-head::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 25%;
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    box-shadow: 30px 0 0 #333;
}

.monkey-head::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: #333;
    border-radius: 0 0 20px 20px;
}

.monkey-body {
    width: 80px;
    height: 120px;
    background: linear-gradient(45deg, #DEB887, #CD853F);
    border-radius: 40px;
    margin: 0 auto;
    border: 3px solid #8B4513;
}

.monkey-arms {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 15px;
    background: #CD853F;
    border-radius: 15px;
    border: 2px solid #8B4513;
}

.bananas-pile {
    position: absolute;
    bottom: 50px;
    right: 80px;
}

.banana {
    position: absolute;
    width: 40px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 2px solid #FF8C00;
    animation: banana-sway 2s ease-in-out infinite;
}

.banana-1 {
    transform: rotate(-10deg);
    animation-delay: 0s;
}

.banana-2 {
    left: 25px;
    top: -10px;
    transform: rotate(5deg);
    animation-delay: 0.5s;
}

.banana-3 {
    left: 15px;
    top: 20px;
    transform: rotate(-5deg);
    animation-delay: 1s;
}

.cart-icon {
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 60px;
    height: 50px;
    background: #4169E1;
    border-radius: 10px;
    border: 3px solid #000080;
    animation: cart-roll 4s ease-in-out infinite;
}

.cart-icon::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10px;
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    box-shadow: 25px 0 0 #333;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: left;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: white;
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.feature-img {
    width: 100%;
    
    object-fit: contain;
   
}

.feature-item h3 {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes shift {
    0%, 100% {
        transform: translateX(0) rotateZ(0deg);
    }
    50% {
        transform: translateX(20px) rotateZ(10deg);
    }
}

@keyframes march {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateY(-10px) rotateZ(2deg);
    }
    50% {
        transform: translateY(0) rotateZ(0deg);
    }
    75% {
        transform: translateY(-10px) rotateZ(-2deg);
    }
}

@keyframes scary-float {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(2deg);
    }
    50% {
        transform: translateY(-5px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-20px) rotateZ(-2deg);
    }
}

@keyframes blink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes monkey-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes banana-sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .game-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .game-hero-text h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .scary-teacher-face {
        width: 300px;
        height: 300px;
    }
    
    .big-eye {
        width: 250px;
        height: 250px;
    }
    
    .monkey-character {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .game-hero {
        min-height: 80vh;
        padding-top: 120px;
    }
    
    .game-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .game-hero-text p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .red-ball-main {
        width: 200px;
        height: 200px;
    }
    
    .kour-soldier {
        width: 180px;
        height: 250px;
    }
    
    .scary-teacher-face {
        width: 250px;
        height: 250px;
    }
    
    .big-eye {
        width: 200px;
        height: 200px;
    }
    
    .eye-pupil {
        width: 80px;
        height: 80px;
    }
    
    .monkey-character {
        transform: scale(0.7);
    }
    
    .creature-1,
    .creature-2,
    .creature-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .game-hero-text h1 {
        font-size: 2rem;
    }
    
    .game-hero-text p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-img {
        width: 35px;
        height: 35px;
    }
    
    .feature-item h3 {
        font-size: 0.9rem;
    }
    
    .scary-teacher-face {
        width: 200px;
        height: 200px;
    }
    
    .teacher-eye {
        width: 50px;
        height: 40px;
    }
    
    .teacher-eye::before {
        width: 20px;
        height: 20px;
    }
    
    .big-eye {
        width: 150px;
        height: 150px;
    }
    
    .eye-pupil {
        width: 60px;
        height: 60px;
    }
    
    .monkey-head {
        width: 70px;
        height: 70px;
    }
    
    .monkey-body {
        width: 60px;
        height: 90px;
    }
    
    .banana {
        width: 25px;
        height: 50px;
    }
}

/* Additional visual effects */
.game-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background: rgba(74, 158, 255, 0.2);
    border-color: rgba(74, 158, 255, 0.5);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-img {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(180deg);
    transition: all 0.3s ease;
}

              .page {
                padding: 80px 0;
              }
              
              .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;
              }

              
                

                