.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0; /* Reduced by 50% from 1.5rem */
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.5), transparent);
    top: -10px;
}

.logo-container::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.5), transparent);
    bottom: -10px;
}

.logo-image {
    max-width: 140px; /* Reduced by 50% from 280px */
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.5s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2)) brightness(1.05);
}

.game-logo-subtitle {
    font-size: 1.3rem;
    color: #2ecc71;
    margin-top: 0.7rem;
    display: block;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.8), 0 0 20px rgba(46, 204, 113, 0.4);
    background: linear-gradient(90deg, #f39c12, #ffb700, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 8px 15px;
    position: relative;
    animation: pulse-text 2s infinite ease-in-out;
    transform: scale(1);
}

@keyframes pulse-text {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.game-logo-subtitle::before,
.game-logo-subtitle::after {
    content: '🎲';
    position: relative;
    top: -1px;
    margin: 0 10px;
    animation: spin-slow 6s infinite linear;
    display: inline-block;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}