/* 
   Altın Kitaplar V2 - Modern & Premium Design System 
   Architect: Antigravity
*/

:root {
    --primary-color: #1A5276;
    --primary-light: #2980B9;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    --text-color: #333333;
    --text-muted: #7F8C8D;
    --bg-color: #F8F9FA;
    --white: #ffffff;
    --gray-light: #EAECEE;
    --gray-medium: #D5D8DC;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --panel-gap: 20px;
    /* Yatay ve dikey boşluklar eşitlendi */

    /* THE STRICT RULE: Typography Tokens */
    --font-main: 'Inter', sans-serif;
    --fs-ui: 14px;
    /* TÜM METİNLER İÇİN TEK ÖLÇÜ */
    --fs-h1: 42px;
    --fs-h2: 28px;
    --fw-bold: 700;
    --fw-semibold: 600;
    --fw-regular: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === LAYOUT SHIFT (CLS) ÖNLEME - EN KRİTİK KURAL ===
   Scrollbar çıkıp kaybolması header'ı ve tüm içeriği kaydırıyor.
   Bu iki satır bunu tamamen engeller.
*/
html {
    overflow-y: scroll;
    /* Scrollbar her zaman var, kaybolmaz → layout kaymaz */
    scrollbar-gutter: stable;
    /* Modern tarayıcılar için ek güvence */
}

*:not(i) {
    font-family: var(--font-main) !important;
    font-size: var(--fs-ui);
    /* KÜRESEL ZORUNLULUK */
}

i.fas,
i.far,
i.fab,
i.fa-solid,
i.fa-regular,
i.fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-size: inherit;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Typography Overrides for Headers */
h1,
.fs-h1 {
    font-size: var(--fs-h1) !important;
    font-weight: var(--fw-bold);
}

h2,
.fs-h2 {
    font-size: var(--fs-h2) !important;
    font-weight: var(--fw-bold);
}

h3 {
    font-size: var(--fs-ui) !important;
    font-weight: var(--fw-bold);
}

/* === PAGE WRAPPER: Tüm sayfayı saran dış çerçeve === */
.page-wrapper {
    max-width: var(--container-width);
    margin: 20px auto 20px auto;
    background: var(--bg-color);
    border-radius: 24px;
    border: 1.5px solid var(--gray-medium);
    box-shadow: 0 4px 40px rgba(26, 82, 118, 0.08);
    overflow: clip;
    /* clip: hidden gibi keser ama sticky pozisyonu KIRMAZ */
}

/* Global Close Button (Modern/Premium) */
.btn-close-detail {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-decoration: none !important;
}

.btn-close-detail:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

/* İletişim Sayfası Sosyal Medya İkonları (Footer stiliyle aynı) */
.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-links a {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-links a:hover, .footer-social a:hover {
    color: #fff !important;
    transform: translateY(-3px);
}

.contact-social-links a.facebook:hover, .footer-social a.facebook:hover { background-color: #3b5998 !important; }
.contact-social-links a.twitter:hover, .footer-social a.twitter:hover { background-color: #1da1f2 !important; }
.contact-social-links a.instagram:hover, .footer-social a.instagram:hover { background-color: #e1306c !important; }
.contact-social-links a.youtube:hover, .footer-social a.youtube:hover { background-color: #ff0000 !important; }




.btn-close-detail i {
    font-size: 14px;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* GPU katmanına al: titreşmeyi ve ziplamaı tamamen engeller */
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Yüksekliği sabitle: font yüklenmesi esnasında layout kaymasın */
    min-height: 95px;
    /* Scroll esnasında yuvarlak köşeleri korumak için */
    border-radius: 24px 24px 0 0;
    border-left: 1.5px solid var(--gray-medium);
    border-right: 1.5px solid var(--gray-medium);
    border-top: 1.5px solid var(--gray-medium);
    overflow: hidden;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    /* Kesinlikle aşağı kayma yapmaz */
}

.main-menu li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-menu li:not(:last-child)::after {
    content: '|';
    margin: 0 5px;
    /* Ayraç boşluğunu daralttım */
    color: var(--gray-medium);
    font-size: 14px;
    font-weight: 300;
}

.main-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-ui) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0.9;
    line-height: 1;
}

.menu-logo {
    height: 18px;
    /* Logoları biraz daha kompakt yaptım */
    width: auto;
    max-width: 70px;
    object-fit: contain;
    transition: var(--transition);
}

/* Metin linkleri → Mavi dolgu hover */
.main-menu a:not(:has(.menu-logo)):hover {
    background: var(--primary-color);
    color: var(--white) !important;
    opacity: 1;
}

/* JPG logo linkleri → Yükselme + gölge hover (mavi dolgu YOK) */
.main-menu a:has(.menu-logo) {
    padding: 4px 8px;
}

.main-menu a:has(.menu-logo):hover {
    background: transparent;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.main-menu a:has(.menu-logo):hover .menu-logo {
    transform: scale(1.08);
    filter: none;
    /* Rengi olduğu gibi kalsın */
}

/* B2B Giriş Butonu (Mükerrerlikler temizlendi, mühürlendi) */
.btn-b2b {
    display: inline-block;
    background: transparent;
    color: var(--primary-color) !important;
    border: 1.5px solid var(--primary-color);
    padding: 10px 25px;
    /* Standart buton ölçüsü */
    border-radius: 50px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    min-width: 140px;
}

.btn-b2b:hover {
    background: var(--primary-color);
    color: white !important;
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.2);
}

/* Banner & Hero Section */
.hero-banner {
    padding: 0;
    margin-bottom: var(--panel-gap);
}

.hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    align-items: stretch;
}

.category-panel {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 450px;
    /* BANNER BOYUTUNU ASLA AŞAMAZ */
}

.panel-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    /* Başlık biraz daha daraltıldı */
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-list {
    list-style: none;
    padding: 0;
    /* İşaretlediğiniz o başlık altı boşluk SIFIRLANDI */
    margin: 0;
    flex: 1;
    overflow-y: auto;
    /* Akordeon büyüdüğünde paneli kaydırır, banner'ı bozmaz */
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    /* Satırlar biraz daha sıkıştırıldı */
    margin: 2px 10px;
    border-radius: 8px;
    /* Modern yuvarlatılmış köşeler */
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.has-submenu>a {
    cursor: pointer;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fafafa;
    display: none;
}

.has-submenu.active .submenu {
    display: block;
}

.submenu li a {
    padding: 8px 12px 8px 30px !important;
    /* Daha orantılı iç boşluk */
    margin: 2px 10px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666 !important;
    transition: var(--transition);
}

.submenu li a:hover {
    color: var(--primary-color) !important;
    background: #f1f1f1 !important;
}

.has-submenu.active>a>i.fa-chevron-down {
    transform: rotate(180deg);
}

.category-list li a i {
    font-size: 10px;
    color: var(--gray-medium);
    transition: var(--transition);
}

.category-list li a:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.category-list li a:hover i {
    color: var(--primary-color);
}

.banner-panel {
    flex: 1;
}

.banner-panel {
    background: #fff;
    border-radius: var(--panel-radius);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    position: relative;
    padding: 15px;
    /* Çerçeveye değmemesi için simetrik boşluk */
    box-sizing: border-box;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* İçerideki resmin köşeleri de oval */
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    /* Resmi tam sığdırır, zoom yapmaz */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    border-radius: 20px;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-content {
    max-width: 500px;
    z-index: 10;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    /* Biraz daha yukarı aldım */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 500;
    /* Çok daha ön planda olması için artırdım */
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    /* Daha görünür beyaz tonu */
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Search Section */
.search-section {
    padding: 0;
    margin-top: 10px;
    /* Üstündeki 10px divider boşluğu ile birleşince tam 20px simetrik boşluk yapar */
    margin-bottom: var(--panel-gap);
}

.search-frame {
    background: var(--white);
    border-radius: 15px;
    padding: 8px 20px;
    /* Kutu çok daha ince ve zarif hale getirildi */
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    border: 1px solid var(--gray-medium);
    padding: 8px 20px;
    /* İç boşluk da kısıldı */
    border-radius: 50px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background-color: #FDFDFD;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 82, 118, 0.05);
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 25px;
    /* Buton yüksekliği giriş kutusu ile dengelendi */
    border-radius: 50px;
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.2);
}

/* Tabbed Section */
.tabs-section {
    padding: 0;
    margin-bottom: var(--panel-gap);
}

.tabs-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 30px 20px 30px;
    /* Alt padding daha da daraltıldı */
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}

.tabs-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: var(--transition);
}

.view-all:hover {
    gap: 15px;
}

/* Footer Section */
.footer-section {
    padding-top: 0;
    padding-bottom: var(--panel-gap);
    background: transparent;
}

.footer-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 30px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}

/* Footer Nav — Header menüsüyle aynı dil */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 4px 0;
}

.footer-nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: var(--fw-semibold);
    opacity: 0.85;
    transition: var(--transition);
    padding: 6px 10px;
    border-radius: 6px;
}

