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

a{
    text-decoration: none;
    color: #fff;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Quicksand', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #4a1f1a;
    background: linear-gradient(135deg, #fff1eb, #ffd7c2, #ffc0ad);
    min-height: 100vh;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fb7185, #f97316, #ea580c);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.loading-progress {
    width: 80%;
    max-width: 300px;
    margin: 20px auto 0;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fb7185);
    width: 0%;
    animation: progress 3s ease-in-out infinite;
    border-radius: 4px;
}

.progress-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== HEADER STYLES ===== */
.site-header {
    background: rgba(255, 248, 245, 0.78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 14px 40px rgba(154, 52, 18, 0.16);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(251, 146, 60, 0.35);
    transition: all 0.3s ease;
}

.site-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    transition: all 0.3s ease;
}

.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #7c2d12;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ea580c, #f97316, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: font-size 0.3s ease;
}

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

/* Navigation Menu */
.site-nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #7c2d12;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #f97316, #fb7185);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.35);
}

.nav-icon {
    font-size: 1.2rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* background: white; */
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3); */
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #7c2d12;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
    padding-left: 30px;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Mobile dropdown menu active state */
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: white;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    border: none;
    padding: 15px 0;
    max-height: 500px;
    overflow-y: auto;
}

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Mobile menu specific styles */
@media (max-width: 767px) {
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
}

/* Search Section */
.site-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 280px;
}

.search-shell {
    position: relative;
    display: flex;
    align-items: center;
    width: min(100%, 320px);
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(129, 199, 132, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 24px rgba(46, 125, 50, 0.12);
}

.search-input {
    padding: 12px 52px 12px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #1d4d35;
    font-size: 0.98rem;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #43a047, #66bb6a);
    border: none;
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(67, 160, 71, 0.28);
}

.search-btn:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 12px 22px rgba(67, 160, 71, 0.36);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #4caf50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-search-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #4caf50;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 1002;
}

.mobile-search-toggle:hover {
    background: rgba(76, 175, 80, 0.1);
}

.mobile-search-toggle .search-line {
    position: absolute;
    width: 3px;
    height: 10px;
    background: #4caf50;
    transform: rotate(145deg);
    top: 22px;
    left: 22px;
}

.mobile-search-toggle .search-circle {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #4caf50;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

/* Search toggle active state (close icon) */
.mobile-search-toggle.active .search-line {
    transform: rotate(45deg);
    width: 20px;
    height: 3px;
    top: 18px;
    left: 10px;
}

.mobile-search-toggle.active .search-circle {
    width: 20px;
    height: 3px;
    border: none;
    background: #4caf50;
    border-radius: 0;
    top: 18px;
    left: 10px;
    transform: rotate(-45deg);
}

/* ===== HERO BANNER SECTION (GameDrove Nature Style) ===== */
.hero-section {
    position: relative;
    padding: 20px 0 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #7c2d12 0%, #ea580c 35%, #fb7185 100%);
}

.nature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
    animation: float 15s ease-in-out infinite;
}

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

.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaves::before,
.floating-leaves::after {
    content: '🍃';
    position: absolute;
    font-size: 2rem;
    animation: leafFloat 20s linear infinite;
    opacity: 0.7;
}

.floating-leaves::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-leaves::after {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes leafFloat {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-content {
    padding-right: 20px;
}

.nature-title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.nature-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fffaf7;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 8px 24px rgba(60, 22, 12, 0.45);
}

.nature-highlight {
    color: #ffe0d1;
    text-shadow: 0 6px 18px rgba(60, 22, 12, 0.35);
}

.leaf-accent {
    font-size: 2rem;
    animation: sway 3s ease-in-out infinite;
}

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

.banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 250, 247, 0.96);
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 0 4px 14px rgba(60, 22, 12, 0.35);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #fff7f3, #ffe0d1);
    color: #9a3412;
    box-shadow: 0 10px 25px rgba(60, 22, 12, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(60, 22, 12, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #fffaf7;
    border: 1px solid rgba(255, 245, 240, 0.45);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-3px);
}

/* Ecosystem Showcase */
.ecosystem-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.showcase-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 300px;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.slide-content {
    display: flex;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f97316, #fb7185);
}

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

.slide-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #9a3412;
    margin-bottom: 15px;
    line-height: 1.3;
}

