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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Actor', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
    line-height: 1.2;
}

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

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

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;

}

.btn-primary {
    border-radius: 100px;
border: 2px solid #000;
background: #F9D84B;
box-shadow: 3px 3px 0 0 #000;
    color: #000;
}

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

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
    background: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 100;
    left: 0;
    width: 100%;
}

.nav-container {
    background: white;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid #000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: #000;
    font-weight: 900;
    text-decoration: none;
}

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

.logo-icon .circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid;
}

.logo-icon .circle.purple {
    border-color: #667eea;
    top: 5px;
    left: 8px;
    z-index: 2;
}

.logo-icon .circle.pink {
    border-color: #ff6b6b;
    bottom: 5px;
    right: 8px;
    z-index: 1;
}

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

.nav-list a {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ff6b6b;
}

.play-games-btn {
    background: #FF4444;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px #000;
    text-decoration: none;
}

.play-games-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    background: #FFD93D;
    padding: 200px 0 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.hero-left h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 5rem;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 900;
}

.hero-left p {
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    max-width: 600px;
}

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

.hero-cloud {
    background: white;
    padding: 20px 30px;
    border-radius: 30px;
    border: 3px solid #000;
    font-weight: 700;
    color: #000;
    font-size: 18px;
    position: relative;
    box-shadow: 4px 4px 0px #000;
}

.hero-cloud::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #000;
}

.hero-cloud::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 42px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid white;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.btn-hero-primary {
    background: #FF4444;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #000;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
}

.btn-hero-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.btn-hero-secondary {
    background: white;
    color: #000;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #000;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
}

.btn-hero-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: #f0f0f0;
}

/* ===== OUR GAMES MARQUEE ===== */
.our-games-marquee {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: white;
    font-weight: 900;
    margin-right: 100px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.our-games-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* ===== EASY START SECTION ===== */
.easy-start {
    background: linear-gradient(135deg, #8A55FF 0%, #7645df 100%);
    padding: 80px 0;
}

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

.easy-start h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 30px;
}

.game-preview {
   box-shadow: 6px 6px 0 0 #000;
   max-width: 450px;
   width: 100%;
}

.game-preview img {
    width: 100%;
  
    display: block;
   
}

.easy-start-text p {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 18px;
}

.easy-start-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-interface {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.game-screen {
    flex: 1;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
}

.game-controls {
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* ===== WHY ZUPHERION SECTION ===== */
.why-zupherion {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-zupherion h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 4px solid #000;
box-shadow: 6px 6px 0 0 #000;
}

.feature-card img {
    width: 80px;
}

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

.feature-card.yellow {
    background: linear-gradient(135deg, #ffe055 0%, #fcb69f 100%);
}

.feature-card.purple {
    background: linear-gradient(135deg, #81caff 0%, #fed6e3 100%);
}

.feature-card.gray {
    background: linear-gradient(135deg, #d299c2 0%, #ffce2c 100%);
}

.feature-card.teal {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== RECOMMENDATIONS SECTION ===== */
.recommendations {
    padding: 80px 0;
    background: white;
}

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

.recommendations-text h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
}

.recommendations-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.recommendations-visual {
    display: flex;
    justify-content: center;
    align-items: center;
 
    max-width: 450px;
    box-shadow: 6px 6px 0 0 #000;
}

.recommendations-visual img {
    width: 100%;
display: block;
  
}

/* ===== FEATURES LIST ===== */
.features-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 500px;
border: 4px solid #000;
background: #FFF;
box-shadow: 6px 6px 0 0 #000;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
   width: 100%;
  
}

.feature-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #52c29c 0%, #4b72a2 100%);
    color: white;
 
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact .speech-bubble {
    display: inline-block;
    margin: 20px 0;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact a {
    color: #000;
   text-decoration: none;
}

.lets-talk {
    margin-top: 30px;
    padding: 15px 60px;
    font-size: 18px;
    background: white;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 500px;
border: 4px solid #000;
background: #FFF;
box-shadow: 6px 6px 0 0 #000;
text-decoration: none;
}

.lets-talk:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: baseline;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    width: fit-content;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-info a {
    color: #a8edea;
    text-decoration: underline;
}

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

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

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

.games-grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 50px;
}

.game-item {
    width: 100%;
    flex: 0 1 31%;
    box-shadow: 6px 6px 0 0 #000;
}

.game-item img {
    width: 100%;
    display: block;
}

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

    /* Mobile Header */
    .header {
        padding: 15px 0;
    }

    .nav-container {
        padding: 12px 20px;
        
    }

    .game-item {
        flex: 0 1 44%;
    }

    .h-btn {
      display: none;
    }

    .logo {
        font-size: 20px;
    }

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

    .logo-icon .circle {
        width: 16px;
        height: 16px;
        border: 2px solid;
    }

    /* Mobile Navigation */
    .nav {
        display: none;
    }

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

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

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

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-left p {
        max-width: 100%;
    }

    .hero-right {
        align-items: center;
    }

    .hero-buttons {
        align-items: center;
        width: 100%;
        max-width: 300px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    /* Marquee */
    .marquee-item {
        font-size: 2rem;
        margin-right: 60px;
    }

    /* Games Navigation */
    .games-nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Easy Start */
    .easy-start-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .easy-start h2 {
        font-size: 2rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
    }

    /* Recommendations */
    .recommendations-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .recommendations-text h2 {
        font-size: 2rem;
    }

    /* Feature Items */
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Contact */
    .contact h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    /* Cookie Consent */
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .footer-logo {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 15px;
        border-radius: 30px;
    }

    .logo {
        font-size: 18px;
    }

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

    .play-games-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-left p {
        font-size: 18px;
    }

    .hero-cloud {
        padding: 15px 20px;
        font-size: 16px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }

    .marquee-item {
        font-size: 1.5rem;
        margin-right: 40px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-zupherion h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

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

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

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

              
                

                