body {
      background-color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: 'T', Arial, sans-serif;
      position: relative;
      overflow: hidden;
      color: #fff;
    }

    body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('/PageResources/FundoCOD.gif');
      background-size: cover;
      background-position: center;
      opacity: 0.4;
      z-index: -1;
    }

    h1, h2, h3, .header-title {
      font-family: 'H', Impact, sans-serif;
    }

    /* Container Principal da Página */
    .page-container {
      width: 900px;
      height: 600px;
      background-color: rgba(20, 20, 20, 0.7);
      border: 2px solid #555;
      padding: 20px;
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.8);
      position: relative;
      z-index: 1;
    }

    /* ESTILO PARA AS FOTOS SOLTAS (SOBREPOSTAS) */
    .floating-photo {
      position: absolute;
      z-index: 10; 
      pointer-events: none;
      object-fit: cover;
      border-radius: 2px;
    }

    .photo-1 {
      top: 385px;
      left: 710px;
      width: 340px;
      height: auto;
      transform: rotate(-5deg);
    }

    .photo-2 {
      top: 20px;
      right: 740px;
      width: 375px;
      height: auto;
      transform: rotate(-35deg);
    }

    /* Estilo padrão para os containers */
    .box {
      border: 2px solid #555;
      border-radius: 2px;
      position: relative;
      background-image: url('https://i.pinimg.com/1200x/1e/ec/b8/1eecb8a529c1e2ea3cf011816e0ccadc.jpg');
      background-size: 770px;
      background-repeat: repeat;
      background-position: center;
    }

    .corner-tl::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-top: 25px solid #000;
      border-right: 25px solid transparent;
      z-index: 2;
    }

    .corner-br::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 0;
      border-bottom: 25px solid #000;
      border-left: 25px solid transparent;
      z-index: 2;
    }

    /* ESQUERDA - NAVEGAÇÃO E MARQUEE Debaixo */
    .left-column {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
      height: 100%;
    }

    .nav-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 15px;
    }

    .nav-container h2 {
      color: #fceee1;
      text-transform: uppercase;
      letter-spacing: 3px;
      filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black);
      font-size: 1.8em;
      text-align: center;
      margin-bottom: 15px;
    }

    .nav-container nav {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .nav-container a {
      display: block;
      padding: 10px 12px;
      background-color: rgba(0, 0, 0, 0.75);
      color: #e6dfd5;
      text-decoration: none;
      text-align: center;
      font-size: 0.85rem;
      font-weight: bold;
      letter-spacing: 1px;
      border: 1px solid #555;
      border-radius: 2px;
      transition: all 0.2s ease-in-out;
      text-transform: uppercase;
    }

    .nav-container a:hover {
      background-color: #e6dfd5;
      color: #111;
      border-color: #fff;
    }

    /* ÁREA INFERIOR DA COLUNA ESQUERDA (DIVISORES + MARQUEE) */
    .bottom-left-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      width: 100%;
    }

    .divider-img {
      width: 100%;
      height: auto;
      max-height: 20px;
      object-fit: contain;
      display: block;
      margin-bottom: 7px;
    }

    /* MARQUEE PING-PONG */
    .marquee-container {
      width: 100%;
      height: 85px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid #444;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .marquee-track {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      position: absolute;
      animation: marquee-pingpong 10s ease-in-out infinite alternate;
    }

    .marquee-track img {
      height: 55px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    @keyframes marquee-pingpong {
      0% {
        left: 0%;
        transform: translateX(0%);
      }
      100% {
        left: 100%;
        transform: translateX(-100%);
      }
    }

    /* DIREITA - CONTEÚDO DAS REGRAS */
    .right-column {
      height: 100%;
      position: relative;
    }

    .scroll-box-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 25px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
      color: #171411;
    }

    .scroll-box-content::-webkit-scrollbar {
      width: 6px;
    }

    .scroll-box-content::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.4);
    }

    .scroll-box-content::-webkit-scrollbar-thumb {
      background: #555;
      border-radius: 3px;
    }

    .scroll-box-content h1 {
      font-size: 2.2rem;
      color: #000;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-bottom: 2px solid #000;
      padding-bottom: 5px;
    }

    /* Lista Estilizada de Regras */
    .rules-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 5px;
    }

    .rules-list li {
      background: rgba(0, 0, 0, 0.05);
      border-left: 4px solid #000;
      padding: 10px 12px;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .rules-list li strong {
      display: block;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #000;
      margin-bottom: 3px;
    }

    /* Seleção de Texto e Cursores */
    ::selection {
      background-color: #555;
      color: #ffffff;
    }

    ::-moz-selection {
      background-color: #555;
      color: #ffffff;
    }

    html, body, * {
      cursor: url('https://cdn.cursors-4u.net/previews/call-of-duty-logo-c20b2127-32.webp') 32 32, auto !important;
    }

    a, button, input, textarea {
      cursor: url('https://cdn.cursors-4u.net/previews/chrome-link-select-a878ea31-32.webp') 43 34, auto !important;
    }