 body {
      background-color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: 'T', Arial, sans-serif;
      position: relative;
      overflow: hidden;
    }

    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;
    }

    .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;
    }

    .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);
    }

    .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;
    }

    .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;
    }

    @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);
    }

    .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;
    }

    .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 {
      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;
    }

    .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;
    }

    /* ESTILOS DA PÁGINA TOOLKIT */
    .toolkit-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 15px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .toolkit-wrapper::-webkit-scrollbar {
      width: 6px;
    }

    .toolkit-wrapper::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.4);
    }

    .toolkit-wrapper::-webkit-scrollbar-thumb {
      background: #555;
      border-radius: 3px;
    }

    .toolkit-section {
      background-color: rgba(15, 15, 15, 0.85);
      border: 1px solid #555;
      padding: 12px;
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .toolkit-section h3 {
      font-size: 1.1rem;
      color: #e6dfd5;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 5px;
    }

    .preview-box {
      background-color: rgba(0, 0, 0, 0.5);
      border: 1px dashed #555;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .code-box-container {
      position: relative;
    }

    .code-textarea {
      width: 100%;
      height: 110px;
      background-color: #0d0d0d;
      color: #a3c9a8;
      border: 1px solid #444;
      font-family: monospace;
      font-size: 0.7rem;
      padding: 8px;
      resize: none;
      border-radius: 2px;
      white-space: pre;
    }

    .copy-btn {
      align-self: flex-end;
      padding: 6px 12px;
      background-color: #222;
      color: #e6dfd5;
      border: 1px solid #555;
      font-size: 0.75rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .copy-btn:hover {
      background-color: #e6dfd5;
      color: #111;
    }

    /* ESTILOS DOS WIDGETS DENTRO DA PÁGINA */
    @font-face {
      font-family: 'CC_H';
      src: url('https://callsigncollective.neocities.org/PageResources/Fontes/ARMY%20RUST.ttf') format('truetype');
    }

    @font-face {
      font-family: 'CC_T';
      src: url('https://callsigncollective.neocities.org/PageResources/Fontes/X.Template-font-stencil.ttf') format('truetype');
    }

    /* DARK WIDGET */
    .cc-webring-widget.cc-dark {
      width: 200px;
      background-color: #000000;
      border: 2px solid #555;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
      font-family: 'CC_T', Arial, sans-serif;
      box-sizing: border-box;
    }

    .cc-webring-widget.cc-dark .cc-title {
      font-family: 'CC_H', Impact, sans-serif;
      font-size: 1.2rem;
      color: #ffffff;
      text-decoration: none;
      text-align: center;
      letter-spacing: 1px;
      transition: opacity 0.2s ease;
    }

    .cc-webring-widget.cc-dark .cc-title:hover { opacity: 0.8; }

    .cc-webring-widget.cc-dark .cc-divider {
      width: 100%;
      border: 0;
      border-top: 1px solid #555;
      margin: 8px 0;
    }

    .cc-webring-widget.cc-dark .cc-middle-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 8px;
    }

    .cc-webring-widget.cc-dark .cc-arrow-btn {
      background-color: #111111;
      color: #ffffff;
      border: 1px solid #555;
      font-size: 1.4rem;
      font-weight: bold;
      text-decoration: none;
      width: 32px;
      height: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 2px;
      transition: all 0.2s ease;
    }

    .cc-webring-widget.cc-dark .cc-arrow-btn:hover {
      background-color: #ffffff;
      color: #000000;
      border-color: #ffffff;
    }

    .cc-webring-widget.cc-dark .cc-char-box {
      width: 60px;
      height: 60px;
      border: 1px solid #555;
      background-color: #000000;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 2px;
      overflow: hidden;
    }

    .cc-webring-widget.cc-dark .cc-char-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cc-webring-widget.cc-dark .cc-random-btn {
      margin-top: 8px;
      width: 100%;
      background-color: #111111;
      color: #ffffff;
      border: 1px solid #555;
      padding: 5px 0;
      font-size: 0.75rem;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      letter-spacing: 1px;
      border-radius: 2px;
      transition: all 0.2s ease;
      text-transform: uppercase;
    }

    .cc-webring-widget.cc-dark .cc-random-btn:hover {
      background-color: #ffffff;
      color: #000000;
      border-color: #ffffff;
    }

    /* LIGHT WIDGET */
    .cc-webring-widget.cc-light {
      width: 200px;
      background-color: #ffffff;
      border: 2px solid #000000;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      font-family: 'CC_T', Arial, sans-serif;
      box-sizing: border-box;
    }

    .cc-webring-widget.cc-light .cc-title {
      font-family: 'CC_H', Impact, sans-serif;
      font-size: 1.2rem;
      color: #000000;
      text-decoration: none;
      text-align: center;
      letter-spacing: 1px;
      transition: opacity 0.2s ease;
    }

    .cc-webring-widget.cc-light .cc-title:hover { opacity: 0.7; }

    .cc-webring-widget.cc-light .cc-divider {
      width: 100%;
      border: 0;
      border-top: 1px solid #000000;
      margin: 8px 0;
    }

    .cc-webring-widget.cc-light .cc-middle-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 8px;
    }

    .cc-webring-widget.cc-light .cc-arrow-btn {
      background-color: #eeeeee;
      color: #000000;
      border: 1px solid #000000;
      font-size: 1.4rem;
      font-weight: bold;
      text-decoration: none;
      width: 32px;
      height: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 2px;
      transition: all 0.2s ease;
    }

    .cc-webring-widget.cc-light .cc-arrow-btn:hover {
      background-color: #000000;
      color: #ffffff;
      border-color: #000000;
    }

    .cc-webring-widget.cc-light .cc-char-box {
      width: 60px;
      height: 60px;
      border: 1px solid #000000;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 2px;
      overflow: hidden;
    }

    .cc-webring-widget.cc-light .cc-char-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cc-webring-widget.cc-light .cc-random-btn {
      margin-top: 8px;
      width: 100%;
      background-color: #eeeeee;
      color: #000000;
      border: 1px solid #000000;
      padding: 5px 0;
      font-size: 0.75rem;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      letter-spacing: 1px;
      border-radius: 2px;
      transition: all 0.2s ease;
      text-transform: uppercase;
    }

    .cc-webring-widget.cc-light .cc-random-btn:hover {
      background-color: #000000;
      color: #ffffff;
      border-color: #000000;
    }

    ::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;
    }

    .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;
    }

    .photos-toggle-btn {
      position: fixed;
      top: 65px;
      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;
    }

    .sound-toggle-btn::after,
    .photos-toggle-btn::after {
      content: attr(data-tooltip);
      position: absolute;
      right: 45px;
      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);
    }

    .sound-toggle-btn:hover::after,
    .photos-toggle-btn:hover::after {
      opacity: 1;
      visibility: visible;
    }
/* Personalização da barra de rolagem para navegadores Chrome, Edge e Safari */
.code-textarea::-webkit-scrollbar {
  width: 8px;  /* Largura da barra vertical */
  height: 8px; /* Altura da barra horizontal */
}

.code-textarea::-webkit-scrollbar-track {
  background: #000000; /* Fundo dos trilhos */
  border: 1px solid #333333;
}

.code-textarea::-webkit-scrollbar-thumb {
  background: #555555; /* Cor do "ponteiro/alça" */
  border-radius: 2px;
}

.code-textarea::-webkit-scrollbar-thumb:hover {
  background: #ffffff; 
}

.code-textarea {
  scrollbar-width: thin;
  scrollbar-color: #555555 #000000;
}
.container-botoes {
  display: flex;
  justify-content: center;
  align-items: center;    
  gap: 12px;              
  width: 100%;        
}

.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;
  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;
}