    :root {
      --primary: #0a1128; 
      --secondary: #fdc500; 
      --light: #f4f4f9;
      --border: #e0e0e0;
      --text: #1a1a1a;
      --accent: #0057b7; 
      --max-width: 1280px;
      --shadow: 0 4px 6px rgba(0,0,0,0.1);
      --radius: 8px;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      color: var(--text);
      background-color: var(--light);
      line-height: 1.8;
      font-size: 16px;
    }
    a {
      color: var(--accent);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    a:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .site-header {
      background: var(--primary);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .header-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .my-logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--secondary);
      letter-spacing: 2px;
      text-transform: uppercase;
      background: linear-gradient(135deg, #fff 0%, #fdc500 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .my-logo:hover {
      text-decoration: none;
      opacity: 0.9;
    }
    .nav-desktop {
      display: flex;
      gap: 25px;
      list-style: none;
    }
    .nav-desktop li a {
      color: #fff;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 20px;
      transition: background-color 0.3s;
    }
    .nav-desktop li a:hover {
      background-color: rgba(253, 197, 0, 0.2);
      color: var(--secondary);
      text-decoration: none;
    }
    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: #fff;
    }
    #nav-toggle {
      display: none;
    }
    #nav-toggle:checked ~ .nav-links {
      display: flex;
    }
    .nav-links {
      display: flex;
    }
    .breadcrumb {
      padding: 15px 0;
      font-size: 0.9rem;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }
    .breadcrumb a {
      color: var(--accent);
    }
    .breadcrumb span {
      margin: 0 8px;
      color: #888;
    }
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, #1a2a6c 100%);
      color: #fff;
      padding: 50px 0;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }
    .last-updated {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      padding: 5px 15px;
      border-radius: 20px;
      margin-top: 15px;
      font-size: 0.9rem;
    }
    main {
      padding: 30px 0;
    }
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 30px;
    }
    @media (max-width: 992px) {
      .content-grid {
        grid-template-columns: 1fr;
      }
    }
    article {
      background: #fff;
      padding: 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    article h2 {
      font-size: 2rem;
      color: var(--primary);
      margin: 40px 0 20px;
      padding-bottom: 10px;
      border-bottom: 3px solid var(--secondary);
    }
    article h3 {
      font-size: 1.5rem;
      color: #1a2a6c;
      margin: 30px 0 15px;
    }
    article h4 {
      font-size: 1.2rem;
      color: #333;
      margin: 20px 0 10px;
    }
    article p {
      margin-bottom: 18px;
    }
    .highlight {
      background: #f0f4ff;
      padding: 20px;
      border-left: 4px solid var(--accent);
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 25px 0;
    }
    .table-responsive {
      overflow-x: auto;
      margin: 25px 0;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
    }
    th, td {
      padding: 12px 15px;
      border: 1px solid var(--border);
      text-align: left;
    }
    th {
      background: var(--primary);
      color: #fff;
    }
    tr:nth-child(even) {
      background: #f8f9fa;
    }
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .widget {
      background: #fff;
      padding: 25px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .widget h3 {
      color: var(--primary);
      margin-bottom: 15px;
      border-bottom: 2px solid var(--secondary);
      padding-bottom: 8px;
    }
    .widget ul {
      list-style: none;
    }
    .widget ul li {
      margin-bottom: 12px;
    }
    .widget ul li a {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .widget ul li a:hover {
      padding-left: 5px;
    }
    .search-box {
      display: flex;
      gap: 10px;
    }
    .search-box input[type="text"] {
      flex: 1;
      padding: 12px 15px;
      border: 2px solid var(--border);
      border-radius: 30px;
      font-size: 1rem;
    }
    .search-box button {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 30px;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s;
    }
    .search-box button:hover {
      background: var(--primary);
    }
    .comment-section, .rating-section {
      margin-top: 40px;
      padding: 25px;
      background: #f9f9f9;
      border-radius: var(--radius);
    }
    .comment-section h3, .rating-section h3 {
      color: var(--primary);
      margin-bottom: 15px;
    }
    textarea, input[type="text"], select {
      width: 100%;
      padding: 12px;
      border: 2px solid var(--border);
      border-radius: var(--radius);
      font-size: 1rem;
      margin-bottom: 15px;
      font-family: inherit;
    }
    .btn {
      display: inline-block;
      background: var(--secondary);
      color: var(--primary);
      font-weight: 700;
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    .rating-stars {
      font-size: 2rem;
      color: #ddd;
      cursor: pointer;
      display: inline-flex;
      gap: 5px;
    }
    .rating-stars .fa-star.active {
      color: var(--secondary);
    }
    .site-footer {
      background: var(--primary);
      color: #fff;
      padding: 40px 0 0;
      margin-top: 50px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding-bottom: 30px;
    }
    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
    .site-footer h3 {
      color: var(--secondary);
      margin-bottom: 15px;
    }
    .site-footer a {
      color: #aab5d0;
    }
    .site-footer a:hover {
      color: var(--secondary);
    }
    .copyright {
      text-align: center;
      padding: 20px 0;
      border-top: 1px solid #1a2a6c;
      font-size: 0.9rem;
    }
    friend-link {
      display: block;
      padding: 15px 0;
    }
    friend-link a {
      display: inline-block;
      margin-right: 15px;
      margin-bottom: 10px;
      padding: 8px 16px;
      background: rgba(255,255,255,0.1);
      border-radius: 20px;
      font-size: 0.9rem;
    }
    .text-center { text-align: center; }
    .mt-20 { margin-top: 20px; }
    .mb-20 { margin-bottom: 20px; }
    .emoji { font-size: 1.2rem; margin-right: 5px; }
    .venue-banner {
      border-radius: var(--radius);
      overflow: hidden;
      margin: 30px 0;
      box-shadow: var(--shadow);
    }
    .venue-banner svg {
      width: 100%;
      height: auto;
      display: block;
    }
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--primary);
        padding: 20px 0;
        margin-top: 15px;
        border-top: 1px solid #1a2a6c;
      }
      .nav-links li {
        text-align: center;
      }
      .nav-desktop {
        display: none;
      }
      .hero h1 {
        font-size: 1.8rem;
      }
      article {
        padding: 20px;
      }
      article h2 {
        font-size: 1.5rem;
      }
    }
