:root {
	/* theme - Refined Dark Palette */
	--main-bg: #090a0c;        /* Deeper black/blue */
	--card-bg: #13151a;        /* Consistent dark card */
	--card-bg-alt: #1c1f26;

	/* BRAND / ACCENT */
	--accent: #ff2a2a;         /* Brighter red for dark mode contrast */
	--accent-rgb: 255, 42, 42;
	--accent-hover: #d91818;
	--accent-soft: #ff5c5c;
	--accent-gradient: linear-gradient(135deg, var(--accent) 0%, #ff0f0f 100%);

	/* text */
	--white: #ffffff;
	--text-main: #e0e6ed;
	--text-muted: #949aa8;

	/* shadows */
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.3);
	--shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
	--shadow-accent: 0 0 25px rgba(var(--accent-rgb), 0.25);
	
	/* borders */
	--border-color: rgba(255,255,255,0.08);

	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 8px;
	
	--transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
	margin: 0;
	font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
	background: var(--main-bg);
	color: var(--text-main);
	min-height: 100vh;
	line-height: 1.6;
	letter-spacing: 0.015em;
	overflow-x: hidden;
    background-image: 
        radial-gradient(at 10% 10%, rgba(var(--accent-rgb), 0.05) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(var(--accent-rgb), 0.03) 0px, transparent 50%);
    background-attachment: fixed;
}

.text-muted {
	color: var(--text-muted);
}

/* soft background blobs (Cleaned up) */
body::before,
body::after {
	content: none;
	display: none;
}

.main-container {
	max-width: 1100px; /* Widened for modern screens */
	margin: 0 auto;
	padding: 24px;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	gap: 24px;
}

/* --- CARDS --- */
.card {
	padding: 32px;
	margin-top: 0;
	
	background: rgba(19, 21, 26, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	
	position: relative;
	overflow: hidden;
	
	transition:
		box-shadow var(--transition),
		transform var(--transition),
		border-color var(--transition),
		background var(--transition);
}

.card-main {
	/* Slightly more distinct */
	background: linear-gradient(145deg, rgba(28, 31, 38, 0.8) 0%, rgba(19, 21, 26, 0.8) 100%);
}

.card:hover {
	transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-accent);
	border-color: rgba(var(--accent-rgb), 0.3);
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.08), transparent 40%);
	pointer-events: none;
	opacity: 0.6;
	transition: opacity var(--transition);
    z-index: -1;
}

.card:hover::before {
    opacity: 1;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: var(--white);
}

.section-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-desc {
	font-size: 1.1rem;
	color: var(--text-muted);
	margin-bottom: 32px;
	max-width: 90%;
}

/* --- LISTS --- */
.section-list {
	color: var(--text-main);
	margin-bottom: 32px;
    padding: 0;
    list-style: none;
}

.section-list li {
	margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-size: 1.05rem;
}

.section-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
    line-height: 1;
}

/* --- IMAGES --- */
.section-img {
	margin-top: 32px;
	text-align: center;
}

.img-main {
	width: 100%;
	max-width: 100%;
	border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
	transition: transform var(--transition);
}

.img-main:hover {
	transform: scale(1.01);
}

/* --- BUTTONS --- */
.btn-red, .btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
	margin-top: 16px;
	padding: 16px 40px;
	
    background: var(--accent);
    background: var(--accent-gradient);
	color: var(--white);
	
    font-weight: 700;
	font-size: 1rem;
	border-radius: 50px;
	text-decoration: none;
	border: none;
	cursor: pointer;
    
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.3);
	transition: all var(--transition);
	letter-spacing: 0.02em;
}

.btn-red:hover, .btn-red:focus, .btn:hover, .btn:focus {
	transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.5);
    filter: brightness(1.1);
}

.btn-hero {
    font-size: 1.3rem !important;
    padding: 15px 40px !important;
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}

.btn-hero:hover {
    box-shadow: 0 12px 35px rgba(var(--accent-rgb), 0.6);
    transform: translateY(-4px);
}

.link-red {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--transition);
    border-bottom: 1px solid transparent;
}

.link-red:hover, .link-red:focus {
	color: var(--accent-soft);
    border-bottom-color: var(--accent-soft);
}

/* --- FOOTER --- */
.footer {
	background: #050608;
	color: var(--text-muted);
	text-align: center;
	padding: 60px 20px;
	margin-top: 80px;
	border-top: 1px solid var(--border-color);
}

.footer-main {
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 12px;
}

.footer-links {
	margin: 24px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* --- HEADER --- */
.blog-header {
	background: rgba(9, 10, 12, 0.85); /* More transparent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
	padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 15px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for mobile */
}

.header-left {
    display: flex;
    align-items: center;
}

/* Removed header-right */

.blog-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.blog-logo img.site-logo {
     height: 48px; /* Slightly smaller for sleek look */
     width: auto;
}

/* Default hidden for desktop */
.mobile-top-nav {
    display: none;
}

nav.blog-nav {
	margin: 0;
    padding: 0;
    margin-left: auto; /* Push to right on desktop */
    margin-right: 20px;
}

nav.blog-nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
    margin: 0;
}

