/* HNTDGAME Gaming Platform - Custom Styles
   Compatible with older browsers and CSS3 */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    padding-top: 60px;
}

/* Header Styles - Compact Navigation */
.navbar {
    background: #343a40 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-height: 60px;
}

.navbar-brand {
    font-size: 1.2rem;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0;
    margin-right: 30px;
}

.navbar-brand i {
    color: #007bff;
    margin-right: 8px;
}

.navbar-brand img {
    filter: brightness(1.2);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: #ffffff !important;
    font-size: 0.9rem;
    padding: 8px 15px !important;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.nav-link.active {
    background-color: #007bff;
    color: #ffffff !important;
}

.nav-link i {
    margin-right: 6px;
    font-size: 0.85rem;
}

/* User dropdown */
.navbar-nav .dropdown-toggle {
    background-color: #28a745;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 6px 12px !important;
    font-size: 0.85rem;
}

.navbar-nav .dropdown-toggle:hover {
    background-color: #218838;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
}

.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
}

.dropdown-item {
    color: #495057;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.dropdown-item i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Balance badge */
.balance-badge {
    background-color: #ffc107 !important;
    color: #212529 !important;
    font-weight: 600;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Video loading state */
.hero-video-background:not([data-loaded="true"]) {
    opacity: 0;
}

/* Overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.7), rgba(42, 82, 152, 0.7));
    z-index: 0;
}

/* Ensure content is above video and overlay */
.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

/* Snow Animation */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.snow {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    animation: fall linear infinite;
}

.snow:nth-child(1) {
    left: 10%;
    animation-duration: 3s;
    animation-delay: 0s;
}

.snow:nth-child(2) {
    left: 20%;
    animation-duration: 4s;
    animation-delay: 1s;
}

.snow:nth-child(3) {
    left: 30%;
    animation-duration: 3.5s;
    animation-delay: 0.5s;
}

.snow:nth-child(4) {
    left: 40%;
    animation-duration: 5s;
    animation-delay: 1.8s;
}

.snow:nth-child(5) {
    left: 50%;
    animation-duration: 3.2s;
    animation-delay: 0.2s;
}

.snow::before {
    content: '❅';
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* News Section */
.news-section {
    background: rgba(255, 255, 255, 0.95);
}

.news-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.news-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.news-card:hover .news-icon {
    transform: scale(1.1);
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    border-top: 1px solid #f1f3f4;
    padding-top: 10px;
}

/* Games Section */
.games-section {
    background: var(--dark-color);
}

.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.03);
}

.game-content {
    padding: 15px;
}

.game-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.game-code {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 6px;
}

.game-description {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.game-actions .btn {
    flex: 1;
    min-width: 70px;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Transactions Section */
.transactions-section {
    background: rgba(255, 255, 255, 0.95);
}

.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table thead th {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    /* Reduce video opacity on mobile for better performance */
    .hero-video-background {
        opacity: 0.6;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .game-actions {
        flex-direction: column;
    }
    
    .game-actions .btn {
        min-width: auto;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Badge Styles */
.badge {
    font-size: 0.75em;
    padding: 0.5em 0.75em;
    border-radius: 6px;
}

/* Card Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient Text - with fallback for older browsers */
.gradient-text {
    color: var(--primary-color); /* Fallback */
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

/* Fixed Video Background */
.fixed-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Ensure content is above video */
body {
    position: relative;
    z-index: 1;
}

/* Adjust sections for video background */
.hero-section {
    background: transparent !important;
}

.news-section {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
}

.games-section {
    background: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.95) 100%);
    backdrop-filter: blur(15px);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.brand-title i {
    color: #007bff;
}

.brand-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.footer-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #007bff;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.contact-info {
    space-y: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    color: #007bff;
    margin-right: 12px;
    font-size: 0.9rem;
}

.contact-item a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    margin: 0;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.developer {
    margin: 0;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.developer-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: #0056b3;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px;
    }

    .brand-title {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 25px;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

/* Realtime Transactions Widget */
.realtime-transactions-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    z-index: 999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.widget-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.widget-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.widget-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.widget-toggle.collapsed {
    transform: rotate(180deg);
}

.widget-content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.widget-content.collapsed {
    max-height: 0;
}

.transaction-messages {
    padding: 8px 0;
    max-height: 300px;
    overflow-y: auto;
}

.transaction-message {
    padding: 10px 16px;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
    animation: slideInUp 0.4s ease-out;
}

.transaction-message:hover {
    background-color: #f8f9fa;
}

.transaction-message:last-child {
    border-bottom: none;
}

.message-text {
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.4;
    margin-bottom: 6px;
}

.message-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.character {
    color: #6c757d;
    flex: 1;
}

.amount {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.7rem;
}

/* Widget scrollbar */
.transaction-messages::-webkit-scrollbar {
    width: 4px;
}

.transaction-messages::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.transaction-messages::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 2px;
}

.transaction-messages::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
}

.realtime-transactions-widget.new-transaction {
    animation: pulse 1s ease-in-out;
}

/* Responsive Widget */
@media (max-width: 768px) {
    .realtime-transactions-widget {
        width: 280px;
        bottom: 75px;
        right: 15px;
    }

    .widget-header {
        padding: 10px 14px;
    }

    .widget-title {
        font-size: 0.8rem;
    }

    .transaction-message {
        padding: 8px 14px;
    }

    .message-text {
        font-size: 0.8rem;
    }

    .message-meta {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .realtime-transactions-widget {
        width: calc(100vw - 30px);
        bottom: 70px;
        right: 15px;
        left: 15px;
    }
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.brand-title i {
    color: #007bff;
}

.brand-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.footer-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #007bff;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.contact-info {
    space-y: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    color: #007bff;
    margin-right: 12px;
    font-size: 0.9rem;
}

.contact-item a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    margin: 0;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.developer {
    margin: 0;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.developer-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: #0056b3;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px;
    }

    .brand-title {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 25px;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 10px;
    }
}
