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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #cccccc;
}

.cookie-content a {
    color: #00ff88;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.btn-accept,
.btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #00ff88;
    color: #000;
}

.btn-accept:hover {
    background: #00cc6a;
}

.btn-decline {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666;
}

.btn-decline:hover {
    background: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    width: 100%;
}

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

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

.logo img {
   width: 30px;
}

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

.nav-link {
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: -1;
}

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

.hero-title {
    font-size: 5.5rem;
   
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #00ff88;
  
    font-weight: 700;
}

.hero-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1;
    margin-bottom: 30px;
    width: 50%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat p {
    color: #cccccc;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.4);
}

.hero-image {
    position: relative;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   margin-left: -150px;
}

.hero-image img {
    width: 100%;
    display: block;
}

.game-showcase {
    position: relative;
    height: 100%;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.game-card {
    position: absolute;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.game-card.game-1 {
    top: 50px;
    left: 0;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    animation-delay: 0s;
}

.game-card.game-2 {
    top: 150px;
    left: 150px;
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    animation-delay: 2s;
}

.game-card.game-3 {
    top: 280px;
    left: 50px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    animation-delay: 4s;
}

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

/* Games Section */
.games-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #cccccc;
   
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.game-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-category img {
    width: 60px;
    margin-left: auto;
    display: block;
}

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

.category-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
}

.category-icon.adventure {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-icon.puzzle {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-icon.arcade {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.game-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #00ff88;
}

.game-category p {
    color: #cccccc;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.experience-text {
    max-width: 100%;
}

.experience-paragraph {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.experience-features {
    margin-top: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feature,
.feature-full {
    background: rgba(30, 41, 82, 0.8);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover,
.feature-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature h4,
.feature-full h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 12px;
}

.feature p,
.feature-full p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-full {
    width: 100%;
}

.experience-image {
    position: relative;
flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.experience-image img {
    width: 100%;
}



@keyframes floatIsland {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 12px;
}

.stat-label {
    color: #cccccc;
    font-weight: 500;
}

.game-icons {
    margin-top: 60px;
    width: 100%;
}

.game-icons img {
    width: 100%;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.game-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.game-icon.red {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.game-icon.blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.game-icon.orange {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
}

.game-icon.light-blue {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.game-icon.yellow {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.game-icon.clock {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    position: relative;
}

.game-icon.clock::after {
    content: '⏰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
 
  
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
   
}



/* Small Games Section */
.small-games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 100%);
}

.small-games-content {
   
}

.small-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding-top: 40px;
}

.small-game-item {


    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.small-game-item:hover {
    transform: scale(1.1) rotate(5deg);
}

.small-game-item.game-A {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.small-game-item.game-B {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.small-game-item.game-C {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.small-game-item.game-D {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.small-game-item.game-E {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.small-game-item.game-F {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.cta-button.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.5);
}

.cta-text {
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

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

.footer-bottom p {
    color: #888888;
    font-size: 14px;
}

.footer-soc {
    display: flex;
    gap: 20px;
}

.soc-l img {
    width: 40px;
}

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

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-description {
        width: 100%;
    }

    .hero-image {
        align-items: center;
        margin-left: 0;
    }

    .game-showcase {
        transform: none;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2.2rem;
    }

    .experience-content,
    .small-games-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-image {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }

    .tropical-island {
        width: 300px;
        height: 300px;
    }

    .tropical-island::after {
        font-size: 2rem;
        letter-spacing: 8px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .small-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
      
    }

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

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-button.large {
        padding: 20px 32px;
        font-size: 1.1rem;
    }

    

    .game-category {
        padding: 30px 20px;
    }

    .category-icon {
        font-size: 3rem;
        padding: 15px;
    }

    .tropical-island {
        width: 250px;
        height: 250px;
    }

    .tropical-island::after {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    .feature,
    .feature-full {
        padding: 20px;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .game-card,
    .gallery-item,
    .small-game-item,
    .game-category,
    .stat-card {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }

    .game-card:nth-child(1) { animation-delay: 0.1s; }
    .game-card:nth-child(2) { animation-delay: 0.2s; }
    .game-card:nth-child(3) { animation-delay: 0.3s; }

    .game-category:nth-child(1) { animation-delay: 0.1s; }
    .game-category:nth-child(2) { animation-delay: 0.2s; }
    .game-category:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .game-category,
    .stat-card,
    .gallery-item {
        border: 2px solid #ffffff;
    }
}

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

              
                

                