body {
    background: url("../img/wallpaper_tmp.jpg") no-repeat center center fixed;
    background-size: contain; /* Изменили cover на contain */
    background-color: white; /* Добавляем цвет фона вокруг изображения */
    margin: 0;
    min-height: 100vh;
}

.navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    border-bottom: 3px solid #f39c12 !important;
}

.navbar-brand {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    transition: all 0.3s ease;
    border-radius: 20px;
    margin: 0 2px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
}

.btn-outline-warning {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
