/* =============================================
   ServersStage - Modern Custom Style 2026
   ============================================= */

:root {
    --primary: #0d6efd;        /* Blue */
    --primary-dark: #0b5ed7;
    --accent: #00d4ff;
    --dark: #0f172a;
    --light: #f8fafc;
}

/* General */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: #1e2937;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Header */
.navbar {
    background: var(--dark) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.navbar-brand img {
    height: 48px;
}

/* Domain Search Bar */
.input-group .form-control {
    border-radius: 50px 0 0 50px;
    height: 58px;
    font-size: 1.1rem;
}

.input-group .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 32px;
    font-weight: 600;
}

/* Service Icons Bar */
.bg-info, .bg-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
}

/* Cards & News */
.card, .panel, .well {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

/* News Boxes */
.news-date {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .input-group .form-control {
        height: 52px;
    }
}
