    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .main-wrapper {
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e5e5e5;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header-top {
      background: #1a1a1a;
      color: white;
      padding: 0.5rem 2rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .breaking-news {
      display: flex;
      align-items: center;
      gap: 1rem;
      overflow: hidden;
    }

    .breaking-tag {
      background: #dc2626;
      padding: 0.2rem 0.8rem;
      border-radius: 3px;
      font-weight: 600;
    }

    .news-ticker {
      white-space: nowrap;
      animation: ticker 30s linear infinite;
    }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .header-date {
      font-size: 0.7rem;
      opacity: 0.8;
    }

    .header-main {
      padding: 1.2rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -1px;
      color: #1a1a1a;
      text-decoration: none;
      position: relative;
    }

    .logo .highlight {
      color: #dc2626;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: #1a1a1a;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding-bottom: 0.3rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #dc2626;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a.active::after {
      width: 100%;
    }

    .auth-section {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn {
      padding: 0.7rem 1.8rem;
      border: none;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #1a1a1a;
      color: #1a1a1a;
    }

    .btn-outline:hover {
      background: #1a1a1a;
      color: white;
    }

    .btn-primary {
      background: #dc2626;
      color: white;
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

    .btn-primary:hover {
      background: #b91c1c;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    }

    .user-menu {
      position: relative;
    }

    .user-button {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 1.2rem;
      background: #f5f5f5;
      border: 2px solid #e5e5e5;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .user-button:hover {
      border-color: #1a1a1a;
    }

    .user-avatar {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #dc2626, #b91c1c);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
    }

    .user-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 0.75rem;
      background: white;
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      min-width: 180px;
      padding: 0.5rem;
      animation: fadeSlideDown 0.3s ease;
    }

    @keyframes fadeSlideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .user-dropdown.active {
      display: block;
    }

    .user-dropdown button {
      width: 100%;
      padding: 0.75rem 1rem;
      border: none;
      background: transparent;
      color: #6b7280;
      text-align: left;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-size: 0.9rem;
      font-family: 'Inter', sans-serif;
    }

    .user-dropdown button:hover {
      background: #f5f5f5;
      color: #dc2626;
    }

    /* Auth Modal */
    .auth-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .auth-modal.active {
      display: flex;
    }

    .auth-modal-content {
      background: white;
      border-radius: 12px;
      max-width: 480px;
      width: 100%;
      padding: 3rem;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      animation: modalSlideUp 0.4s ease-out;
    }

    @keyframes modalSlideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .auth-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: #f5f5f5;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      color: #6b7280;
      transition: all 0.3s ease;
    }

    .auth-close:hover {
      background: #e5e5e5;
      transform: rotate(90deg);
    }

    .auth-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .auth-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .auth-header p {
      color: #6b7280;
      font-size: 0.95rem;
    }

    .auth-tabs {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      background: #f5f5f5;
      padding: 0.5rem;
      border-radius: 8px;
    }

    .auth-tab {
      flex: 1;
      padding: 0.8rem;
      border: none;
      background: transparent;
      color: #6b7280;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .auth-tab.active {
      background: white;
      color: #1a1a1a;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .auth-form {
      display: none;
    }

    .auth-form.active {
      display: block;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    .form-group input {
      width: 100%;
      padding: 0.9rem 1.2rem;
      border: 2px solid #e5e5e5;
      border-radius: 8px;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
    }

    .form-group input:focus {
      outline: none;
      border-color: #dc2626;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    }

    .form-submit {
      width: 100%;
      margin-top: 1rem;
    }

    /* Loading Overlay */
    .loading-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.95);
      z-index: 3000;
      align-items: center;
      justify-content: center;
    }

    .loading-overlay.active {
      display: flex;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #e5e5e5;
      border-top-color: #dc2626;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Page Wrapper */
    .page {
      display: none;
      min-height: 100%;
      padding-top: 110px;
      width: 100%;
    }

    .page.active {
      display: block;
    }

    /* Hero Section */
    .hero {
      width: 100%;
      padding: 4rem 2rem;
      background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.1;
      color: #1a1a1a;
      margin-bottom: 1.5rem;
    }

    .hero-text p {
      font-size: 1.25rem;
      color: #6b7280;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
    }

    .hero-feature {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .hero-feature:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    }

    .hero-feature-img {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
    }

    .hero-feature-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
      color: white;
    }

    .category-badge {
      display: inline-block;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }

    .category-badge.news {
      background: #dc2626;
    }

    .category-badge.art {
      background: linear-gradient(135deg, #ec4899, #8b5cf6);
    }

    .category-badge.science {
      background: linear-gradient(135deg, #3b82f6, #06b6d4);
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    .hero-feature h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    /* Section Container */
    .section {
      width: 100%;
      padding: 5rem 2rem;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    .section-header {
      margin-bottom: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #1a1a1a;
      padding-bottom: 1rem;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a1a1a;
    }

    .filter-tabs {
      display: flex;
      gap: 1rem;
    }

    .filter-btn {
      padding: 0.6rem 1.5rem;
      border: 2px solid #e5e5e5;
      background: white;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #6b7280;
    }

    .filter-btn:hover,
    .filter-btn.active {
      border-color: #1a1a1a;
      background: #1a1a1a;
      color: white;
    }

    /* Article Grid */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      width: 100%;
    }

    .article-card {
      background: white;
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: #1a1a1a;
    }

    .article-image {
      width: 100%;
      height: 240px;
      background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }

    .article-card:hover .article-image {
      transform: scale(1.05);
    }

    .article-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.8rem;
      color: #6b7280;
    }

    .article-date {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .article-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .article-excerpt {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .read-more {
      color: #dc2626;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s ease;
      font-size: 0.9rem;
    }

    .read-more:hover {
      gap: 1rem;
    }

    /* Art Gallery Horizontal Scroll */
    .art-gallery {
      width: 100%;
      background: #1a1a1a;
      padding: 5rem 0;
      overflow: hidden;
    }

    .art-gallery .section-header {
      padding: 0 2rem;
      border-bottom-color: #374151;
    }

    .art-gallery .section-header h2 {
      color: white;
    }

    .art-scroll-container {
      display: flex;
      gap: 2rem;
      padding: 0 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: #dc2626 #374151;
    }

    .art-scroll-container::-webkit-scrollbar {
      height: 8px;
    }

    .art-scroll-container::-webkit-scrollbar-track {
      background: #374151;
    }

    .art-scroll-container::-webkit-scrollbar-thumb {
      background: #dc2626;
      border-radius: 4px;
    }

    .art-card {
      flex: 0 0 400px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .art-card:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    }

    .art-image {
      width: 100%;
      height: 400px;
      background: linear-gradient(135deg, #ec4899, #8b5cf6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      position: relative;
      overflow: hidden;
    }

    .art-info {
      padding: 1.5rem;
      background: white;
    }

    .art-info h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .art-artist {
      color: #6b7280;
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }

    .art-style {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      background: linear-gradient(135deg, #ec4899, #8b5cf6);
      color: white;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* Science Section */
    .science-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: white;
    }

    .science-section .section-header {
      border-bottom-color: #334155;
    }

    .science-section .section-header h2 {
      color: white;
    }

    .science-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .science-card {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      padding: 2rem;
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .science-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .science-card:hover {
      border-color: #3b82f6;
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
      transform: translateY(-5px);
    }

    .science-card:hover::before {
      opacity: 1;
    }

    .science-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #3b82f6, #06b6d4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    }

    .science-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .science-card p {
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .science-meta {
      display: flex;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: #64748b;
    }

    /* Article Detail Page */
    .article-detail {
      width: 100%;
      padding-top: 110px;
    }

    .article-hero {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, #1a1a1a, #374151);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12rem;
      position: relative;
      overflow: hidden;
    }

    .article-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 150px;
      background: linear-gradient(to top, white, transparent);
    }

    .article-detail-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }

    .article-detail-header {
      margin-bottom: 3rem;
    }

    .article-detail-header .category-badge {
      margin-bottom: 1.5rem;
    }

    .article-detail-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      color: #1a1a1a;
      margin-bottom: 1.5rem;
    }

    .article-detail-meta {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid #e5e5e5;
      color: #6b7280;
    }

    .article-body {
      margin-top: 3rem;
    }

    .article-body p {
      font-size: 1.15rem;
      line-height: 1.9;
      color: #374151;
      margin-bottom: 1.5rem;
    }

    .article-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #1a1a1a;
      margin: 2.5rem 0 1.5rem;
    }

    .article-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: #1a1a1a;
      margin: 2rem 0 1rem;
    }

    .article-body ul,
    .article-body ol {
      margin: 1.5rem 0;
      padding-left: 2rem;
    }

    .article-body li {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #374151;
      margin-bottom: 0.75rem;
    }

    .pull-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-style: italic;
      color: #1a1a1a;
      padding: 2rem;
      border-left: 4px solid #dc2626;
      background: #f5f5f5;
      margin: 3rem 0;
    }

    /* Newsletter */
    .newsletter {
      background: linear-gradient(135deg, #1a1a1a, #374151);
      color: white;
      padding: 5rem 2rem;
      text-align: center;
    }

    .newsletter h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .newsletter p {
      font-size: 1.1rem;
      color: #94a3b8;
      margin-bottom: 2.5rem;
    }

    .newsletter-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      gap: 1rem;
    }

    .newsletter-form input {
      flex: 1;
      padding: 1rem 1.5rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form input:focus {
      outline: none;
      border-color: #dc2626;
    }

    .newsletter-form button {
      padding: 1rem 2.5rem;
    }

    /* Footer */
    footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 4rem 2rem 2rem;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid #334155;
    }

    .footer-about h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: white;
      margin-bottom: 1rem;
    }

    .footer-about p {
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .social-link:hover {
      background: #dc2626;
      transform: translateY(-3px);
    }

    .footer-section h4 {
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: #dc2626;
      padding-left: 5px;
    }

    .footer-bottom {
      text-align: center;
      color: #64748b;
      font-size: 0.9rem;
    }

    /* Legal Modal */
    .legal-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2500;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .legal-modal.active {
      display: flex;
    }

    .legal-modal-content {
      background: white;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      max-height: 80%;
      overflow-y: auto;
      padding: 3rem;
      position: relative;
    }

    .legal-modal h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .legal-modal h3 {
      font-size: 1.5rem;
      margin: 2rem 0 1rem;
    }

    .legal-modal p {
      line-height: 1.8;
      margin-bottom: 1rem;
      color: #374151;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .science-grid {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .header-top {
        padding: 0.5rem 1rem;
      }

      .breaking-news {
        font-size: 0.7rem;
      }

      .header-main {
        padding: 1rem;
      }

      .logo {
        font-size: 1.5rem;
      }

      .nav-links {
        display: none;
      }

      .hero-text h1 {
        font-size: 2.5rem;
      }

      .hero-text p {
        font-size: 1.1rem;
      }

      .hero-feature-img {
        height: 350px;
        font-size: 5rem;
      }

      .section {
        padding: 3rem 1rem;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .articles-grid {
        grid-template-columns: 1fr;
      }

      .art-card {
        flex: 0 0 300px;
      }

      .art-image {
        height: 300px;
        font-size: 4rem;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }

      .article-detail-header h1 {
        font-size: 2.5rem;
      }
    }
.article-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}
