body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Logo-Style Title - Keep random colored letters */
.logo-title {
    font-family: 'Comic Sans MS', 'Arial', sans-serif; 
    font-weight: bold;
    text-align: center;
    font-size: 4.5rem; 
    margin: 20px 0;
    letter-spacing: 0.3rem; 
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); 
}

/* Keep the original subtitle styling */
.subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin: 10px 0;
    color: #ffd700; /* Gold-like color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
    letter-spacing: 0.1rem;
}

#search-bar {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    width: 300px;
    max-width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.game-selection {
    text-align: center;
    margin: 30px 0;
}

.game-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 0 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.game-button:active {
    transform: scale(0.95);
}

.game-embed {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.game-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#scratch-game {
    border-radius: 15px;
    width: 485px;
    height: 402px;
    max-width: 100%;
}

.fullscreen-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fullscreen-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .logo-title {
        font-size: 2.5rem;
    }
    
    .game-button {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    
    #scratch-game {
        width: 100%;
        height: 300px;
    }
}