.footer-nav a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    opacity: 1;
}

/* Gradient Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-medium), transparent);
    margin: 18px 0;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 1.5px solid var(--gray-medium);
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px !important;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white !important;
}

.social-btn.twitter:hover {
    background: #000000;
    border-color: #000000;
    color: white !important;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: white !important;
}

.social-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white !important;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright {
    color: var(--text-muted);
}

.footer-powered {
    color: var(--text-muted);
}

.powered-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.powered-link:hover {
    color: var(--primary-light) !important;
}

/* Home Section Styles */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Book Card Grid */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.book-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid #e8e8e8;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.book-card img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: none !important;
    cursor: pointer;
}

.book-barcode {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    display: block;
}

.book-title {
    font-size: var(--fs-ui);
    font-weight: var(--fw-semibold);
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.book-price {
    font-size: var(--fs-ui);
    font-weight: var(--fw-semibold);
    color: #1a1a2e;
    margin-top: auto;
    cursor: default !important;
}



.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: var(--transition);
}

.view-all:hover {
    gap: 15px;
}

/* Footer Section */
.footer-section {
    padding-top: 0;
    /* Üstteki sekmenin 20px'lik margin'i ile çiftleşmesi engellendi */
    padding-bottom: var(--panel-gap);
    background: transparent;
}

.footer-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 30px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}

/* Footer Nav — Header menüsüyle aynı dil */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 4px 0;
}

.footer-nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: var(--fw-semibold);
    opacity: 0.85;
    transition: var(--transition);
    padding: 6px 10px;
    border-radius: 6px;
}

.footer-nav a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    opacity: 1;
}

/* Gradient Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-medium), transparent);
    margin: 18px 0;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 1.5px solid var(--gray-medium);
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px !important;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white !important;
}

.social-btn.twitter:hover {
    background: #000000;
    border-color: #000000;
    color: white !important;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: white !important;
}

.social-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white !important;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright {
    color: var(--text-muted);
}

.footer-powered {
    color: var(--text-muted);
}

.powered-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.powered-link:hover {
    color: var(--primary-light) !important;
}

/* Home Section Styles */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Book Card Grid */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Book card styles moved to consolidate section above */

/* Footer Modernization */
.footer-bottom-bar,
.footer-bottom-bar span,
.footer-bottom-bar a {
    font-size: 11px !important;
    /* Küresel 14px kuralını ezer */
    color: #999;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.footer-copyright {
    font-weight: 300;
}

.footer-powered {
    font-weight: 300;
}

.powered-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    animation: glowPulse 2.5s infinite ease-in-out;
    display: inline-block;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 0px transparent;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 6px rgba(26, 82, 118, 0.6);
    }

    100% {
        opacity: 0.6;
        text-shadow: 0 0 0px transparent;
    }
}
