* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #FFB6C1 100%);
    touch-action: manipulation;
}

.landing {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.landing-content {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.landing h1 {
    color: #4682B4;
    font-size: 2.2em;
    line-height: 1.1;
    margin-bottom: 15px;
}

.subtitle {
    color: #666;
    font-size: 1em;
    margin-bottom: 25px;
}

.characters-preview {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.char-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    animation: bounce 2s infinite;
}

.char-dot:nth-child(2) { animation-delay: 0.2s; }
.char-dot:nth-child(3) { animation-delay: 0.4s; }
.char-dot:nth-child(4) { animation-delay: 0.6s; }
.char-dot:nth-child(5) { animation-delay: 0.8s; }

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

.btn-play {
    display: inline-block;
    background: linear-gradient(135deg, #FF8C00, #FF6347);
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255,140,0,0.4);
    transition: transform 0.2s;
    margin-bottom: 25px;
}

.btn-play:active {
    transform: scale(0.95);
}

.info-box {
    background: #F0F8FF;
    border-radius: 15px;
    padding: 15px;
    color: #4682B4;
}

.info-box p {
    margin: 5px 0;
    font-size: 0.95em;
}

.info-box .small {
    font-size: 0.8em;
    color: #888;
}