/* =======================================================
   SaaS CV MASTER CSS (Front-end & Admin Panel Ortak)
======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Renk Paleti */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --dark: #0f172a;
    --dark-hover: #1e293b;
    --text-main: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;

    /* Gölgeler (Glassmorphism & Depth) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 20px 40px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ================= UTILITIES ================= */

.container,
.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Flexbox utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

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

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

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

/* Margins */
.mt-4 {
    margin-top: 16px;
}

.mb-4 {
    margin-bottom: 16px;
}

/* Text */
.text-center {
    text-align: center;
}

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

/* Buton ve Girdiler */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Glassmorphism Kartlar */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    padding: 24px;
}

/* ================= MODERN CLEAN UI & ACCENT BORDER CARDS ================= */
.accent-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.accent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.accent-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--primary);
}

.accent-success::before {
    background: var(--success);
}

.accent-warning::before {
    background: var(--warning);
}

.accent-danger::before {
    background: var(--danger);
}

.accent-dark::before {
    background: var(--dark);
}


/* Form Elemanları */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ================= MOBİL MÜKEMMELLİK (380px ve Altı) ================= */
@media (max-width: 480px) {

    .container,
    .nav-container {
        padding: 0 16px !important;
    }

    .btn {
        width: 100%;
        padding: 12px;
    }

    .glass-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    /* Özellik Kartları Mobilde Tek Sütun */
    .features {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 16px !important;
        margin: 20px auto 40px !important;
    }

    .feature-card {
        padding: 24px 20px !important;
    }

    /* Kullanıcı Yorum Kartı Genişliği Mobilde Sığacak Boyutta */
    .review-card {
        width: 290px !important;
        padding: 16px !important;
        gap: 12px !important;
    }

    /* Blog Izgarası Mobilde Tek Sütun */
    .rb-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 380px) {

    /* 380px altı ekstrem mobil çözünürlüklerde text veya kutu taşmalarını engellemek için */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 22px;
    }

    .container,
    .nav-container {
        padding: 0 12px !important;
    }

    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }

    .btn {
        font-size: 14px;
    }

    /* 350px gibi dar ekranlar için ek tedbirler */
    .features {
        padding: 0 8px !important;
    }

    .review-card {
        width: 270px !important;
    }
}

/* ===== HEADER ===== */
header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 35px;
    transition: height 0.2s ease;
}

.logo i {
    color: var(--primary);
}