.slide-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.slide-category {
    background: linear-gradient(45deg, #f97316, #fb7185);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.slide-play-btn {
    background: linear-gradient(45deg, #ea580c, #f97316);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.slide-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 52, 18, 0.24);
}

.showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.showcase-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.showcase-prev {
    left: 10px;
}

.showcase-next {
    right: 10px;
}

.showcase-indicators {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* ===== GAME CATEGORIES SECTION ===== */
.game-categories {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #9a3412;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Quicksand', sans-serif;
}

.title-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    color: #9a3412;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.28);
}

.view-all-btn:hover {
    background: rgba(249, 115, 22, 0.18);
    transform: translateY(-2px);
}

.category-chip-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-chip {
    background: rgba(255, 255, 255, 0.85);
    color: #7c2d12;
    border: 1px solid rgba(249, 115, 22, 0.28);
    padding: 12px 25px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.08);
}

.category-chip:hover,
.category-chip.active {
    background: linear-gradient(45deg, #f97316, #fb7185);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.22);
}

.game-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 237, 0.96));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(154, 52, 18, 0.12);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(251, 146, 60, 0.24);
}

.game-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(154, 52, 18, 0.18);
    border-color: rgba(249, 115, 22, 0.4);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #7c2d12;
    margin-bottom: 10px;
    line-height: 1.3;
}

.game-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.game-category {
    background: linear-gradient(45deg, #f97316, #fb7185);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    font-weight: 600;
}

.game-tile__play-btn {
    width: 100%;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    border: none;
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(154, 52, 18, 0.18);
}

.game-tile__play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(154, 52, 18, 0.26);
}

/* ===== LOAD MORE SECTION ===== */
.load-more-section {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: #9a3412;
    border: 2px solid #ea580c;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.18);
}

/* ===== POPULAR GAMES SECTION ===== */
.popular-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5ef 0%, #ffe2d1 100%);
}

.popular-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 40px;
}

.popular-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.popular-card {
    min-width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.popular-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
}

.popular-card::before {
    content: '🔥';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

.popular-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-card:hover .popular-image {
    transform: scale(1.1);
}

.popular-info {
    padding: 20px;
}

.popular-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c5e1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.popular-category {
    background: linear-gradient(45deg, #4caf50, #81c784);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.popular-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #4caf50, #81c784);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ===== NEW GAMES SECTION ===== */
.new-games {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 25px;
}

.masonry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.masonry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
}

.masonry-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.masonry-card:hover .masonry-image {
    transform: scale(1.05);
}

.masonry-info {
    padding: 15px;
}

.masonry-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c5e1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.masonry-category {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* ===== ECO CHALLENGE SECTION (GameDrove Unique Feature) ===== */
.eco-challenge-section {
    background: linear-gradient(135deg, #4caf50, #81c784);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.eco-challenge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    animation: float 15s ease-in-out infinite;
}

.challenge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.challenge-text {
    flex: 1;
}

.challenge-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.challenge-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.challenge-btn {
    background: white;
    color: #2e7d32;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.challenge-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.challenge-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.leaf-container {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    position: relative;
    overflow: hidden;
}

.leaf-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

.challenge-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== NATURE FOOTER ===== */
.nature-footer {
    position: relative;
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 55%, #fb7185 100%);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(251, 146, 60, 0.35);
    overflow: hidden;
}

.nature-overlay-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 20%);
}

.nature-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nature-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nature-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nature-logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.nature-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: 'Quicksand', sans-serif;
}

.nature-description {
    color: rgba(255, 244, 237, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.nature-stats {
    display: flex;
    gap: 30px;
}

.nature-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd7c2;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.nature-links-section, .nature-categories-section, .nature-social-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nature-links-title, .nature-categories-title, .nature-social-title {
    color: #ffd7c2;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.nature-links, .nature-category-links, .nature-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nature-links a, .nature-category-links a {
    color: rgba(255, 244, 237, 0.82);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nature-links a:hover, .nature-category-links a:hover {
    color: white;
    transform: translateX(5px);
}

.nature-social-links {
    flex-direction: row;
    gap: 15px;
}

.nature-social-link {
    color: #ffd7c2;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nature-social-link:hover {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.nature-contact {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nature-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
    font-size: 0.9rem;
}

.nature-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nature-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nature-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

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

.nature-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nature-bottom-links a:hover {
    color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #4caf50, #81c784);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

/* ===== ERROR MESSAGES ===== */
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #f44336;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

    .banner-content {
        padding-right: 0;
    }

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

    .challenge-content {
        flex-direction: column;
        text-align: center;
    }

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

    .nature-social-links {
        justify-content: center;
    }

    .nature-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .nature-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        grid-template-rows: auto auto auto;
        align-items: center;
        gap: 10px;
        padding: 0 15px;
        height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: center;
    }

    .logo-section {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
    }

    .mobile-search-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
        z-index: 1000;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        height: calc(100vh - 60px);
    }

    .nav-menu.active {
        display: block;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .search-section {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
        z-index: 999;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        height: calc(100vh - 60px);
    }

    .search-section.active {
        display: block;
        transform: translateY(0);
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        width: 100%;
    }

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

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

    .nature-title {
        font-size: 2.2rem;
    }

    .nature-stats {
        flex-direction: column;
        gap: 15px;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding: 60px 0;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        text-align: center;
    }

    .banner-content {
        padding-right: 0;
        order: 2;
    }

    .banner-featured {
        order: 1;
    }

    .nature-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .nature-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .nature-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

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

/* ===== GAME CAROUSEL SECTION ===== */
.featured-carousel-section {
    background: linear-gradient(180deg, rgba(244, 251, 245, 0.96), rgba(226, 244, 229, 0.92));
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

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

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9a3412;
    margin: 0;
}

.title-icon {
    font-size: 2.8rem;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #9a3412;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.18);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(249, 115, 22, 0.24);
}

.carousel-btn:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.32);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
    width: max-content;
}

.carousel-item {
    flex: 0 0 280px;
    position: relative;
    min-width: 280px;
}

.game-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.14);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(249, 115, 22, 0.12);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(234, 88, 12, 0.22);
}

