.glass-input {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-main) !important;
    border-radius: 12px;
    padding: 12px 16px;
    transition: 0.3s;
}

.glass-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.glass-input:focus {
    background-color: rgba(0, 0, 0, 0.6) !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25) !important;
    color: #fff !important;
}

.glass-input option {
    background-color: var(--brand-dark);
    color: var(--text-main);
}

.spot-card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spot-card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(14, 165, 233, 0.1);
}

.custom-card-btn {
    border-radius: 10px;
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--brand-blue);
    font-weight: 600;
    transition: 0.3s;
}

.spot-card-hover:hover .custom-card-btn {
    background-color: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.custom-pagination {
    gap: 8px;
}

.custom-pagination .page-item .page-link {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: 0.3s;
}

.custom-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.custom-pagination .page-item.active .page-link {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.custom-pagination .page-item.disabled .page-link {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}