.nav-link-desktop {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.nav-btn {
    padding: 10px 24px;
    background: var(--dark);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* =======================================================
   YENİ: MOBİL MENÜ / DRAWER TASARIMI
======================================================= */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    transition: color 0.2s;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-drawer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.mobile-drawer-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: left;
}

.drawer-link:hover {
    background: var(--bg-body);
    color: var(--primary);
}

.drawer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.drawer-btn.btn-primary {
    background: var(--primary);
    color: white;
}

.drawer-btn.btn-primary:hover {
    background: var(--primary-hover);
}

/* ===== HERO SECTION ===== */
.hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Glassmorphism Box */
.glass-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 45px 40px;
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Işık yansıması detayı */
.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Dev Butonlar */
.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

.cta-btn i {
    font-size: 22px;
    transition: transform 0.3s;
}

.cta-btn:hover i {
    transform: translateX(5px) translateY(-5px);
}

.cta-btn-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--dark);
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn-alt:hover {
    background: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.cta-btn-alt i {
    font-size: 22px;
    transition: transform 0.3s;
}

.cta-btn-alt:hover i {
    transform: translateX(5px) translateY(-5px);
}

.trusted-by {
    margin-top: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trusted-by i {
    color: #f59e0b;
}

/* ===== FEATURES (LEFT ACCENT BORDER) ===== */
.features {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 80px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
}

.fc-red::before {
    background: var(--primary);
}

.fc-blue::before {
    background: #2563eb;
}

.fc-green::before {
    background: #10b981;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px;
}

.fc-red .feature-icon {
    background: #fef2f2;
    color: var(--primary);
}

.fc-blue .feature-icon {
    background: #eff6ff;
    color: #2563eb;
}

.fc-green .feature-icon {
    background: #ecfdf5;
    color: #10b981;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.feature-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TESTIMONIALS (Yorumlar / Marquee) ===== */
.testimonials {
    width: 100%;
    padding: 60px 0 80px;
    overflow: hidden;
    background: white;
    border-top: 1px solid var(--border);
}

.testi-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.testi-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.testi-header p {
    font-size: 16px;
    color: var(--text-light);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-container {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    width: max-content;
    animation: scroll-left 50s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.review-card {
    width: 360px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.reviewer-details span {
    font-size: 13px;
    color: var(--text-light);
}

.stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 4px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14.5px;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
}

.review-text::before {
    content: '"';
    font-size: 20px;
    color: var(--text-light);
    opacity: 0.5;
    margin-right: 4px;
}

.review-text::after {
    content: '"';
    font-size: 20px;
    color: var(--text-light);
    opacity: 0.5;
    margin-left: 4px;
}

/* ===== RECENT BLOGS (Vitrin) ===== */
.recent-blogs {
    width: 100%;
    padding: 80px 24px;
    background: white;
    border-top: 1px solid var(--border);
}

.rb-header {
    text-align: center;
    margin-bottom: 50px;
}

.rb-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.rb-header p {
    font-size: 16px;
    color: var(--text-light);
}

.rb-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.rb-card {
    background: var(--bg-body);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.rb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.rb-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    filter: brightness(0.95);
}

.rb-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rb-meta {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rb-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.rb-card:hover .rb-title {
    color: var(--primary);
    transition: 0.2s;
}

.rb-desc {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.rb-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rb-card:hover .rb-link {
    color: var(--primary);
}

.rb-center {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.rb-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--dark);
    border: 2px solid var(--border);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.rb-btn-all:hover {
    border-color: var(--dark);
    background: #f8fafc;
    transform: scale(1.02);
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

/* ===== SCROLL REVEAL ANIMATIONS (Sıfır Yük, GPU Destekli) ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .container,
    .nav-container {
        padding: 0 20px !important;
    }

    .hero h1 {
        font-size: 34px;
        margin-top: 10px;
    }

    .hero {
        padding: 20px 20px 30px;
    }

    .glass-box {
        padding: 40px 20px;
    }

    .cta-btn,
    .cta-btn-alt {
        font-size: 17px;
        padding: 14px 10px;
        width: 100%;
        min-height: 64px;
    }

    .nav-link-desktop {
        display: none;
    }

    .nav-container .logo {
        font-size: 20px;
    }

    .nav-container .nav-btn {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo img {
        height: 35px !important;
    }
}

/* ===== DUYURU BANNER ===== */
#duyuru-bar {
    position: relative;
    display: none;
    align-items: center;
    height: 26px !important;
    min-height: 26px !important;
    padding: 0 36px 0 12px !important;
    background: #000000 !important;
    z-index: 1000;
    border: none !important;
    box-sizing: border-box;
    overflow: hidden;
}

.duyuru-right-static {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #000000;
    padding: 0 10px 0 16px;
    z-index: 10;
}

#duyuru-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.duyuru-scroll-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
    left: 0;
    will-change: transform, left;
    animation: tickerFlow 25s linear infinite;
}

.duyuru-scroll-content:hover {
    animation-play-state: paused;
}

@keyframes tickerFlow {
    0% {
        left: 100%;
        transform: translateX(0);
    }

    100% {
        left: 0;
        transform: translateX(-100%);
    }
}

#duyuru-metin {
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: #f1f5f9 !important;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

#duyuru-btn {
    display: none;
    align-items: center;
    color: #fca5a5 !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: underline !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    transition: color 0.2s;
    margin-left: 8px;
    flex-shrink: 0;
}

#duyuru-btn:hover {
    color: #f87171 !important;
}

#duyuru-kapat {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 16px !important;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    padding: 2px;
}

#duyuru-kapat:hover {
    color: white !important;
}

@media (max-width: 768px) {
    #duyuru-bar {
        padding: 0 30px 0 10px !important;
    }

    .duyuru-right-static {
        padding: 0 8px 0 10px;
    }

    #duyuru-metin {
        font-size: 10.5px !important;
    }

    #duyuru-btn {
        font-size: 10px !important;
    }
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
}