    :root {
      --bg: #000;
      --text: #fff;   /* Fixed: added # */
      --accent: #fff;
      --footer-bg: #9A2525;
    }

    a {
      text-decoration: none;
      color: #4E0E0F;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      height: 100%;
      background: var(--bg);
      font-family: "Courier New", Courier;
      color: var(--text);
      scroll-behavior: smooth;
    }

    header {
      position: fixed;
      font-weight: bold;
      top: 0;
      left: 0;
      width: 100%;
      background: #9A2525;
      color: #fff;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 30px;
      backdrop-filter: blur(8px);
    }

    header .logo {
      font-weight: bold;
      letter-spacing: 1px;
      cursor: pointer;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-size: 1rem;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--accent);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      width: 30px;
      height: 25px;
      gap: 5px;
      z-index: 20;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--text);
      border-radius: 2px;
      transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg);
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      nav ul.active {
        max-height: 200px;
      }

      .menu-toggle {
        display: flex;
      }

      .slide-text {
        display: none;
      }
    }

    .slider {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: 95vh;
      overflow: hidden;
      margin-top: 60px;
      background: #000;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 2;
    }

    .slide img,
    .slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide-text {
      position: absolute;
      top: 50%;
      left: 60px;
      transform: translateY(-50%);
      color: var(--text);
      max-width: 500px;
      z-index: 5;
      text-shadow: 0 2px 10px rgba(0,0,0,0.7);
      animation: fadeInUp 1s ease both;
    }

    .slide-text h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
      font-weight: 700;
      line-height: 1.2;
    }

    .slide-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ddd;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .controls {
      position: absolute;
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 20px;
      z-index: 3;
    }

    .btn {
      width: 40px;
      height: 40px;
      border: 2px solid var(--text);
      border-radius: 50%;
      color: var(--text);
      background: transparent;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .btn:hover {
      background: rgba(255,255,255,0.3);
    }

    main {
      background: var(--bg);
      padding: 60px 20px;
      text-align: center;
    }

    .content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .content p {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
      font-size: 1.1rem;
      color: #D9A5A1;
    }

    .responsive-img {
      width: 62vw;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .posts-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: stretch;
      padding-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
      box-sizing: border-box;
    }

    .posts-grid .item {
      text-align: center !important;
      font-size: 1.6rem;
      margin-top: 15px;
    }

    .posts-grid .item .media {
      width: 62vw !important;
      max-width: 62vw !important;
      height: auto !important;
      margin: 0 auto !important;
      display: block !important;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .posts-grid .item .media {
        width: calc(100% - 10px) !important;
        max-width: 100% !important;
        margin: 0 auto !important;
      }
    }

    .posts-grid .item .media:hover {
      transform: scale(1.01);
    }

    .posts-grid .item .title {
      margin-top: 12px;
      font-size: 30px;
      color: var(--text);
      padding-bottom: 10px;
    }

    .posts-grid .item .title a {
      color: #fff;
    }

    @media (min-width: 768px) {
      .posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 40px;
        justify-items: stretch;
      }

      .posts-grid .item {
        max-width: 100%;
        text-align: left;
      }
    }

    footer {
      width: 100%;
      background-color: var(--footer-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      text-align: center;
      gap: 25px;
    }

    footer h2 {
      color: #fff;
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .footer-email {
      color: #fff;
      font-size: 1rem;
    }

    .footer-email a {
      color: var(--accent);
    }

    .social-icons {
      display: flex;
      gap: 20px;
      margin-top: 10px;
    }

    .social-icons a {
      color: var(--text);
      font-size: 1.5rem;
      transition: color 0.3s, transform 0.3s;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: var(--accent);
      transform: scale(1.2);
    }

    .contact-form {
      display: flex;
      color: #000;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      width: 100%;
      max-width: 500px;
      border: 2px solid #fff;
      padding: 25px;
      border-radius: 10px;
      background: #fff;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px 15px;
      border: 1px solid #444;
      border-radius: 6px;
      background: #C7C7C7;
      color: #000;
      font-family: inherit;
      font-size: 1rem;
      outline: none;
      transition: border 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--accent);
    }

    .contact-form button {
      background: #9A2525;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
      transition: background 0.3s, transform 0.2s;
    }

    .contact-form button:hover {
      background: #B68E8A;
      color: #4E0E0F;
      transform: scale(1.05);
    }

    #unmute-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 50;
      background: rgba(255,255,255,0.2);
      border: 1px solid #fff;
      color: #fff;
      padding: 10px 18px;
      border-radius: 30px;
      font-size: 0.95rem;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition: background 0.3s, opacity 0.5s;
    }
    #unmute-btn:hover {
      background: rgba(255,255,255,0.4);
    }