
    /* BODY ATUALIZADO: Esconde o overflow geral para evitar a barra de rolagem */
    body {
      background-color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: 'T', Arial, sans-serif;
      position: relative;
      overflow: hidden; /* Remove as scroll-bars gerais da página */
    }

    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: 2fr 3fr;
      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: 95px;
      left: 170px;
      width: 350px;
      height: auto;
      transform: rotate(1deg);
    }

    .photo-2 {
      top: -30px;
      right: 840px;
      width: 165px;
      height: auto;
      transform: rotate(17deg);
    }

    .photo-3 {
      top: 328px;
      left: 725px;
      width: 390px;
      height: auto;
      transform: rotate(3deg);
    }

    /* 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: 500px;
      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;
    }

    /* --- COLUNA DA ESQUERDA --- */
    .left-column {
      display: grid;
      grid-template-columns: 100px 1fr;
      grid-template-rows: 1fr 1.8fr; 
      gap: 15px;
      height: 100%;
    }

    .header-sidebar {
      grid-row: 1 / span 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      height: 100%;
    }

    .small-square {
      width: 100%;
      height: 100px;
      background-image: url('https://i.pinimg.com/736x/39/06/00/390600fcb9871432faf2e10744fb9a70.jpg');
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

       .mini-img {
       }
       @keyframes heart{
0%, 12%, 35%, 25%, 50% {
transform: rotate(0deg);
}
 
55% {
transform: rotate(-2.5deg);
}
 
65% {
transform: rotate(3.5deg);
}
 
75% {
transform: rotate(-3deg);
}
 
95%, 100& {
transform: rotate(0deg);
}}
 
.mini-img{
animation: heart 2.0s ease infinite;
}        


    .header-title {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 4.5rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: 5px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    /* MANTÉM O SCROLL INTERNO FUNCIONANDO */
    .scroll-box-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .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 h2 {
      font-size: 1.9rem;
      color: #1c1c1c;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 1px;
    }

    .scroll-box-content p {
      font-size: 0.85rem;
      color: #171411;
      line-height: 1.2;
      text-align: justify;
    }

    .custom-link {
      display: inline-block;
      background-color: rgba(0, 0, 0, 0.75);
      color: #e6dfd5;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.7rem;
      padding: 5px 8px;
      border: 1px solid #777;
      border-radius: 2px;
      transition: all 0.2s ease;
      align-self: flex-start;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .custom-link:hover {
      background-color: #e6dfd5;
      color: #111;
      border-color: #fff;
    }

        /* MANTÉM O SCROLL INTERNO FUNCIONANDO */
    .scroll-box-content-v2 {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .scroll-box-content-v2::-webkit-scrollbar {
      width: 6px;
    }

    .scroll-box-content-v2::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.4);
    }

    .scroll-box-content-v2::-webkit-scrollbar-thumb {
      background: #555;
      border-radius: 3px;
    }

    .scroll-box-content-v2 h2 {
      color: white;
      text-transform: uppercase;
      letter-spacing: 4px;
       filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black)
      drop-shadow(0 -1px 0 black) drop-shadow(1px 0 black);
    color: #fceee1;
    font-size: 1.8em;
      padding-bottom: 5px;
    }

    /* CONTAINER DE NAVEGAÇÃO */
    .nav-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 15px 10px;
    }

    .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;
    }

    /* --- COLUNA DA DIREITA --- */
    .right-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
      height: 100%;
    }

    .top-right-box {
      flex: 0.85;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background-image: none;
    }

    .top-right-box .top-half {
      flex: 0.8;
      background-image: url('/PageResources/BlackCamouflage.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 2px solid #555;
    }

    .top-right-box .top-half h1 {
      color: #fff;
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: 3px;
      text-shadow: 2px 2px 6px #000, 0 0 10px rgba(0,0,0,0.8);
      text-transform: uppercase;
      text-align: center;
      padding: 0 10px;
    }
/* Efeito de expansão no título CALLSIGN COLLECTIVE */
.top-right-box .top-half h1 {
  /* Transição suave para o tamanho e sombra */
  transition: transform 1s ease, letter-spacing 0.5s ease, text-shadow 1s ease;
  cursor: pointer;
}

/* Quando passar o mouse por cima */
.top-right-box .top-half h1:hover {
  transform: scale(1.15); /* Expande o título em 10% */
  letter-spacing: 7px;   /* Aumenta o espaçamento das letras */
  text-shadow: 2px 2px 10px #000, 0 0 15px rgba(255, 255, 255, 0.4); /* Brilho suave */
}
    .top-right-box .bottom-half {
      flex: 1.2;
      background-image: url('https://i.pinimg.com/736x/4d/aa/e6/4daae6728fa782f5ad1a540c3891386c.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .top-right-box .bottom-half p {
      color: #1a1a1a;
      font-size: 0.95rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-align: center;
      padding: 0 10px;
    }

    /* MARQUEE PING-PONG */
    .marquee-container {
      width: 100%;
      height: 45px;
      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 6s ease-in-out infinite alternate;
    }

    .marquee-track img {
      height: 35px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    @keyframes marquee-pingpong {
      0% {
        left: 0%;
        transform: translateX(0%);
      }
      100% {
        left: 100%;
        transform: translateX(-100%);
      }
    }

    .bottom-right-group {
      flex: 1;
      display: flex;
      gap: 15px;
      align-items: stretch;
    }

    .bottom-right-group .corner-tl {
      flex: 1;
    }

    /* LAYOUT DIVIDIDO NO CONTAINER INFERIOR DIREITO */
    .split-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      padding: 12px;
      gap: 10px;
      color: #000;
      z-index: 1;
    }

    .split-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid rgba(0, 0, 0, 0.2);
      padding-right: 10px;
    }

    .split-left h3 {
      font-size: 1.5rem;
      text-transform: uppercase;
      color: #000;
      border-bottom: 1px solid #000;
      padding-bottom: 2px;
      margin-bottom: 6px;
    }

    .split-left p {
      font-size: 0.7rem;
      color: #111;
      line-height: 1.3;
    }

    .simple-link {
      color: #000;
      font-size: 0.7rem;
      font-weight: bold;
      text-decoration: underline;
      transition: opacity 0.2s;
    }

    .simple-link:hover {
      opacity: 0.6;
    }

    .split-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      gap: 6px;
    }

    .counter-box {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      min-height: 25px;
      background: rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 2px;
      padding: 2px;
    }

    .button-textarea-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .button-textarea-box img {
      width: 100px;
      height: auto;
      display: block;
    }

    .button-textarea-box textarea {
      width: 100%;
      height: 40px;
      font-size: 0.65rem;
      font-family: monospace;
      color: #000;
      background-color: rgba(255, 255, 255, 0.8);
      border: 1px solid #000;
      resize: none;
      padding: 4px;
      box-sizing: border-box;
    }

    .iframe-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      width: 140px;
      flex-shrink: 0;
    }

    .decoration-img-top, .decoration-img-bottom {
      max-width: 100%;
      height: 35px;
      object-fit: contain;
    }

    .iframe-box {
      width: 140px;
      height: 140px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border: 3px solid #000;
      border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    }

    .iframe-box iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    /* Seleção de Texto Personalizada */
