body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card:hover .card-title a {
    color: #0d6efd !important;
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
}

/* Responsywne logo serwisu zgodne z trendami nowoczesnych portali */
.site-logo {
    height: 46px;
    width: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    transition: height 0.2s ease-in-out;
}

@media (min-width: 992px) {
    .site-logo {
        height: 56px;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
}

.spotlight-container {
    height: 300px;
    background-color: #1a1a1a !important;
}

@media (min-width: 768px) {
    .spotlight-container {
        height: 420px;
    }
}

.gallery-thumb {
    outline: none !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.gallery-thumb:active {
    transform: scale(0.95);
}