  html { scroll-behavior: smooth; }
        
        #mobile-menu {
            transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }
        #mobile-menu.open {
            max-height: 400px;
            opacity: 1;
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 60vh; 
            overflow: hidden;
            background-color: #000;
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Nöqtəli fon dizaynı */
            background-image: radial-gradient(rgba(3, 47, 141, 0.4) 2px, transparent 2px);
            background-size: 4px 4px; /* Nöqtələrin sıxlığı */
            background-color: rgba(0, 0, 0, 0.3); /* Arxa fonun tündlüyü */
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-header-centered {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            margin-top: 3.5rem;
            position: relative;
        }
        .section-header-centered h3 {
            background-color: white;
            padding: 0 1.5rem;
            z-index: 1;
            position: relative;
        }
        .section-header-centered::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 1px;
            background: linear-gradient(to right, transparent, #d1d5db, transparent);
            z-index: 0;
        }

                .archive-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 2rem;
        }
        @media (min-width: 640px) {
            .archive-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (min-width: 1024px) {
            .archive-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

                .archive-cover-hover {
            transition: all 0.4s ease;
            position: relative;
        }
        .archive-cover-hover:hover {
            border-color: #2563eb;
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
        }
        .archive-cover-hover img {
            transition: filter 0.4s ease;
        }
        .archive-cover-hover:hover img {
            filter: grayscale(0) brightness(1.1);
        }
        .archive-overlay-blue {
            position: absolute;
            inset: 0;
            background-color: rgba(37, 99, 235, 0);
            transition: background-color 0.4s ease;
            pointer-events: none;
        }
        .archive-cover-hover:hover .archive-overlay-blue {
            background-color: rgba(37, 99, 235, 0.1);
        }
        p{
            text-align: justify;
        }
        .serif { font-family: 'Crimson Pro', serif; }
        .role-title { color: #1e40af; border-bottom: 1px solid #e5e7eb; padding-bottom: 2px; margin-bottom: 6px; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
        .member-name { font-weight: 600; font-size: 0.95rem; color: #111827; }
        .ethics-text { font-size: 0.85rem; line-height: 1.6; color: #374151; text-align: justify; }
        .section-title { color: #1e40af; border-bottom: 2px solid #e5e7eb; padding-bottom: 4px; margin-bottom: 12px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
        .sub-section-title { color: #111827; font-weight: 700; font-size: 0.85rem; margin-top: 1.5rem; margin-bottom: 0.5rem; display: block; border-left: 3px solid #1e40af; padding-left: 8px; }
        .member-detail { font-size: 1 rem; color: #4b5563; line-height: 1.3; }
        .doi-link { font-family: monospace; font-size:1 rem; color: #2563eb; }
        .bullet-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; }
        .bullet-list li::before { content: "•"; position: absolute; left: 0; color: #1e40af; font-weight: bold; }
        .warning-box { background-color: #fef2f2; border: 1px solid #fee2e2; padding: 1rem; border-radius: 4px; margin-top: 1rem; }
        .info-box { background-color: #f0f9ff; border: 1px solid #e0f2fe; padding: 1rem; border-radius: 4px; margin-bottom: 1rem; }
        /* Gizli mətni başlanğıcda gizlət */
.more-text {
  display: none;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #2563eb; /* Canlı bir yaşıl tonu */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  outline: none;
}

/* Mətnin stili */
.read-more-btn span {
  margin-right: 10px;
  letter-spacing: 0.3px;
}

/* SVG Ox işarəsinin ilkin vəziyyəti */
.read-more-btn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Üzərinə gəldikdə (Hover) */
.read-more-btn:hover {
  background-color: #1e40af; /* Bir az tündləşir */
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* Üzərinə gəldikdə oxun sağa hərəkəti */
.read-more-btn:hover svg {
  transform: translateX(6px);
}

/* Kliklədikdə sıxılma effekti */
.read-more-btn:active {
  transform: scale(0.95);
}
        .dropdown-menu {
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }
        .dropdown-menu.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }