/* Custom styles for Flati.is */

body {
    background: linear-gradient(135deg, #331122 0%, #FFAABB 100%);
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
}

.counter-display .card {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.counter-number {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.social-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #fff;
}

.gaming-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.gaming-links a:hover {
    color: #adb5bd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-1 {
        font-size: 3rem;
    }
}