.game-image {
    position: relative;
    height: 180px;
    background: linear-gradient(45deg, #fff1eb, #ffd7c2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    font-size: 4rem;
    opacity: 0.8;
    animation: placeholderPulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@keyframes placeholderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #9a3412;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.game-category {
    font-size: 0.9rem;
    color: #fff;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9a3412;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 52, 34, 0.1), rgba(13, 52, 34, 0.72));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.game-tile:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    background: white;
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.28);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #f97316;
    transform: scale(1.2);
}

.indicator:hover {
    background: #fb7185;
}

/* ===== MODERN HERO SECTION ===== */
.modern-hero {
    position: relative;
    min-height: 85vh;
    padding: 30px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff4ed 0%, #ffe2d1 25%, #ffc9b8 50%, #fb7185 75%, #f97316 100%);
    background-size: 400% 400%;
    animation: modernFlow 15s ease-in-out infinite;
}

@keyframes modernFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.12), rgba(251, 113, 133, 0.08));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatAround 20s linear infinite;
}

.float-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

.float-element.element-3 {
    top: 80%;
    left: 20%;
    animation-delay: 8s;
}

.float-element.element-4 {
    top: 30%;
    left: 70%;
    animation-delay: 12s;
}

.float-element.element-5 {
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-20px) translateX(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg);
    }
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 70vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.18);
    width: fit-content;
    font-weight: 600;
    color: #9a3412;
    border: 2px solid rgba(249, 115, 22, 0.28);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    margin: 0;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    background: linear-gradient(45deg, #ea580c, #f97316, #fb7185);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    position: relative;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.hero-btn.primary {
    background: linear-gradient(45deg, #f97316, #fb7185);
    color: white;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.28);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #9a3412;
    border: 2px solid #f97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.14);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.35);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50px;
}

.hero-btn:active .btn-glow {
    transform: scale(1);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    margin-top: 5px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-game-showcase {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 70px rgba(234, 88, 12, 0.2);
    border: 2px solid rgba(249, 115, 22, 0.18);
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.showcase-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9a3412;
    margin: 0;
    white-space: nowrap;
}

.showcase-controls {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.mini-carousel-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: #9a3412;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.mini-carousel-btn:hover {
    background: #f97316;
    color: white;
    transform: scale(1.1);
}

.mini-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 12px;
    flex-grow: 1;
    display: flex;
    align-items: stretch;
}

.mini-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
}

.mini-carousel-item {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.mini-game-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.18);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mini-game-image {
    position: relative;
    height: 100px;
    background: linear-gradient(45deg, #fff1eb, #ffd7c2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-image-placeholder {
    font-size: 2.2rem;
    opacity: 0.8;
    animation: miniPulse 3s ease-in-out infinite;
}

@keyframes miniPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mini-game-info {
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    justify-content: space-between;
}

.mini-game-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #9a3412;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.4em;
}

