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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    color: #e17055;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #e17055;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e17055;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 67, 147, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(116, 185, 255, 0.4);
}

.btn-game {
    background: linear-gradient(135deg, #55a3ff, #003d82);
    color: white;
    font-size: 0.85rem;
    padding: 8px 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 70vh;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2d3436;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.macaron {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.macaron-pink {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    top: 20%;
    right: 30%;
    animation-delay: -0.5s;
}

.macaron-green {
    background: linear-gradient(135deg, #55efc4, #00b894);
    bottom: 30%;
    right: 10%;
    animation-delay: -1s;
}

.macaron-blue {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    top: 40%;
    left: 20%;
    animation-delay: -1.5s;
}

.macaron-yellow {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    bottom: 10%;
    left: 40%;
    animation-delay: -2s;
}

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

/* Games Section */
.games-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.game-image {
    flex: 0 0 300px;
    margin-bottom: 0;
}

.placeholder-image {
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-screenshot {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ivy-bg {
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.candy-bg {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.rainbow-bg {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8, #74b9ff);
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #636e72;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* YouTube Section */
.youtube-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.youtube-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.youtube-info h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.youtube-info p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 500;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-align: center;
}

.youtube-btn:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #F56040, #F77737);
    box-shadow: 0 4px 15px rgba(196, 53, 132, 0.3);
}

.instagram-btn:hover {
    box-shadow: 0 6px 25px rgba(196, 53, 132, 0.4);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0A5F9A);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.4);
}

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

.youtube-video {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.youtube-video iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 15px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.floating-treats {
    position: relative;
    width: 200px;
    height: 200px;
}

.treat {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.treat:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.treat:nth-child(2) { top: 20%; right: 20%; animation-delay: -0.8s; }
.treat:nth-child(3) { bottom: 20%; right: 0; animation-delay: -1.6s; }
.treat:nth-child(4) { bottom: 0; left: 30%; animation-delay: -2.4s; }
.treat:nth-child(5) { top: 30%; left: 0; animation-delay: -3.2s; }

/* Game-specific styles for Finding Ivy page */
.game-hero {
    padding: 120px 0 60px;
    min-height: 60vh;
}

.ivy-theme {
    background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
}

.game-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.game-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-screen {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.game-placeholder {
    height: 250px;
    border-radius: 15px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ivy-character {
    font-size: 3rem;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.garden-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.flower, .butterfly {
    position: absolute;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.flower:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.flower:nth-child(2) { bottom: 30%; right: 15%; animation-delay: -1s; }
.flower:nth-child(3) { top: 60%; left: 80%; animation-delay: -2s; }
.butterfly:nth-child(4) { top: 10%; right: 30%; animation-delay: -0.5s; }
.butterfly:nth-child(5) { bottom: 10%; left: 60%; animation-delay: -1.5s; }

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

.game-details {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.game-description h2 {
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.game-description h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #636e72;
}

.game-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #2d3436;
}

.value {
    color: #636e72;
}

.screenshot-gallery {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.screenshots {
    display: grid;
    gap: 1rem;
}

.screenshot-placeholder {
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.garden-scene {
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.puzzle-scene {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.forest-scene {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.game-reviews {
    padding: 60px 0;
}

.game-reviews h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 2rem;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;