nav.blog-nav ul li a {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all var(--transition);
	font-size: 0.95rem;
    border: 1px solid transparent;
}

nav.blog-nav ul li a:hover, nav.blog-nav ul li a:focus {
	background: rgba(255,255,255,0.05);
	color: var(--white);
    border-color: rgba(255,255,255,0.1);
}

.header-social {
    display: flex;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.social-mini-btn {
    display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	color: var(--text-muted);
	font-size: 1.1em;
	transition: all var(--transition);
	border: 1px solid transparent;
}

.social-mini-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

/* --- SCROLL TO TOP BTN --- */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    left: 24px;
    z-index: 9999;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.05); /* Transparent/Glass */
    color: var(--accent);
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

#scrollTopBtn:hover {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: var(--accent);
    transform: translateY(-5px); /* Move slightly higher on hover */
}

#scrollTopBtn.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}

/* Hide Mobile FAB on Desktop */
.mobile-fab-container {
    display: none;
}

/* Responsive Header */
@media (max-width: 900px) {
    .header-container {
        gap: 16px;
        padding: 0 16px; /* Slightly tighter padding on mobile */
    }
    
    .header-left {
        order: 1;
        flex: 1; /* Take up available space */
    }

    .header-social {
        order: 2;
        padding-left: 0;
        border-left: none;
        width: auto;
    }
    
    nav.blog-nav {
        order: 3;
        width: 100%;
        margin: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.05);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    nav.blog-nav::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Webkit */
    }
    
    nav.blog-nav ul {
        display: inline-flex;
        white-space: nowrap;
        padding-bottom: 0;
        width: auto; /* Allow natural width */
        min-width: 100%; /* Ensure it spans at least full width */
        justify-content: flex-start; /* Align left */
    }

    nav.blog-nav ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .blog-logo img.site-logo {
        height: 52px; /* More subtle brand presence */
    }

    .blog-header {
        padding: 0;
        background: rgba(9, 10, 12, 0.98);
        position: sticky;
        top: 0;
        z-index: 9999;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    .header-container {
        display: flex;
        flex-direction: column; /* Stack logo on top, menu below */
        align-items: center;
        justify-content: center;

        height: auto; 
        gap: 4px;
    }
    
    .header-left {
        width: 100%;
        justify-content: center;
        padding: 0;
        border: none;
        flex: 0 0 auto;
        order: 0; /* FIRST */
    }
    
    .header-social {
        display: none !important;
    }

    /* Hide the desktop nav on mobile */
    nav.blog-nav {
         display: none !important;
    }

    /* --- MOBILE SPECIFIC HEADER NAV --- */
    .mobile-top-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        order: 1; /* SECOND */
    }

    .mobile-top-nav a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 6px;
        transition: color 0.2s;
    }
    
    .mobile-top-nav a.active, .mobile-top-nav a:hover {
        color: var(--white);
        background: rgba(255,255,255,0.05); /* Subtle highlight */
    }

    /* Featured Login Button in Header */
    .mobile-top-nav a.mobile-login-btn {
        background: rgba(var(--accent-rgb), 0.15);
        color: var(--accent);
        border: 1px solid rgba(var(--accent-rgb), 0.3);
    }

    /* Reset main container padding */
    .main-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* --- MOBILE FAB MENU STYLES --- */
    .mobile-fab-container {
        display: block; 
        position: fixed;
        bottom: 30px;
        right: 24px;
        z-index: 10000;
    }

    .fab-trigger {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--accent);
        border: none;
        box-shadow: 0 4px 15px rgba(231, 22, 17, 0.4);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        cursor: pointer;
        position: relative;
        z-index: 10002;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .mobile-fab-container.active .fab-trigger {
        transform: rotate(90deg);
        background: #333;
    }

    .fab-menu-items {
        position: absolute;
        bottom: 70px;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
        pointer-events: none; /* Ignore clicks when closed */
    }
    
    .mobile-fab-container.active .fab-menu-items {
        pointer-events: auto;
    }

    .fab-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        transition: all 0.3s ease;
        transform-origin: right center;
    }

    /* Staggered animation for opening */
    .mobile-fab-container.active .fab-item {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    .mobile-fab-container.active .fab-item:nth-child(5) { transition-delay: 0.1s; }
    .mobile-fab-container.active .fab-item:nth-child(4) { transition-delay: 0.15s; }
    .mobile-fab-container.active .fab-item:nth-child(3) { transition-delay: 0.2s; }
    .mobile-fab-container.active .fab-item:nth-child(2) { transition-delay: 0.25s; }
    .mobile-fab-container.active .fab-item:nth-child(1) { transition-delay: 0.3s; }

    .fab-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(30,30,35,0.95);
        backdrop-filter: blur(10px);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .fab-icon.fab-accent {
        color: var(--accent);
        background: rgba(var(--accent-rgb), 0.1);
        border-color: var(--accent);
    }

    .fab-label {
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
        backdrop-filter: blur(4px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .fab-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.8);

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        backdrop-filter: blur(5px);
    }
    
    .mobile-fab-container.active .fab-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Page Adjustments */
    .hero-card {
        padding: 24px 20px !important;
        margin-top: 10px;
        background: radial-gradient(circle at top right, #1f232d, #0d0e12);
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    }
    
    .hero-card .section-title {
        font-size: 1.5rem !important; 
        margin-bottom: 12px !important;
        background: linear-gradient(to right, #fff, #bbb);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero-card .section-desc {
        font-size: 0.9rem !important;
        color: rgba(255,255,255,0.7);
    }

    .hero-card .btn {
        width: 100% !important; /* Stack buttons full width */
        margin-bottom: 12px;
        justify-content: center;
        padding: 14px !important;
        height: auto;
        font-size: 1rem !important;
    }
    
    /* Hide the hero features, they look cluttered on small screens */
    .hero-features {
        display: none !important;
    }
    
    .card {
        padding: 20px;
    }
    
    .main-container {
        padding: 0px 12px 60px 12px;
        gap: 16px;
    }
    
    .footer {
        padding: 30px 0 20px 0;
        margin-top: 30px;
    }
}


/* Active statü için JS veya PHP tarafında class eklenebilir, şimdilik hover yeterli */

/* --- GRID & UTILS --- */
.card-row {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 24px;
	margin-top: 0;
	margin-bottom: 0;
}

/* Grid kullandığımız için width ayarlarına gerek yok ama uyumluluk için */
.card-half {
    margin: 0;
    min-width: 0; /* Flex item fix */
}

/* Styles for specific card types */
.card-alt {
	background: radial-gradient(circle at top right, #1f232d, #13151a);
}

.card-outline {
	background: transparent;
	border: 1px dashed var(--accent);
    box-shadow: none;
}
.card-outline:hover {
    border-style: solid;
    box-shadow: var(--shadow-accent);
}

.card-shadow {
    box-shadow: var(--shadow-md), 0 0 20px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.12);
    z-index: 2; /* Lift it up slightly */
}

::-webkit-scrollbar {
	width: 8px;
	background: var(--main-bg);
}
::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- ICONIFY --- */
.iconify {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.25em;
}

/* --- BADGES & ALERTS --- */
.badge {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.75em;
    text-transform: uppercase;
	font-weight: 800;
	border-radius: 50px;
	background: rgba(var(--accent-rgb), 0.15);
	color: var(--accent);
	margin-left: 10px;
	vertical-align: middle;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.alert {
	padding: 16px 20px;
	border-radius: var(--radius-md);
	background: rgba(var(--accent-rgb), 0.08);
	color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
	font-weight: 600;
	margin: 24px 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* --- SOCIAL BUTTONS --- */
.social-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
    margin-top: 0px;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	color: var(--text-muted);
	font-size: 1.4em;
	transition: all var(--transition);
	border: 1px solid var(--border-color);
}

.social-btn:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.4);
    border-color: var(--accent);
}

/* --- DIVIDER --- */
.divider {
	width: 100%;
	height: 1px;
	background: var(--border-color);
	border: none;
	margin: 40px 0;
}

/* --- HERO & EXTRAS --- */
.hero-card {
    background: linear-gradient(135deg, rgba(20,20,25,0.95) 0%, rgba(10,10,12,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    padding: 60px 24px !important;
}

.hero-card::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 50% -20%, rgba(var(--accent-rgb), 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.btn-glass {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.btn-glass:hover {
     background: rgba(255,255,255,0.1);
     border-color: var(--white);
     transform: translateY(-2px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature-item .iconify {
    color: var(--accent);
    font-size: 1.2rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
	.main-container {
		padding: 0px 16px 60px 16px;
        gap: 24px;
	}
	.card {
		padding: 24px;
	}
	.section-title {
		font-size: 1.6rem;
	}
    
    .card-row {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .blog-header {
        position: relative; /* Unstick on mobile to save screen space */
        padding: 16px 0;
    }
    
	.card {
		padding: 20px;
        border-radius: var(--radius-md);
	}
    
    .section-title {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
    
    .btn-red, .btn {
        width: 100%; /* Full width buttons on mobile */
        box-sizing: border-box;
    }
    
    nav.blog-nav ul {
        flex-wrap: wrap; /* Allow wrapping */
        padding: 0 10px;
    }
    
    nav.blog-nav ul li a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* --- NEW FOOTER STYLES --- */
.footer {
    background: linear-gradient(0deg, #090a0c 0%, #13151a 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px 0;
    margin-top: 80px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-left: 16px;
    letter-spacing: 0.5px;
}
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a::before {
    content: '\203A';
    color: rgba(255,255,255,0.2);
    font-size: 1.2rem;
    line-height: 0;
    margin-top: -2px;
    transition: 0.2s;
}

.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(4px);
}
.footer-links-list a:hover::before {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-trust {
    opacity: 0.4;
    transition: 0.3s;
    filter: grayscale(100%);
}
.footer-trust:hover {
    opacity: 1;
    filter: none;
}

