:root {
    --pink: #ff6b8b;
    --teal: #42e695;
    --purple: #a777e3;
    --yellow: #ffb86c;
    --blue: #4facfe;
    
    --bg-light: #f6faff;
    --card-bg: rgba(255, 255, 255, 0.7);
    --text-main: #2d3436;
    --text-muted: #636e72;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Background Elements */
.background-blobs {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 { top: -10%; left: -5%; width: 40vw; height: 40vw; background: #ff9a9e; }
.blob-2 { top: 20%; right: -10%; width: 50vw; height: 50vw; background: #a1c4fd; }
.blob-3 { bottom: -20%; left: 30%; width: 45vw; height: 45vw; background: #fbc2eb; }

/* Navbar */
.navbar {
    margin: 20px auto;
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--pink), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-actions button {
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 15px;
    cursor: pointer;
    font-family: 'Outfit';
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.color-pink { color: var(--pink); }
.color-teal { color: var(--teal); }
.color-purple { color: var(--purple); }
.dot { color: var(--text-main); }

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-primary {
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-primary:hover { transform: scale(1.05); }

.gradient-orange {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: #333;
    box-shadow: 0 5px 15px rgba(255,154,158, 0.4);
}

/* Hero Play Area (Interactive Illustration) */
.hero-play-area {
    margin-top: 50px;
    width: 100%;
    max-width: 800px;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glass-board {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    z-index: 5;
    animation: floatBoard 6s infinite ease-in-out;
}

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

.glass-board h2 {
    font-size: 2.2rem;
    color: var(--pink);
    margin-bottom: 5px;
}

.rotating-slogans {
    height: 1.5em;
    overflow: hidden;
    position: relative;
    margin-top: 5px;
}

.rotating-slogans-inner {
    display: flex;
    flex-direction: column;
    animation: rotateText 10s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.rotating-slogans-inner span {
    height: 1.5em;
    line-height: 1.5em;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes rotateText {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-1.5em); }
    50%, 70% { transform: translateY(-3em); }
    75%, 95% { transform: translateY(-4.5em); }
    100% { transform: translateY(-6em); }
}

.toy-element {
    position: absolute;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 2rem;
    color: white;
}

.toy-cube {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    animation: floatToy 8s infinite ease-in-out alternate;
}

.cube-1 {
    background: var(--pink);
    top: 20px;
    left: 10%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.cube-2 {
    background: var(--blue);
    bottom: 30px;
    left: 20%;
    transform: rotate(25deg);
    animation-delay: -2s;
}

.cube-3 {
    background: var(--yellow);
    top: 50px;
    right: 15%;
    transform: rotate(10deg);
    animation-delay: -4s;
}

.toy-ball {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--teal), #1cb569);
    bottom: 20px;
    right: 10%;
    animation: bounceToy 5s infinite ease-in-out;
}

.toy-star {
    font-size: 4rem;
    background: none;
    box-shadow: none;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatToy 6s infinite ease-in-out;
    animation-delay: -1s;
    filter: drop-shadow(0 10px 15px rgba(255, 215, 0, 0.4));
}

.toy-rocket {
    font-size: 3.5rem;
    background: none;
    box-shadow: none;
    top: 50%;
    left: 5%;
    animation: flyRocket 12s infinite linear;
    z-index: 6;
}

.toy-puzzle {
    font-size: 3.5rem;
    background: none;
    box-shadow: none;
    bottom: 30px;
    left: 35%;
    animation: spinPuzzle 10s infinite linear;
}

.toy-balloon {
    font-size: 4rem;
    background: none;
    box-shadow: none;
    top: 5%;
    right: 25%;
    animation: floatBalloon 7s infinite ease-in-out alternate;
}

.decorative-cloud {
    font-size: 5rem;
    background: none;
    box-shadow: none;
    opacity: 0.6;
    z-index: 1;
}
.cloud-1 { top: -20px; left: -10%; animation: driftCloud 25s infinite linear alternate; }
.cloud-2 { top: 120px; right: -5%; animation: driftCloud 30s infinite linear alternate-reverse; }

@keyframes flyRocket {
    0% { transform: translate(-50px, 50px) rotate(15deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(500px, -200px) rotate(15deg); opacity: 0; }
}

@keyframes spinPuzzle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes floatBalloon {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-40px) rotate(5deg); }
}

@keyframes driftCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

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

@keyframes floatToy {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

@keyframes bounceToy {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Arch Cards */
.category-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 120px 120px 30px 30px;
    padding: 20px 20px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s;
}
.category-card:hover {
    transform: translateY(-10px);
}

.card-pink { background: rgba(255, 238, 242, 0.7); }
.card-blue { background: rgba(235, 245, 255, 0.7); }
.card-yellow { background: rgba(255, 250, 230, 0.7); }
.card-green { background: rgba(235, 255, 242, 0.7); }

.card-number {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 15px;
    font-weight: 800;
}
.num-pink { background: #ffe3e8; color: var(--pink); }
.num-blue { background: #e1effe; color: var(--blue); }
.num-yellow { background: #fff3cd; color: #d39e00; }
.num-green { background: #d4edda; color: #155724; }

.card-img-placeholder {
    font-size: 4rem;
    margin: 20px 0;
}

.card-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
.card-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.btn-shop {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}
.shop-pink { background: var(--pink); }
.shop-blue { background: var(--blue); }
.shop-yellow { background: var(--yellow); }
.shop-green { background: var(--teal); }

/* Products */
.products-section { padding: 40px 0 80px; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.product-img {
    height: 150px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    margin-bottom: 20px;
}

.badge {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-pink { background: #ffe3e8; color: var(--pink); }
.badge-blue { background: #e1effe; color: var(--blue); }
.badge-green { background: #d4edda; color: #155724; }

.product-details h3 {
    margin: 10px 0;
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
}
.price { font-weight: 800; font-size: 1.2rem; }
.btn-add-cart {
    width: 35px; height: 35px;
    border-radius: 50%; border: none;
    color: white; font-size: 1.2rem;
    cursor: pointer;
}
.btn-pink { background: var(--pink); }
.btn-blue { background: var(--blue); }
.btn-green { background: var(--teal); }

/* Footer */
.footer {
    background: white;
    padding: 60px 20px 20px;
    margin-top: 50px;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 40px;
}
.input-group {
    display: flex; margin-top: 15px;
    background: #f1f3f5; border-radius: 30px;
    padding: 5px;
}
.input-group input {
    border: none; background: transparent;
    padding: 10px 20px; outline: none;
    font-family: inherit;
}
.btn-send {
    background: var(--pink); color: white;
    border: none; border-radius: 50%;
    width: 35px; height: 35px; cursor: pointer;
}

.footer-links {
    display: flex; gap: 60px;
}
.link-group { display: flex; flex-direction: column; gap: 10px; }
.link-group h4 { margin-bottom: 10px; }
.link-group a { color: var(--text-muted); text-decoration: none; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px dashed rgba(255, 107, 107, 0.2);
    color: var(--text-muted);
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.header-lang {
    margin-right: 20px;
    align-items: center;
}

.header-lang a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.2s;
}

.header-lang a:hover {
    transform: scale(1.1) translateY(-2px);
    color: var(--pink);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-links { display: none; }
}