::selection {
  background-color: #555; /* Cor de fundo da seleção */
  color: #ffffff;        /* Cor do texto selecionado */
}

::-moz-selection { /* Suporte para navegadores baseados em Firefox */
  background-color: #555;
  color: #ffffff;
}
/* Aplica o cursor personalizado em absolutamente todos os elementos da tela */
html, body, * {
  cursor: url('https://cdn.cursors-4u.net/previews/call-of-duty-logo-c20b2127-32.webp') 32 32, auto !important;
}

/* Opcional: Se quiser que o cursor mude ligeiramente ao passar por links/botões */
a, button, input, textarea {
  cursor: url('https://cdn.cursors-4u.net/previews/chrome-link-select-a878ea31-32.webp') 43 34, auto !important;
}
.sound-toggle-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff5ed;
  border: 1px solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.sound-toggle-btn:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.sound-toggle-btn img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  pointer-events: none; /* Garante que o clique seja registrado na div */
}

/* Botão Ocultar/Exibir Fotos Fixado */
.photos-toggle-btn {
  position: fixed;
  top: 65px; /* Posicionado abaixo do botão de som */
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff5ed;
  border: 1px solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.photos-toggle-btn:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.photos-toggle-btn img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  pointer-events: none;
}
/* Prepara os botões para exibirem a tooltip */
.sound-toggle-btn,
.photos-toggle-btn {
  position: fixed;
  /* (Mantenha as propriedades de top, right, etc. que você já tem) */
}

/* Esconde a tooltip por padrão */
.sound-toggle-btn::after,
.photos-toggle-btn::after {
  content: attr(data-tooltip); /* Pega o texto do HTML */
  position: absolute;
  right: 45px; /* Aparece do lado esquerdo da bolinha */
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: #e6dfd5;
  border: 1px solid #555;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Mostra a tooltip quando passar o mouse */
.sound-toggle-btn:hover::after,
.photos-toggle-btn:hover::after {
  opacity: 1;
  visibility: visible;
}