/* Game controls styling */
.game-controls {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.seed-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    font-family: monospace;
}

.seed-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.seed-input {
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 2px solid #eee;
    font-family: var(--font-main);
    font-size: 0.9rem;
    width: 120px;
    text-align: center;
    transition: border-color 0.2s;
}

.seed-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.seed-input::placeholder {
    color: #999;
}

.control-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #eee;
    background: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
    min-height: 44px;
    white-space: nowrap;
}

.control-btn:hover {
    border-color: var(--primary-color);
    background: #f9f9f9;
}

.control-btn:active {
    transform: scale(0.98);
}

/* Responsive adjustments for controls */
@media (max-width: 480px) {
    .game-controls {
        padding: 0.8rem;
    }

    .seed-input-group {
        flex-direction: column;
        width: 100%;
    }

    .seed-input {
        width: 100%;
    }

    .control-btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}