    :root {
      --navy: #0a0e1a;
      --navy2: #111827;
      --blue: #1d6ae5;
      --blue-light: #3b82f6;
      --accent: #f59e0b;
      --accent2: #ef4444;
      --white: #ffffff;
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-400: #9ca3af;
      --gray-600: #4b5563;
      --gray-800: #1f2937;
      --text: #1a202c;
    }

    /* ===== Reset & base ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ===== TOP NAV ===== */
    .topnav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(10, 14, 26, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 60px;
    }
    .topnav-logo {
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .topnav-logo-badge {
      background: var(--blue);
      color: white;
      font-size: 0.7rem;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }
    .topnav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .topnav-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .topnav-links a:hover { color: var(--white); }
    .topnav-cta {
      background: var(--blue);
      color: white !important;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.78rem !important;
      font-weight: 700 !important;
      transition: background 0.2s !important;
    }
    .topnav-cta:hover { background: var(--blue-light) !important; color: white !important; }
    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 80px 20px 60px;
    }

    /* Grid lines background */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(29,106,229,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,106,229,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    /* Radial glow */
    .hero::after {
      content: "";
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(29,106,229,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 860px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(29,106,229,0.15);
      border: 1px solid rgba(29,106,229,0.4);
      color: var(--blue-light);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 28px;
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      background: var(--blue-light);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero-title {
      font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
      font-size: clamp(56px, 10vw, 110px);
      font-weight: bold;
      color: var(--white);
      line-height: 1;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
      animation: fadeUp 0.8s ease 0.1s both;
    }

    .hero-title-ja {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(18px, 3vw, 26px);
      color: rgba(255,255,255,0.6);
      font-weight: bold;
      letter-spacing: 0.3em;
      margin-bottom: 32px;
      animation: fadeUp 0.8s ease 0.2s both;
    }

    .hero-desc {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.9;
      margin-bottom: 40px;
      animation: fadeUp 0.8s ease 0.3s both;
    }

    /* ===== HERO NOTICE BOARD ===== */
    .hero-notice-board {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 14px;
      overflow: hidden;
      margin: 0 auto 40px;
      max-width: 520px;
      animation: fadeUp 0.8s ease 0.35s both;
      text-align: left;
    }
    .hero-notice-board-header {
      padding: 9px 18px;
      background: rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .hero-notice-board-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--accent);
      text-transform: uppercase;
    }
    .hero-notice-board-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .hero-notice-board-item {
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding: 10px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.2s;
    }
    .hero-notice-board-item:last-child { border-bottom: none; }
    .hero-notice-board-item:hover { background: rgba(255,255,255,0.04); }
    .hero-notice-board-date {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.35);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .hero-notice-board-text {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.8s ease 0.4s both;
    }
    .btn-primary {
      background: var(--blue);
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      letter-spacing: 0.05em;
    }
    .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }
    .btn-secondary {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      letter-spacing: 0.05em;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

    /* Scroll hint */
    .hero-scroll {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.3);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      animation: fadeIn 1s ease 1s both;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0% { transform: scaleY(1); opacity: 1; }
      100% { transform: scaleY(0.3); opacity: 0.3; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    /* ===== STATS STRIP ===== */
    .stats-strip {
      background: var(--navy2);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    .stat-item {
      padding: 28px 48px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: var(--blue-light);
      line-height: 1;
      letter-spacing: 0.05em;
    }
    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.1em;
      margin-top: 4px;
    }

    /* ===== SECTION LAYOUTS ===== */
    .section {
      padding: 80px 20px;
    }
    .section-dark {
      background: var(--navy);
    }
    .section-light {
      background: var(--gray-50);
    }
    .section-white {
      background: var(--white);
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--blue);
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .section-label-dark {
      color: var(--blue-light);
    }
    .section-title {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 900;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .section-title-dark {
      color: var(--white);
    }
    .section-desc {
      color: var(--gray-600);
      font-size: 0.95rem;
      margin-bottom: 48px;
    }
    .section-desc-dark {
      color: rgba(255,255,255,0.5);
    }

    /* ===== QUICK LINKS ===== */
    .quicklinks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }
    .quicklink-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 24px 20px;
      text-decoration: none;
      color: var(--text);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .quicklink-card:hover {
      border-color: var(--blue);
      box-shadow: 0 4px 24px rgba(29,106,229,0.12);
      transform: translateY(-3px);
    }
    .quicklink-icon {
      font-size: 1.8rem;
    }
    .quicklink-title {
      font-weight: 700;
      font-size: 0.95rem;
    }
    .quicklink-sub {
      font-size: 0.78rem;
      color: var(--gray-400);
    }
    .quicklink-arrow {
      margin-top: auto;
      font-size: 0.8rem;
      color: var(--blue);
      font-weight: 700;
    }

    /* ===== ACCORDION ===== */
    .accordion {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow 0.25s, border-color 0.25s;
    }
    .accordion:hover {
      border-color: #aac4f5;
      box-shadow: 0 4px 20px rgba(29,106,229,0.09);
    }
    .accordion.active {
      border-color: #aac4f5;
      box-shadow: 0 6px 28px rgba(29,106,229,0.13);
    }

    /* header */
    .accordion-header {
      background: linear-gradient(135deg, #0078ff 0%, #0056b3 100%);
      color: white;
      padding: 0;
      cursor: pointer;
      display: flex;
      align-items: stretch;
      font-weight: 700;
      font-size: 1rem;
      transition: filter 0.2s;
      user-select: none;
    }
    .accordion-header:hover { filter: brightness(1.08); }

    /* icon */
    .accordion-header-icon-col {
      width: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      background: rgba(0,0,0,0.15);
      flex-shrink: 0;
    }

    /* text */
    .accordion-header-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px 18px;
    }
    .accordion-header-title {
      font-size: 0.97rem;
      font-weight: 700;
      line-height: 1.3;
    }
    .accordion-header-sub {
      font-size: 0.72rem;
      font-weight: 400;
      opacity: 0.7;
      margin-top: 2px;
    }

    /* open-clouse */
    .accordion-chevron {
      width: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .accordion-chevron svg {
      width: 18px; height: 18px;
      fill: none;
      stroke: rgba(255,255,255,0.8);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s ease;
    }
    .accordion.active .accordion-chevron svg { transform: rotate(180deg); }

    /* 旧 accordion-icon は非表示にする（HTML残存対応） */
    .accordion-icon { display: none; }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: white;
    }
    .accordion.active .accordion-content { max-height: none; }

    .accordion-inner {
      padding: 22px 24px;
      border-top: 1.5px solid var(--gray-100);
      animation: fadeIn 0.3s ease;
    }

    /* Color variants */
    /* 生徒会新聞 */
    .newspaper-link-card { background: linear-gradient(135deg, #1a3a6b, #2a5298) !important; }
    /* ネット意見箱 */
    .opinion-box-accordion .accordion-header { background: linear-gradient(135deg, #c0392b, #e74c3c) !important; }
    /* 行事カレンダー */
    .calendar-accordion   .accordion-header  { background: linear-gradient(135deg, #d35400, #e67e22) !important; }
    /* 校則*/
    .rules-accordion      .accordion-header  { background: linear-gradient(135deg, #C2D455, #D2E657) !important; }
    /* 回答 */
    .answer-accordion     .accordion-header  { background: linear-gradient(135deg, #27ae60, #a8e063) !important; }

    .radio-accordion     .accordion-header  { background: linear-gradient(#5D3983) !important; }
    /* ===== OPINION BOX BUTTON ===== */
    .opinion-box-button {
      display: block;
      padding: 15px 30px;
      background: linear-gradient(135deg, #c0392b, #e74c3c);
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-align: center;
      margin: 15px 0;
      transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 4px 15px rgba(255,107,53,0.35);
    }
    .opinion-box-button:hover { opacity: 0.9; transform: translateY(-2px); }

    /* ===== MESSAGE ITEMS ===== */
    .message-item {
      background: var(--gray-50);
      border-left: 4px solid var(--blue);
      padding: 16px 20px;
      margin: 12px 0;
      border-radius: 0 10px 10px 0;
      transition: background 0.2s;
    }
    .message-item:hover { background: var(--gray-100); }
    .message-title { color: var(--blue); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
    .message-content { color: var(--gray-600); line-height: 1.8; font-size: 0.93rem; }

    .no-responses {
      text-align: center;
      color: var(--gray-400);
      font-style: italic;
      padding: 24px;
      background: var(--gray-50);
      border-radius: 10px;
    }

    /* ===== NEWSPAPER ARTICLES ===== */
    .newspaper-article {
      border-bottom: 1px solid var(--gray-200);
      padding-bottom: 28px;
      margin-bottom: 28px;
    }
    .newspaper-article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .article-heading {
      font-size: 1.15rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 12px;
      padding-left: 12px;
      border-left: 4px solid #1a1a2e;
    }
    .article-image { width: 100%; margin-bottom: 12px; border-radius: 8px; overflow: hidden; }
    .article-image img { width: 100%; height: auto; display: block; max-height: 320px; object-fit: cover; }
    .article-body { color: var(--gray-800); font-size: 0.95rem; line-height: 1.9; }
    .article-body p { margin: 0 0 10px; }
    .article-body p:last-child { margin-bottom: 0; }
   /* ===== radio ===== */
    .radio-accordion .accordion-header {
      background: linear-gradient(135deg, #7c3aed, #5b21b6) !important;
    }
    .radio-accordion:hover,
    .radio-accordion.active {
      border-color: #c4b5fd !important;
      box-shadow: 0 6px 28px rgba(124,58,237,0.13) !important;
    }

    .radio-on-air {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f5f3ff;
      border: 1.5px solid #c4b5fd;
      border-radius: 10px;
      padding: 10px 16px;
      margin-bottom: 20px;
    }
    .radio-on-air-dot {
      width: 10px;
      height: 10px;
      background: #7c3aed;
      border-radius: 50%;
      flex-shrink: 0;
      animation: radioPulse 1.4s ease-in-out infinite;
    }
    @keyframes radioPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.75); }
    }
    .radio-on-air-text {
      font-size: 0.82rem;
      font-weight: 700;
      color: #5b21b6;
      letter-spacing: 0.05em;
    }
    .radio-on-air-detail {
      margin-left: auto;
      font-size: 0.78rem;
      color: #7c3aed;
    }

    .radio-table-wrap { overflow-x: auto; }
    .radio-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
    }
    .radio-table thead th {
      background: linear-gradient(135deg, #7c3aed, #5b21b6);
      color: white;
      padding: 11px 16px;
      text-align: left;
      font-weight: 700;
      font-size: 0.82rem;
    }
    .radio-table thead th:first-child {
      width: 60px;
      text-align: center;
    }
    .radio-table tbody tr {
      border-bottom: 1px solid var(--gray-200);
      transition: background 0.15s;
    }
    .radio-table tbody tr:last-child { border-bottom: none; }
    .radio-table tbody tr:hover { background: #f5f3ff; }
    .radio-table td {
      padding: 12px 16px;
      vertical-align: middle;
    }
    .radio-table td:first-child { text-align: center; }

    .ep-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #7c3aed, #5b21b6);
      border-radius: 50%;
      font-size: 0.72rem;
      font-weight: 700;
      color: white;
    }
    .radio-date {
      font-weight: 700;
      color: var(--text);
      font-size: 0.9rem;
    }
    .radio-date-sub {
      font-size: 0.75rem;
      color: var(--gray-400);
      margin-top: 2px;
    }
    .radio-members {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .member-chip {
      display: inline-block;
      padding: 3px 10px;
      background: #ede9fe;
      color: #5b21b6;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 700;
    }
    .member-chip.new {
      background: #7c3aed;
      color: white;
    }
    .radio-latest-badge {
      display: inline-block;
      padding: 2px 8px;
      background: var(--accent);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      border-radius: 4px;
      margin-left: 8px;
      vertical-align: middle;
      letter-spacing: 0.05em;
    }
    /* ===== RULES SECTION ===== */
    .rules-search-wrap { margin-bottom: 14px; }
    .rules-search-input {
      width: 100%;
      padding: 12px 18px;
      border: 2px solid var(--gray-200);
      border-radius: 25px;
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
    }
    .rules-search-input:focus {
      border-color: #dc3545;
      box-shadow: 0 0 0 3px rgba(220,53,69,0.12);
    }
    .rules-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
    .rules-cat-btn {
      padding: 6px 16px;
      border: 2px solid #7ab32e;
      border-radius: 20px;
      background: white;
      color: #7ab32e;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.82rem;
      font-family: inherit;
      transition: background 0.2s, color 0.2s;
    }
    .rules-cat-btn.active, .rules-cat-btn:hover { background: #7ab32e; color: white; }
    .rule-item {
      border-left: 4px solid #7ab32e;
      background: #f4faec;
      border-radius: 0 10px 10px 0;
      padding: 14px 18px;
      margin-bottom: 10px;
      transition: background 0.2s;
    }
    .rule-item:hover { background: #e6f5d4; }
    .rule-title { font-weight: 700; color: #5a8a1e; font-size: 0.95rem; margin-bottom: 6px; }
    .rule-body { color: var(--gray-600); line-height: 1.7; font-size: 0.9rem; }
    mark.rule-highlight { background: #ffe066; color: inherit; border-radius: 3px; padding: 0 2px; }
    .rules-no-result {
      text-align: center; color: var(--gray-400); font-style: italic;
      padding: 20px; background: var(--gray-50); border-radius: 8px; margin-bottom: 10px;
    }
    .rules-inquiry-box {
      margin-top: 20px;
      padding: 18px 20px;
      background: linear-gradient(135deg, #fff3cd, #ffeeba);
      border-left: 4px solid #ffc107;
      border-radius: 0 12px 12px 0;
      text-align: center;
    }
    .rules-inquiry-box p { margin: 0 0 10px; font-size: 0.9rem; color: #856404; font-weight: 700; }
    .rules-inquiry-btn {
      display: inline-block;
      padding: 10px 26px;
      background: linear-gradient(135deg, #ffc107, #fd7e14);
      color: white;
      text-decoration: none;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: 0 3px 12px rgba(255,193,7,0.35);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .rules-inquiry-btn:hover { box-shadow: 0 5px 18px rgba(255,193,7,0.5); transform: translateY(-2px); }

    /* ===== CALENDAR ===== */
    .calendar-tabs { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
    .calendar-tab {
      padding: 8px 20px;
      border: 2px solid #d35400;
      border-radius: 20px;
      background: white;
      color: #d35400;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.85rem;
      font-family: inherit;
      transition: background 0.2s, color 0.2s;
    }
    .calendar-tab.active, .calendar-tab:hover { background: #d35400; color: white; }
    .calendar-view { display: none; }
    .calendar-view.active { display: block; animation: fadeIn 0.3s ease; }
    .calendar-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
    .calendar-table th {
      background: linear-gradient(135deg, #d35400, #e67e22);
      color: white; padding: 10px 14px; text-align: left; font-weight: 700;
    }
    .calendar-table th:first-child { width: 90px; text-align: center; }
    .calendar-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
    .calendar-table td:first-child { text-align: center; font-weight: 700; color: #d35400; white-space: nowrap; }
    .calendar-table tr:hover td { background: #fff3e8; }
    .calendar-table tr:last-child td { border-bottom: none; }
    .calendar-month-label { background: #fff3e8; color: #d35400; font-weight: 700; font-size: 0.82rem; padding: 6px 14px !important; }
    .calendar-placeholder { color: #aaa; font-style: italic; font-size: 0.82rem; }
    .monthly-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .monthly-nav-btn {
      background: #d35400; color: white; border: none; border-radius: 50%;
      width: 34px; height: 34px; font-size: 1.3rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: background 0.2s;
    }
    .monthly-nav-btn:hover { background: #b34500; }
    .monthly-title { font-weight: 700; font-size: 1.05rem; color: #d35400; }
    .monthly-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 2px; }
    .monthly-dayname {
      text-align: center; font-size: 0.75rem; font-weight: 700;
      padding: 4px 0; color: #d35400; background: #fff3e8; border-radius: 4px;
    }
    .monthly-dayname:first-child { color: #e03131; }
    .monthly-dayname:last-child { color: #1971c2; }
    .monthly-cells { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
    .monthly-cell {
      min-height: 54px; background: #fafafa; border-radius: 6px;
      padding: 4px 4px; cursor: default;
      border: 1.5px solid transparent; transition: background 0.15s, border-color 0.15s; overflow: visible;
    }
    .monthly-cell.empty { background: transparent; }
    .monthly-cell.sunday .monthly-day-num { color: #e03131; }
    .monthly-cell.saturday .monthly-day-num { color: #1971c2; }
    .monthly-cell.today { background: #fff3e8; border-color: #d35400; }
    .monthly-cell.today .monthly-day-num {
      background: #d35400; color: white; border-radius: 50%;
      width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
    }
    .monthly-cell.has-event { cursor: pointer; }
    .monthly-cell.has-event:hover { background: #ffe8d0; border-color: #e67e22; }
    .monthly-day-num { font-size: 0.78rem; font-weight: 700; margin-bottom: 2px; color: #333; }
    .monthly-event-dot {
      font-size: 0.6rem; background: #d35400; color: white;
      border-radius: 3px; padding: 1px 3px; margin-bottom: 1px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .monthly-event-dot.span-event { border-radius: 0; margin-left: -8px; margin-right: -8px; padding-left: 4px; padding-right: 4px; overflow: visible; }
    .monthly-event-dot.span-start { border-radius: 4px 0 0 4px; margin-left: 0; }
    .monthly-event-dot.span-end { border-radius: 0 4px 4px 0; margin-right: 0; }
    .monthly-event-more { font-size: 0.6rem; color: #d35400; font-weight: 700; }
    .monthly-event-detail {
      margin-top: 12px; padding: 14px 18px;
      background: #fff3e8; border-left: 4px solid #d35400;
      border-radius: 0 10px 10px 0; animation: fadeIn 0.25s ease;
    }
    .monthly-event-detail-title { font-weight: 700; color: #d35400; margin-bottom: 8px; font-size: 0.92rem; }
    .monthly-event-detail-list { margin: 0; padding-left: 0; list-style: none; color: #333; font-size: 0.88rem; line-height: 1.8; }
    .monthly-event-detail-list li { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
    .detail-badge { display: inline-block; padding: 2px 10px; border-radius: 12px; color: white; font-weight: 700; font-size: 0.85rem; }
    .detail-range { font-size: 0.8rem; color: #888; }
    .calendar-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; padding: 10px 12px; background: #fafafa; border-radius: 8px; }
    .legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: #555; }
    .legend-dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; }

    /* ===== NEWSPAPER LINK CARD ===== */
    .newspaper-link-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      border-radius: 14px;
      padding: 20px 24px;
      text-decoration: none;
      color: white;
      margin-bottom: 16px;
      transition: filter 0.2s, transform 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
      position: relative;
      overflow: hidden;
    }
    .newspaper-link-card::before {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
      transition: left 0.5s ease;
    }
    .newspaper-link-card:hover::before { left: 100%; }
    .newspaper-link-card:hover { filter: brightness(1.12); transform: translateY(-2px); }
    .newspaper-link-card-left { display: flex; align-items: center; gap: 16px; }
    .newspaper-link-card-icon { font-size: 2rem; }
    .newspaper-link-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
    .newspaper-link-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
    .newspaper-link-card-arrow {
      font-size: 1.4rem;
      color: rgba(255,255,255,0.5);
      transition: transform 0.2s, color 0.2s;
    }
    .newspaper-link-card:hover .newspaper-link-card-arrow { transform: translateX(4px); color: white; }

    /* ===== MEMBERS SECTION ===== */
    .members-section { background: var(--navy); }
    .members-grid {
      display: flex;
      flex-wrap: flex;
      grid-template-columns: repeat(auto-fit, minmax(6, 1fr));
      gap: 20px;
      margin-top: 8px;
      overflow-x: auto;
    }
    .member-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 24px 16px;
      text-align: center;
      transition: background 0.2s, transform 0.2s;
    }
    .member-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
    .member-avatar {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin: 0 auto 12px;
    }
    .member-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--blue-light); margin-bottom: 0; }
    .member-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }

    /* ===== FOOTER ===== */
    .footer { background: #05080f; border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 20px 32px; }
    .footer-inner {
      max-width: 900px; margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 32px;
    }
    .footer-brand { flex: 1; min-width: 220px; }
    .footer-brand-name { font-size: 1rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
    .footer-brand-sub { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
    .footer-links-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 12px; }
    .footer-links-col ul { list-style: none; }
    .footer-links-col li { margin-bottom: 8px; }
    .footer-links-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links-col a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 900px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px; padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .topnav-links { display: none; }
      .stat-item { padding: 20px 28px; }
      .section { padding: 60px 16px; }
      .accordion-header { padding: 16px 18px; font-size: 0.95rem; }
      .accordion-inner { padding: 18px; }
      .members-grid { 
        flex-wrap: wrap;
      }
      .members-grid > div {
         flex: 1 1 calc(33% - 20px);
      }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .stats-strip { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    }

    .members-grid > div {
      flex:1;
      min-width: 0;
      text-align: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 24px 16px;
    }

