

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #fff7fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}


.container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

.intro {
    padding: 2rem;
    font-size: 1.3rem;
    line-height: 1.6;
}

.character-image {
    max-width: 250px;
    margin: 2rem auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    margin-top: 3rem;
    padding: 1rem;
    background: #ffdee2;
    font-size: 0.9rem;
}



.cute-img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #ffb6c1;
}

h1 {
    font-size: 2rem;
    color: #e75480;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #ff69b4;
    font-weight: bold;
}

nav a:hover {
    color: #d43f8d;
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #999;
}

.story-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.story-card {
    background: #fff0f5;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card h3 {
    margin-top: 0;
    color: #e75480;
}

.story-card a {
    text-decoration: none;
    color: #d43f8d;
    font-weight: bold;
}

.story-content {
    margin-top: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-card {
    background: #fff8fb;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.game-card:hover {
    transform: scale(1.02);
}

.game-card h3 {
    margin-top: 0;
    color: #e75480;
}

.game-card a {
    text-decoration: none;
    color: #d43f8d;
    font-weight: bold;
}

.pungu-img {
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pungu-img:hover {
    transform: scale(1.1);
}

#game-board {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 2rem auto;
    border: 2px dashed #ffb6c1;
    background-color: #fff0f5;
    border-radius: 15px;
    overflow: hidden;
}