.mini-game-category {
    font-size: 0.75rem;
    color: #f97316;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-game-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    flex-wrap: wrap;
}

.mini-stars {
    font-size: 0.65rem;
    line-height: 1;
}

.mini-rating-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9a3412;
    line-height: 1;
}

.mini-play-btn {
    background: linear-gradient(45deg, #f97316, #fb7185);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
}

.mini-play-btn:hover {
    background: linear-gradient(45deg, #fb7185, #f97316);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.28);
}

.mini-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    padding-top: 5px;
}

.mini-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.28);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-indicator.active {
    background: #f97316;
    transform: scale(1.3);
}

.mini-indicator:hover {
    background: #fb7185;
}

/* ===== ORGANIC ECOSYSTEMS SECTION ===== */
.organic-ecosystems {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f8e9, #e8f5e8, #dcedc8);
    position: relative;
    overflow: hidden;
}

.ecosystem-flow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.organic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.header-blob {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 50px;
    border-radius: 60% 40% 50% 60%;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    animation: headerFloat 6s ease-in-out infinite;
}

@keyframes headerFloat {
    0%, 100% {
        transform: translateY(0px);
        border-radius: 60% 40% 50% 60%;
    }
    50% {
        transform: translateY(-8px);
        border-radius: 40% 60% 40% 50%;
    }
}

.ecosystem-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.title-nature {
    font-size: 3rem;
    animation: titleNatureSpin 4s ease-in-out infinite;
}

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

.ecosystem-subtitle {
    font-size: 1.2rem;
    color: #4caf50;
    font-weight: 400;
    margin: 0;
}

.view-all-organic {
    position: relative;
}

.organic-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.organic-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.link-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.organic-link:active .link-ripple {
    transform: scale(1);
}

/* ===== ORGANIC FILTERS ===== */
.organic-filters {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.filter-flow {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.organic-filter {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c5e1a;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.organic-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.organic-filter.active {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border-color: #2e7d32;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.filter-nature {
    font-size: 1.2rem;
}

.filter-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.organic-filter:active .filter-ripple {
    transform: scale(1);
}

/* ===== ORGANIC GAMES FLOW ===== */
.games-organic-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.organic-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.organic-game-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30% 70% 60% 40%;
    padding: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    animation: cardFloat 8s ease-in-out infinite;
}

.organic-game-card:nth-child(odd) {
    animation-delay: 1s;
}

.organic-game-card:nth-child(even) {
    animation-delay: 3s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        border-radius: 30% 70% 60% 40%;
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
        border-radius: 70% 30% 40% 60%;
    }
}

.organic-game-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.25);
    border-radius: 50% 50% 50% 50%;
}

.organic-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 40% 60% 50% 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
}

.organic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.organic-game-card:hover .organic-card-image img {
    transform: scale(1.1);
}

.organic-card-content {
    position: relative;
    z-index: 2;
}

.organic-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 10px;
    line-height: 1.3;
}

.organic-card-category {
    display: inline-block;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.organic-card-description {
    color: #4caf50;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.organic-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.organic-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #66bb6a;
}

.organic-play-btn {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.organic-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* ===== ORGANIC LOAD MORE ===== */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.load-more-organic {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.organic-load-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #4caf50;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.organic-load-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3);
}

.btn-nature {
    font-size: 1.3rem;
    animation: btnNatureGrow 3s ease-in-out infinite;
}

@keyframes btnNatureGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-organic-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.organic-load-btn:active .btn-organic-ripple {
    transform: scale(1);
}

/* ===== ORGANIC FEATURED DISPLAY STYLES ===== */
.organic-featured-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    height: 100%;
    justify-content: center;
}

.featured-nature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: featuredIconFloat 3s ease-in-out infinite;
}

@keyframes featuredIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.featured-game-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin: 0;
    line-height: 1.2;
}

.featured-category {
    font-size: 1.1rem;
    color: #4caf50;
    font-weight: 500;
    margin: 0;
}

.featured-description {
    font-size: 1rem;
    color: #2c5e1a;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #66bb6a;
    font-weight: 500;
}

