.gift-icon {
    font-size: 5em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.greeting {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.message-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.message-box p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.message-box p:last-child {
    margin-bottom: 0;
}

.games-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.game-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.game-badge:hover {
    transform: scale(1.05);
}

.game-badge .number {
    background: #e91e63;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.game-badge .name {
    font-weight: bold;
    font-size: 1.1em;
}

.start-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.5em;
    font-weight: bold;
    color: #1a472a;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.start-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 30px 15px rgba(255, 215, 0, 0);
    }
}
