/* @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Fredoka:wght@400;500;600;700&display=swap'); */

/* Google Fonts: Modern ve okunaklı bir font ekle */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Montserrat:wght@400;500;700&display=swap');

/* Google Fonts: Poppins fontunu ekle */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --text-color: #2D3436;
    --light-bg: #f0f9ff;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f8fafc;
    color: #222;
}

/* Header Styles */
header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 15px;
    background: var(--white);
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.logo span {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Navigation Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Header */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo span {
        font-size: 1.8rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-right: 2rem;
}

.hero-img {
    flex: 1;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    position: relative;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF9A8B, #FF6B6B);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Featured Categories */
.featured-categories {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
}

.featured-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid #f0f9ff;
}

.category-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-card h3 {
    padding: 1.2rem;
    text-align: center;
    color: #FF6B6B;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

.category-card p {
    padding: 0 1.2rem 1.2rem;
    color: #666;
    text-align: center;
    font-size: 1.2rem;
}

/* Products Page */
.products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.modern-title {
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.modern-grid {
    gap: 2.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 350px;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.product-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    border-radius: 14px;
    background: #f0f9ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: #FF6B6B;
    font-weight: 600;
    text-align: center;
}

.product-card p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.7rem;
    text-align: center;
}

.product-card .price {
    font-weight: bold;
    color: #4ECDC4;
    font-size: 1.15rem;
    margin-top: auto;
}

.back-btn {
    display: inline-block;
    margin: 1.5rem 0 1rem 0;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(45deg, #4ECDC4, #FF6B6B);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.back-btn:hover {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

/* About Page */
.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-text h2 {
    color: #FF6B6B;
    margin: 1.5rem 0 1rem;
    font-size: 1.8rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-text ul {
    list-style-position: inside;
    color: #666;
    font-size: 1.1rem;
}

.about-text ul li {
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Page */
.contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    color: #FF6B6B;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #FF6B6B;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f9ff;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FF6B6B;
    outline: none;
    box-shadow: 0 0 10px rgba(255,107,107,0.2);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: linear-gradient(45deg, #FF9A8B, #FF6B6B);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-img {
        max-width: 100%;
        height: 300px;
    }

    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo span {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* Why Us Section */
.why-us {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid #f0f9ff;
    text-align: center;
    padding: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.feature-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #FF9A8B;
}

.feature-card h3 {
    color: #FF6B6B;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    color: #666;
    font-size: 1.2rem;
}

/* Location Section */
.location {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.location h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.location-info {
    text-align: center;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 20px;
}

.location-info h3 {
    color: #FF6B6B;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.location-info p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Advertisement Section */
.advertisement {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.advertisement h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.ad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ad-space {
    background: #f0f9ff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.ad-space h3 {
    color: #FF6B6B;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.ad-space p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.ad-placeholder {
    background: #FF9A8B;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Ads */
@media (max-width: 768px) {
    .ad-grid {
        grid-template-columns: 1fr;
    }
    
    .ad-placeholder {
        min-height: 60px;
    }
}

/* Store Gallery */
.store-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.store-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-section h1 {
    text-align: center;
    color: #FF6B6B;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}

.game-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

#game-frame {
    width: 100%;
    height: 600px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f9ff;
}

#game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 15px;
}

.game-info h2 {
    color: #FF6B6B;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.game-info ul {
    list-style-type: none;
    padding: 0;
}

.game-info ul li {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-info ul li:before {
    content: '🎮';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Active Navigation Link */
nav ul li a.active {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Responsive Game Section */
@media (max-width: 768px) {
    .game-section {
        padding: 2rem 1rem;
    }

    #game-frame {
        height: 400px;
    }

    .game-info ul li {
        font-size: 1.1rem;
    }
}

/* Categories Hero Section */
.categories-hero {
    background: linear-gradient(45deg, #FF9A8B, #FF6B6B);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.categories-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.categories-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Category Section */
.category-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

.category-item.reverse {
    flex-direction: row-reverse;
}

.category-image {
    flex: 1;
    max-width: 500px;
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    flex: 1;
}

.category-content h2 {
    color: #FF6B6B;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.category-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.category-content ul {
    list-style: none;
    padding: 0;
}

.category-content ul li {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.category-content ul li:before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Age Groups Section */
.age-groups {
    background: #f0f9ff;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.age-groups h2 {
    text-align: center;
    color: #FF6B6B;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.age-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.age-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.age-card:hover {
    transform: translateY(-10px);
}

.age-card h3 {
    color: #FF6B6B;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.age-card ul {
    list-style: none;
    padding: 0;
}

.age-card ul li {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.age-card ul li:before {
    content: '🎈';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design for Categories */
@media (max-width: 768px) {
    .categories-hero h1 {
        font-size: 2.2rem;
    }

    .categories-hero p {
        font-size: 1.2rem;
    }

    .category-item {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .category-item.reverse {
        flex-direction: column;
    }

    .category-image {
        max-width: 100%;
    }

    .category-image img {
        height: 300px;
    }

    .category-content h2 {
        font-size: 1.8rem;
    }

    .age-card {
        padding: 1.5rem;
    }

    .age-card h3 {
        font-size: 1.5rem;
    }
}

/* Success Message Styles */
.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-footer {
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 0 auto;
}

@media (max-width: 700px) {
    .modern-grid { gap: 1.2rem; }
    .product-card { padding: 1rem; min-height: 270px; }
    .modern-footer { flex-direction: column; gap: 1rem; padding: 1.2rem 0.5rem; }
    .modern-title { font-size: 1.5rem; }
}

/* Hamburger Menü Stili */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

/* Mobilde Navbar */
@media (max-width: 900px) {
    nav {
        flex-direction: row;
        padding: 0 1rem;
        position: relative;
    }
    .hamburger {
        display: flex;
    }
    nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        width: 200px;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-radius: 0 0 16px 16px;
        display: none;
        z-index: 1001;
    }
    nav ul.open {
        display: flex;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
        border-radius: 0;
        background: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: none;
        transition: background 0.2s;
    }
    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(255,255,255,0.13);
        transform: none;
        box-shadow: none;
    }
    .logo {
        margin-bottom: 0;
    }
}

/* Hamburger menü açıkken animasyon (isteğe bağlı) */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo span, .category-content h2, .footer-section h4, .featured-categories h2, .product-card h3, .modern-title, .about h1, .about-text h2, .contact-info h2, .contact-form h2, .categories-hero h1, .age-card h3, .why-us h2, .feature-card h3, .location h2, .ad-space h3, .store-gallery h2, .game-section h1, .game-info h2 {
    font-family: 'Poppins', sans-serif !important;
}

nav ul li a {
    font-family: 'Poppins', sans-serif;
} 