/* ===== RESPONSIVE GAME CAROUSEL ===== */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 250px;
    }

    .carousel-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .game-carousel-section {
        padding: 40px 0;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

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

    .carousel-item {
        flex: 0 0 220px;
    }

    .game-card {
        border-radius: 15px;
    }

    .game-image {
        height: 150px;
    }

    .image-placeholder {
        font-size: 3rem;
    }

    .game-info {
        padding: 15px;
    }

    .game-title {
        font-size: 1.1rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        flex: 0 0 200px;
    }

    .carousel-track {
        gap: 15px;
    }

    .game-image {
        height: 120px;
    }

    .image-placeholder {
        font-size: 2.5rem;
    }
}

/* ===== RESPONSIVE MODERN HERO ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .title-main {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    .modern-hero {
        min-height: 75vh;
        padding: 50px 0;
    }

    .hero-container {
        padding: 0;
        overflow-x: hidden;
    }

    .hero-content {
        gap: 40px;
        min-height: auto;
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 5px;
    }

    .modern-hero,
    .hero-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .featured-game-showcase {
        position: relative;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
        padding: 15px;
        box-sizing: border-box;
        transform: none;
        left: auto;
    }

    .title-main {
        font-size: 2.8rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 30px;
    }

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

    .featured-game-showcase {
        max-width: 100%;
        padding: 20px;
    }

    .showcase-title {
        font-size: 1.1rem;
    }

    .mini-carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .mini-game-image {
        height: 100px;
    }

    .mini-image-placeholder {
        font-size: 2rem;
    }

    .mini-game-title {
        font-size: 0.9rem;
    }

    .mini-game-info {
        padding: 12px;
    }

    .mini-play-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    /* Mini Carousel Mobile Fix */
    .featured-game-showcase {
        max-width: 100%;
        min-height: 450px;
    }

    .mini-carousel-wrapper {
        width: 100%;
        overflow: hidden;
        border-radius: 15px;
        min-height: 300px;
    }

    .mini-carousel-track {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.4s ease;
    }

    .mini-carousel-item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        display: flex;
        align-items: stretch;
    }

    .mini-game-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        background: white;
        border-radius: 15px;
        overflow: hidden;
    }

    .mini-game-image {
        height: 150px;
    }

    .mini-game-card {
        width: 100% !important;
    }

    .float-element {
        font-size: 1.5rem;
    }

    .games-organic-flow {
        grid-template-columns: 1fr;
    }

    .filter-flow {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        min-height: 70vh;
        padding: 25px 0;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
    }

    .title-main {
        font-size: 2.2rem;
    }

    .title-sub {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .featured-game-showcase {
        min-height: 400px;
        position: relative;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
        padding: 12px;
        box-sizing: border-box;
        transform: none;
        left: auto;
    }

    .mini-carousel-wrapper {
        min-height: 280px;
    }

    .mini-game-image {
        height: 130px;
    }

    .mini-game-card {
        width: 100% !important;
    }

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

    .title-flow {
        font-size: 1.6rem;
    }

    .nature-elements {
        position: static;
        margin-top: 15px;
    }

    .ecosystem-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .header-blob {
        padding: 30px 25px;
    }

    .organic-game-card {
        padding: 20px;
    }
}

/* ===== ORGANIC FOOTER ===== */

.organic-footer {
    position: relative;
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 55%, #fb7185 100%);
    color: white;
    overflow: hidden;
}

.footer-organic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-shape {
    position: absolute;
    border-radius: 50% 30% 70% 40%;
    background: rgba(255, 255, 255, 0.05);
    animation: footerShapeFloat 25s ease-in-out infinite;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.footer-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -10%;
    right: 10%;
    animation-delay: 8s;
}

.footer-shape-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 20%;
    animation-delay: 16s;
}

@keyframes footerShapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 50% 30% 70% 40%;
    }
    33% {
        transform: translateY(-20px) rotate(3deg) scale(1.05);
        border-radius: 30% 70% 40% 50%;
    }
    66% {
        transform: translateY(-10px) rotate(-2deg) scale(0.95);
        border-radius: 70% 40% 50% 30%;
    }
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 85% 75%, rgba(255, 215, 194, 0.12) 1.5px, transparent 1.5px),
                radial-gradient(circle at 45% 85%, rgba(255, 192, 173, 0.12) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 50px 50px;
    animation: footerParticlesDrift 30s linear infinite;
}

@keyframes footerParticlesDrift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-60px) translateY(-60px); }
}

