/* 
    Vask Akademi - Custom Styles
    Version: 1.0
    Author: Vask Akademi
*/

/* ========================================
   1. Root Variables & Reset
======================================== */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --danger: #dc3545;
    --accent: #c9302c;
    --warning: #ffc107;
    --gold: #d4af37;
    --success: #28a745;
    --info: #17a2b8;
    --purple: #9b59b6;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--white);
}

/* ========================================
   2. Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1 { font-size: 4rem; }
.display-2 { font-size: 3.5rem; }
.display-3 { font-size: 3rem; }
.display-4 { font-size: 2.5rem; }
.display-5 { font-size: 2rem; }
.display-6 { font-size: 1.5rem; }

/* ========================================
   3. Utilities
======================================== */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.transition { transition: var(--transition); }

/* ========================================
   4. Buttons
======================================== */
.btn {
    font-weight: 500;
    transition: var(--transition);
    text-transform: none;
    border-radius: 4px;
    padding: 10px 25px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 14px 35px;
    font-size: 1rem;
}

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
}

.btn-danger:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ========================================
   5. Navigation
======================================== */
.navbar {
    transition: var(--transition);
    padding: 0;
}

.navbar-brand {
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 1rem 1.2rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--danger) !important;
}

.navbar-nav .nav-link.active {
    color: var(--danger) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--danger);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--danger);
    padding-left: 2rem;
}

/* ========================================
   6. Cards
======================================== */
.card {
    border: none;
    border-radius: 8px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    border: none;
    font-weight: 600;
}

/* ========================================
   7. Forms
======================================== */
.form-control,
.form-select {
    border-radius: 4px;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--danger);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* ========================================
   8. Sections
======================================== */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--danger);
}

/* ========================================
   9. Slider
======================================== */
/* Slider CSS - Tam Genişlik */

/* Hero Slider Container */
.hero-section {
    margin: 0;
    padding: 0;
    margin-top: -1px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

/* Hero Slide Görseli */
.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Hero Slide Görseli - Responsive */
@media (max-width: 1200px) {
    .hero-slide {
        min-height: 550px;
    }
}

@media (max-width: 992px) {
    .hero-slide {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 300px;
    }
}

/* Slider Navigasyon Butonları */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0 20px;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

/* Hero Slider Butonları - Her zaman görünür */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    display: flex !important;
}

/* Gallery Slider Butonları - Mobilde gizle */
.gallery-carousel-wrapper .swiper-button-prev,
.gallery-carousel-wrapper .swiper-button-next {
    background: #dc3545;
}

@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    /* Hero Slider butonları mobilde de görünür */
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        display: flex !important;
        width: 40px;
        height: 40px;
    }
    
    /* Gallery Slider butonları mobilde gizli */
    .gallery-carousel-wrapper .swiper-button-prev,
    .gallery-carousel-wrapper .swiper-button-next {
        display: none;
    }
}

/* Slider Pagination (Noktalar) */
.swiper-pagination {
    bottom: 30px;
    z-index: 10;
    left: 0;
    right: 0;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #ffc107;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 576px) {
    .swiper-pagination {
        bottom: 15px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .swiper-pagination-bullet-active {
        width: 20px;
    }
}
/* Display Text Responsive */
.display-3 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .display-3 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.8rem;
    }
}

/* Lead Text Responsive */
.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .lead {
        font-size: 0.9rem;
    }
}

/* Container Padding Fix */
.hero-slide .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Buton Responsive */
.btn-lg {
    padding: 12px 32px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 8px 16px;
        font-size: 0.85rem;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-lg.me-3 {
        margin-right: 0 !important;
    }
}

/* Hero Stats Box */
.hero-stats {
    animation: slideInLeft 0.8s ease 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-box {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .hero-stats {
        animation: none;
    }
    
    .stat-box {
        padding: 2rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        display: none;
    }
}

/* Görsel Kalitesi Optimizasyonu */
.hero-slide img,
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Picture Element Responsive Images */
picture {
    width: 100%;
}

picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gölge Efekti */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
    z-index: 2;
}

