/* Styl pozadí s růžovými tečkami podle obrázku */
body {
    margin: 0;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffe6eb;
    background-image: radial-gradient(#ffb3c1 15%, transparent 16%);
    background-size: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Hlavní kontejner (bílý zaoblený box) */
.card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(255, 179, 193, 0.4);
    text-align: center;
    box-sizing: border-box;
}

h2 {
    color: #5c1d24;
    margin-bottom: 25px;
    font-size: 22px;
}

/* Styl pro úvodní výběr čísel */
.number-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Umožní tlačítkům skočit na nový řádek, když jich je moc */
    gap: 12px;
    margin-bottom: 10px;
}

.num-btn {
    background: #f7f7f9;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 55px; /* Zajišťuje, že tlačítka budou mít hezký tvar kostky */
}

.num-btn:hover {
    border-color: #ff527b;
    background: #ffe6eb;
    color: #ff527b;
    transform: translateY(-2px);
}

/* Skrytí obsahu vzkazu na začátku */
.hidden {
    display: none;
}

/* Styl pro zobrazený vzkaz */
.photo-container img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Styl pro hudební sekci */
.music-section {
    margin: 20px 0;
    border-top: 1px dashed #ffd1dc;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.music-title {
    color: #5c1d24;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.song-display {
    background: #fff0f3;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 15px;
    color: #7a1f3d;
    font-weight: 600;
    width: 80%;
    box-sizing: border-box;
}

/* Úprava vestavěného přehrávače */
audio {
    width: 80%;
    height: 32px;
    outline: none;
}

/* Styl pro samotný text (slohovku) */
.message-box {
    border: 2px solid #ffb3c1;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    background: #fff9fa;
    margin-top: 25px;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 15px;
}

.message-header {
    color: #ff527b;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
    border-bottom: 1px dashed #ffb3c1;
    padding-bottom: 8px;
}

/* Tlačítko zpět na výběr */
.back-btn {
    background: #ff527b;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(255, 82, 123, 0.3);
    transition: background 0.2s;
}

.back-btn:hover {
    background: #e03960;
}