.footer-organic-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.footer-content-flow {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.organic-brand-section,
.organic-nav-section,
.organic-categories-section,
.organic-social-section {
    position: relative;
}

.brand-blob,
.nav-blob,
.categories-blob,
.social-blob {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 60% 40%;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: footerBlobPulse 12s ease-in-out infinite;
}

.brand-blob {
    animation-delay: 0s;
}

.nav-blob {
    animation-delay: 3s;
}

.categories-blob {
    animation-delay: 6s;
}

.social-blob {
    animation-delay: 9s;
}

@keyframes footerBlobPulse {
    0%, 100% {
        border-radius: 30% 70% 60% 40%;
        transform: scale(1);
    }
    50% {
        border-radius: 70% 30% 40% 60%;
        transform: scale(1.02);
    }
}

.organic-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.organic-logo-icon {
    font-size: 2.5rem;
    animation: logoIconSway 6s ease-in-out infinite;
}

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

.organic-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd7c2;
}

.organic-description {
    color: #fff1eb;
    line-height: 1.6;
    margin-bottom: 25px;
}

.organic-eco-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eco-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #ffd7c2;
}

.badge-icon {
    font-size: 1.1rem;
}

.organic-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd7c2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.organic-nav-links,
.organic-category-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.organic-link,
.organic-bottom-link {
    color: #fff1eb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.organic-link:hover,
.organic-bottom-link:hover {
    color: #ffd7c2;
    transform: translateX(5px);
}

.organic-social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.organic-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.organic-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.organic-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    color: #fff1eb;
    font-size: 0.9rem;
    margin: 0;
}

.organic-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.footer-bottom-blob {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 20px 30px;
    backdrop-filter: blur(5px);
}

.organic-copyright {
    color: #ffd7c2;
    margin: 0;
    font-size: 0.9rem;
}

.organic-bottom-links {
    display: flex;
    gap: 25px;
}

/* ===== ORGANIC RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .eco-content-blob {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-content-flow {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .organic-categories-section {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .organic-eco-challenge {
        padding: 60px 0;
    }

    .eco-content-blob {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .eco-organic-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .eco-main-icon {
        font-size: 4rem;
    }

    .eco-floating-elements {
        width: 150px;
        height: 150px;
    }

    .eco-element {
        font-size: 1.5rem;
    }

    .footer-content-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-blob {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .organic-bottom-links {
        justify-content: center;
    }

    .organic-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .eco-organic-title {
        font-size: 1.8rem;
    }

    .eco-title-nature {
        font-size: 2rem;
    }

    .eco-organic-subtitle {
        font-size: 1rem;
    }

    .eco-main-icon {
        font-size: 3rem;
    }

    .brand-blob,
    .nav-blob,
    .categories-blob,
    .social-blob {
        padding: 25px 20px;
    }

    .organic-logo-text {
        font-size: 1.6rem;
    }

    .organic-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== GAMES SECTION ===== */
.games-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fdf8, #f1f8e9);
    position: relative;
}

.games-section:nth-child(even) {
    background: linear-gradient(180deg, #e8f5e8, #dcedc8);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.title-icon {
    font-size: 3rem;
    animation: titleIconFloat 3s ease-in-out infinite;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #4caf50;
    font-weight: 400;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 600px;
}

@media (max-width: 768px) {
    .games-section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 20px;
    }

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

    .title-icon {
        font-size: 2.5rem;
    }
}

/* ===== FEATURED BLOB CONTAINER ===== */
.featured-blob {
    flex: 1;
    min-height: 400px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60% 40% 50% 60%;
    backdrop-filter: blur(10px);
    padding: 20px;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translateY(0px);
        border-radius: 60% 40% 50% 60%;
    }
    50% {
        transform: translateY(-10px);
        border-radius: 40% 60% 40% 50%;
    }
}

.featured-content {
    width: 100%;
    height: 100%;
    min-height: 360px;
    position: relative;
}

.organic-featured-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #4caf50;
    text-align: center;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== FEATURED DISPLAY ===== */
.featured-display {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.featured-game-showcase {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.featured-game-showcase:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.3);
}

.showcase-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.8), rgba(102, 187, 106, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-game-showcase:hover .showcase-overlay {
    opacity: 1;
}

.featured-game-showcase:hover .featured-img {
    transform: scale(1.05);
}

.showcase-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.showcase-play-btn:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-icon {
    font-size: 1.3rem;
}

.showcase-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 15px;
}