/* Mobile Touch Friendly */
@media (max-width: 768px) {
    .hero-slide {
        padding: 20px 0;
    }
}

/* AOS animasyonu sırasında linkler tıklanabilir olsun */
[data-aos] a,
.aos-init a,
.aos-animate a {
    pointer-events: auto !important;
}

/* Özellikle hero slide butonları */
.hero-slide a.btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* AOS animasyonu sırasında linkler tıklanabilir olsun */
[data-aos] a,
.aos-init a,
.aos-animate a {
    pointer-events: auto !important;
}

/* Özellikle hero slide butonları */
.hero-slide a.btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ========================================
   10. Program Cards
======================================== */
.program-card {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--danger), var(--warning));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.program-card:hover::before {
    transform: scaleX(1);
}

/* ========================================
   11. Features
======================================== */
.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    background: var(--bg-light);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    transition: var(--transition);
}

.feature-box:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   12. CTA Section
======================================== */
.cta-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(0.7);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   13. Footer
======================================== */
footer {
    background: var(--primary);
    color: var(--white);
}

footer a {
    transition: var(--transition);
}

footer .hover-link:hover {
    color: var(--warning) !important;
    padding-left: 5px;
}

/* ========================================
   14. WhatsApp & Scroll Top Buttons
======================================== */
.whatsapp-button,
.scroll-top-btn {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-button {
    bottom: 90px;
    background: #25d366;
    color: white;
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

.scroll-top-btn {
    bottom: 30px;
    background: var(--danger);
    color: white;
    border: none;
    font-size: 18px;
}

.scroll-top-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* ========================================
   15. Preloader
======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s;
}

#preloader .spinner-border {
    width: 50px;
    height: 50px;
}

/* ========================================
   16. Animations
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   17. Swiper Customization
======================================== */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.6;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: var(--warning);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* ========================================
   18. Gallery
======================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--white);
    font-weight: 600;
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* ========================================
   19. Testimonials
======================================== */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--danger);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 1rem;
}

/* ========================================
   20. Timeline
======================================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 4rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 4rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--danger);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   21. Accordion
======================================== */
.accordion-button {
    font-weight: 600;
    background: var(--bg-light);
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--danger);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--danger);
}

.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
}

/* ========================================
   22. Tables
======================================== */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: var(--bg-light);
    transform: scale(1.01);
}

/* ========================================
   23. Badges
======================================== */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

/* ========================================
   24. Progress Bars
======================================== */
.progress {
    height: 10px;
    border-radius: 50px;
    background: var(--bg-light);
    overflow: visible;
}

.progress-bar {
    background: linear-gradient(90deg, var(--danger), var(--warning));
    position: relative;
    border-radius: 50px;
    animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
    from {
        width: 0;
    }
}

.progress-bar::after {
    content: attr(data-value);
    position: absolute;
    right: -20px;
    top: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================================
   25. Media Queries
======================================== */
@media (max-width: 1199px) {
    .display-1 { font-size: 3.5rem; }
    .display-2 { font-size: 3rem; }
    .display-3 { font-size: 2.5rem; }
    .display-4 { font-size: 2rem; }
    .display-5 { font-size: 1.75rem; }
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: 500px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 2rem;
        text-align: left;
    }
    
    .timeline-item::after {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2.25rem; }
    .display-3 { font-size: 2rem; }
    .display-4 { font-size: 1.75rem; }
    .display-5 { font-size: 1.5rem; }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .whatsapp-button,
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        right: 20px;
    }
    
    .whatsapp-button {
        bottom: 80px;
        font-size: 24px;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   26. Print Styles
======================================== */
@media print {
    .navbar,
    .whatsapp-button,
    .scroll-top-btn,
    #preloader,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
}

/* ========================================
   27. Custom Scrollbar
======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--danger);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ========================================
   28. Selection
======================================== */
::selection {
    background: var(--danger);
    color: var(--white);
}

::-moz-selection {
    background: var(--danger);
    color: var(--white);
}