:root {
    --navy: #1a2744;
    --navy-light: #243456;
    --gold: #d4a843;
    --gold-light: #f0d68a;
    --red: #c0392b;
    --red-soft: #e74c3c;
    --green: #27ae60;
    --green-soft: #2ecc71;
    --orange: #e67e22;
    --blue-accent: #3498db;
    --bg: #f5f0e8;
    --bg-card: #ffffff;
    --text: #1a2744;
    --text-muted: #5a6a7a;
    --border: #ddd5c8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2c4270 100%);
    color: white;
    padding: 48px 24px 40px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border: 3px solid rgba(212,168,67,0.2);
    border-radius: 50%;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 140px; height: 140px;
    border: 2px solid rgba(212,168,67,0.15);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
  }

  .hero .subtitle {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 300;
  }

  .hero .date-badge {
    display: inline-block;
    margin-top: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }
  
  .hero .date-badge-button {
    display: inline-block;
    margin-top: 16px;
    background: #c0392b;
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
  }

  .hero .date-badge-button:hover {
    background-color: var(--gold);
    font: small;
    transition: 0.5s;
    
  }

  .countdown {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .countdown-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    min-width: 70px;
  }

  .countdown-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }

  .countdown-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-top: 4px;
  }

  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px;
  }

  /* Alert Banner */
  .alert-banner {
    background: linear-gradient(90deg, var(--red), var(--red-soft));
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(192,57,43,0.3);
    animation: pulse-shadow 2s infinite;
  }

  @keyframes pulse-shadow {
    0%, 100% { box-shadow: 0 4px 15px rgba(192,57,43,0.3); }
    50% { box-shadow: 0 4px 25px rgba(192,57,43,0.5); }
  }

  .alert-banner .icon { font-size: 1.3rem; }

  /* Section */
  .section {
    margin-bottom: 28px;
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--navy);
  }

  .section-header .icon {
    width: 36px; height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
  }

  /* Cards */
  .card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s;
  }

  .card:hover { transform: translateY(-1px); }

  .question-card {
    border-left: 4px solid var(--red);
  }

  .question-card.resolved {
    border-left-color: var(--green);
    opacity: 0.7;
  }

  .question-card .q-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .question-card .q-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
  }

  .question-card .q-detail {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 6px;
  }

  .priority-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .priority-critical {
    background: var(--red);
    color: white;
  }

  .priority-high {
    background: var(--orange);
    color: white;
  }

  .priority-medium {
    background: var(--blue-accent);
    color: white;
  }

  /* Timeline */
  .timeline {
    position: relative;
    padding-left: 28px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
  }

  .timeline-item {
    position: relative;
    margin-bottom: 20px;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--navy);
    background: var(--bg);
  }

  .timeline-item.urgent::before {
    border-color: var(--red);
    background: var(--red);
  }

  .timeline-item.done::before {
    border-color: var(--green);
    background: var(--green);
  }

  .timeline-date {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--navy);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
  }

  .timeline-content {
    font-size: 0.92rem;
  }

  .timeline-content strong {
    color: var(--navy);
  }

  /* Budget Summary */
  .budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .budget-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
  }

  .budget-item .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
  }

  .budget-item .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .budget-bar {
    height: 10px;
    background: #e8e2d8;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 12px;
  }

  .budget-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease;
  }

  .budget-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    font-size: 0.8rem;
  }

  .budget-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .budget-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
  }

  /* Checklist */
  .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe3;
    font-size: 0.92rem;
  }

  .checklist-item:last-child { border-bottom: none; }

  .check-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .check-box.checked {
    background: var(--green);
    border-color: var(--green);
    color: white;
    font-size: 0.75rem;
  }


  .birim-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
    margin-left: 6px;
  }

  .birim-lojistik { background: #ebf5fb; color: #2980b9; }
  .birim-sponsorluk { background: #fef9e7; color: #b7950b; }
  .birim-sosyal { background: #f4ecf7; color: #8e44ad; }
  .birim-akademi { background: #eafaf1; color: #27ae60; }
  .birim-organizasyon { background: #fdebd0; color: #d35400; }

  /* Time is Coming Banner */
  .time-banner {
    text-align: center;
    margin-top: 32px;
    padding: 0 16px;
  }

  .time-banner img {
    max-width: 340px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(26,39,68,0.18);
    border: 3px solid var(--gold);
  }

  .time-banner p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 12px;
    letter-spacing: 0.5px;
  }

  /* Footer */
  .footer {
    text-align: center;
    padding: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 20px;
  }

  .note-box {
    background: #fef9e7;
    border: 1px solid #f9e79f;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.88rem;
    margin-top: 12px;
    color: #7d6608;
  }

  /* Accordion sections */
  .accordion {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .accordion-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
  }

  .accordion-head:hover {
    background: #f9f5ed;
  }

  .accordion-num {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    color: white;
  }

  .accordion-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    flex: 1;
  }

  .accordion-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f0ebe3;
    padding: 2px 10px;
    border-radius: 12px;
  }

  .accordion-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.25s;
  }

  .accordion.open .accordion-arrow {
    transform: rotate(90deg);
  }

  .accordion-body {
    display: none;
    padding: 0 18px 16px;
  }

  .accordion.open .accordion-body {
    display: block;
  }

  .acc-question {
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe3;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .acc-question:last-child {
    border-bottom: none;
  }

  .acc-question strong {
    color: var(--navy);
    font-weight: 600;
  }

  .section-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f9f5ed 0%, #f0ebe3 100%);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 1.6rem; }
    .budget-grid { grid-template-columns: 1fr; }
    .countdown { flex-wrap: wrap; }
  }