.label-icon {
    font-size: 1rem;
}

.showcase-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 8px;
    line-height: 1.2;
}

.showcase-category {
    font-size: 1rem;
    color: #4caf50;
    font-weight: 500;
    margin-bottom: 15px;
}

.showcase-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.showcase-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    font-size: 0.9rem;
    color: #4caf50;
    font-weight: 500;
    background: rgba(76, 175, 80, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
}

.showcase-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn.primary {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.action-btn.secondary {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
    transform: translateY(-2px);
}

/* Featured Mini Grid */
.featured-mini-grid {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.mini-grid-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
}

.mini-header-icon {
    font-size: 1.3rem;
}

.mini-games {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.mini-game-card {
    flex: 0 0 auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.mini-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.mini-image {
    position: relative;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.8), rgba(102, 187, 106, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-image:hover .mini-overlay {
    opacity: 1;
}

.mini-image:hover img {
    transform: scale(1.1);
}

.mini-play {
    font-size: 1.2rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mini-info {
    padding: 12px;
    text-align: center;
}

.mini-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 5px;
    line-height: 1.2;
}

.mini-category {
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Featured Display */
@media (max-width: 768px) {
    .featured-display {
        gap: 15px;
    }

    .featured-game-showcase {
        flex-direction: column;
    }

    .showcase-image {
        min-height: 200px;
    }

    .showcase-info {
        padding: 20px;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-actions {
        flex-direction: column;
    }

    .action-btn {
        justify-content: center;
    }

    .featured-mini-grid {
        padding: 15px;
    }

    .mini-games {
        gap: 10px;
    }

    .mini-game-card {
        width: 100px;
    }

    .mini-carousel-item .mini-game-card {
        width: 100px;
    }

    .mini-image {
        height: 70px;
    }

    .mini-info {
        padding: 8px;
    }

    .mini-title {
        font-size: 0.8rem;
    }
}



/* Responsive Design for Featured Showcase */
@media (max-width: 768px) {
    .featured-showcase {
        flex-direction: column;
        gap: 15px;
    }

    .featured-main {
        min-height: 250px;
    }

    .main-game-card {
        flex-direction: column;
    }

    .main-image-container {
        height: 180px;
    }

    .main-info {
        padding: 20px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .grid-games {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .grid-image-container {
        height: 80px;
    }

    .grid-info {
        padding: 10px;
    }

    .grid-title {
        font-size: 0.8rem;
    }

    .grid-category {
        font-size: 1rem;
    }
}

/* ===== ECOSYSTEMS GRID ===== */
.ecosystems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: ecosystemFloat 3s ease-in-out infinite;
}

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

.ecosystem-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ecosystem-count {
    font-size: 1rem;
    color: #4caf50;
    font-weight: 500;
    margin: 0;
}

/* ===== ENHANCED MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    /* Header mobile optimization */
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Main content padding */
    .main-content {
        padding-top: 0px;
    }

    /* Button responsive */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    /* Form elements */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
    }

    /* Section spacing */
    section {
        padding: 40px 0 !important;
    }

    /* Grid adjustments */
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 15px !important;
    }

    /* Card adjustments */
    .game-card {
        min-height: auto;
    }

    .game-image {
        height: 150px;
    }

    /* Footer optimization */
    .organic-footer {
        padding: 40px 0;
    }

    .footer-content-flow {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screen optimization */
    .container {
        padding: 0 12px;
    }

    .nav-container {
        height: 55px;
        padding: 0 10px;
    }

    /* Typography scaling */
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    /* Button sizing */
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* Grid single column */
    .games-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Reduce gaps */
    section {
        padding: 30px 0 !important;
    }

    /* Hide unnecessary elements on very small screens */
    .desktop-only {
        display: none !important;
    }

    /* Optimize footer */
    .organic-footer-container {
        padding: 40px 12px 20px !important;
    }

    .footer-content-flow {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .brand-blob,
    .nav-blob,
    .categories-blob,
    .social-blob {
        padding: 20px 15px !important;
    }

    .organic-section-title {
        font-size: 1rem;
    }
}

/* ===== DESKTOP BANNER TIGHTENING ===== */
@media (min-width: 1200px) {
    .modern-hero {
        min-height: 70vh;
        padding: 20px 0;
    }
}
