 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
     color: #ffffff;
     font-family: 'Arial', sans-serif;
     overflow-x: hidden;
 }

 /* Header */
 .main-header {
     background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
     padding: 10px 0;
     border-bottom: 2px solid #333;
     position: relative;
 }

 .header-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 2.5rem;
     font-weight: bold;
     color: #ffffff;
     text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.5);
 }

 .logo .clutch {
     color: #ff4444;
     display: block;
     font-size: 3rem;
     letter-spacing: 2px;
 }

 .auth-buttons .btn {
     margin-left: 10px;
     padding: 8px 20px;
     border: none;
     text-transform: uppercase;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 .btn-play {
     background: linear-gradient(45deg, #ff4444, #cc0000);
     color: white;
     box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
 }

 .btn-play:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 68, 68, 0.5);
 }

 /* Navigation */
 .main-nav {
     background: rgba(0, 0, 0, 0.8);
     padding: 10px 0;
     backdrop-filter: blur(10px);
 }

 .nav-tabs {
     border: none;
     display: flex;
     justify-content: space-around;
 }

 .nav-tabs .nav-link {
     color: #ccc;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid #333;
     margin: 0 5px;
     text-transform: uppercase;
     font-weight: bold;
     transition: all 0.3s ease;
     backdrop-filter: blur(5px);
 }

 .nav-tabs .nav-link:hover,
 .nav-tabs .nav-link.active {
     background: linear-gradient(45deg, #ff4444, #cc0000);
     color: white;
     border-color: #ff4444;
     transform: translateY(-2px);
 }

 /* News Grid */
 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     margin: 5px 0;
 }

 .news-card {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     overflow: hidden;
     transition: all 0.3s ease;
     position: relative;
 }

 .news-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
 }

 .news-card-image {
     height: 200px;
     background: linear-gradient(45deg, #333, #555);
     position: relative;
     overflow: hidden;
 }

 .news-badge {
     position: absolute;
     top: 10px;
     right: 10px;
     background: #ff4444;
     color: white;
     padding: 5px 10px;
     border-radius: 5px;
     font-size: 0.8rem;
     font-weight: bold;
     text-transform: uppercase;
 }

 .news-content {
     padding: 20px;
 }

 .news-title {
     font-size: 1.2rem;
     font-weight: bold;
     margin-bottom: 10px;
     color: #fff;
 }

 .news-date {
     color: #999;
     font-size: 0.9rem;
 }

 /* Sidebar */
 .sidebar {
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(10px);
     border-radius: 10px;
     padding: 20px;
     margin-bottom: 20px;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .sidebar h3,
 .sidebar h5 {
     color: #ff4444;
     margin-bottom: 15px;
     text-transform: uppercase;
     font-weight: bold;
 }

 .sidebar-item {
     background: rgba(255, 255, 255, 0.05);
     padding: 10px;
     margin-bottom: 10px;
     border-radius: 5px;
     border-left: 3px solid #ff4444;
     transition: all 0.3s ease;
 }

 .sidebar-item:hover {
     background: rgba(255, 68, 68, 0.1);
     transform: translateX(5px);
 }

 /* Footer */
 .main-footer {
     background: linear-gradient(135deg, #000000, #1a1a1a);
     padding: 40px 0 20px;
     margin-top: 60px;
     border-top: 2px solid #333;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin: 20px 0;
 }

 .social-links a {
     color: #999;
     font-size: 1.5rem;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     color: #ff4444;
     transform: translateY(-3px);
 }

 /* Animations */
 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .logo {
         font-size: 1.8rem;
     }

     .logo .clutch {
         font-size: 2.2rem;
     }

     .hero-title {
         font-size: 1.8rem;
     }

     .hero-character {
         width: 100%;
         opacity: 0.3;
     }

     .nav-tabs {
         flex-direction: column;
     }

     .nav-tabs .nav-link {
         margin: 2px 0;
     }
 }

 /* Loading animation */
 .loading-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #000, #333);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
 }

 .loading-spinner {
     width: 50px;
     height: 50px;
     border: 3px solid #333;
     border-top: 3px solid #ff4444;
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .navbar {
     background: linear-gradient(90deg, #0a0a0a 0%, #2a1a0a 50%, #0a0a0a 100%);
     border-bottom: 2px solid #ff6600;
     padding: 0;
     position: relative;
     overflow: hidden;
 }

 .navbar::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.1) 50%, transparent 100%);
     pointer-events: none;
 }

 .navbar-container {
     /* display: flex; */
     align-items: center;
     justify-content: space-between;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
     height: 60px;
     position: relative;
     z-index: 2;
 }

 .logo-section {
     display: flex;
     align-items: center;
     gap: 15px;
     /* margin-top: 25px; */
 }

 .flag {
     width: 30px;
     height: 20px;
     background: linear-gradient(to bottom, #009739 0%, #009739 33%, #FEDD00 33%, #FEDD00 66%, #009739 66%);
     border-radius: 3px;
     position: relative;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .flag::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 8px;
     height: 8px;
     background: #002776;
     border-radius: 50%;
 }

 .logo {
     font-size: 24px;
     font-weight: bold;
     color: #fff;
     text-transform: uppercase;
     letter-spacing: 2px;
     text-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
 }

 .nav-menu {
     display: flex;
     align-items: center;
     gap: 0;
     list-style: none;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     display: flex;
     align-items: center;
     padding: 20px 18px;
     color: #fff;
     text-decoration: none;
     font-weight: 600;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     border-left: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
 }

 .nav-link:hover {
     background: linear-gradient(180deg, rgba(255, 102, 0, 0.3) 0%, rgba(255, 140, 0, 0.2) 100%);
     color: #ff6600;
     text-shadow: 0 0 8px rgba(255, 102, 0, 0.8);
 }

 .nav-link::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #ff6600, #ff8c00);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .nav-link:hover::before {
     transform: scaleX(1);
 }

 .dropdown-arrow {
     margin-left: 5px;
     font-size: 10px;
     opacity: 0.7;
     transition: transform 0.3s ease;
 }

 .nav-item:hover .dropdown-arrow {
     transform: rotate(180deg);
 }

 .auth-buttons {
     display: flex;
     gap: 10px;
 }

 .auth-btn {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 8px 16px;
     border: 2px solid;
     background: transparent;
     color: #fff;
     text-decoration: none;
     font-weight: bold;
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .btn-register {
     border-color: #ff4444;
     color: #ff4444;
 }

 .btn-register:hover {
     background: #ff4444;
     color: #fff;
     box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
     transform: translateY(-2px);
 }

 .btn-login {
     border-color: #44ff44;
     color: #44ff44;
 }

 .btn-login:hover {
     background: #44ff44;
     color: #000;
     box-shadow: 0 0 20px rgba(68, 255, 68, 0.5);
     transform: translateY(-2px);
 }

 .auth-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s ease;
 }

 .auth-btn:hover::before {
     left: 100%;
 }

 .icon {
     font-size: 14px;
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .navbar-container {
         padding: 0 15px;
     }

     .nav-link {
         padding: 20px 12px;
         font-size: 13px;
     }
 }

 @media (max-width: 768px) {
     .navbar-container {
         padding: 0 10px;
         height: auto;
         flex-direction: column;
         gap: 15px;
         padding: 15px 10px;
     }

     .logo-section {
         width: 100%;
         justify-content: center;
     }

     .nav-menu {
         flex-wrap: wrap;
         justify-content: center;
         gap: 5px;
         width: 100%;
     }

     .nav-link {
         padding: 10px 12px;
         font-size: 12px;
         border: 1px solid rgba(255, 102, 0, 0.3);
         border-radius: 4px;
         margin: 2px;
     }

     .logo {
         font-size: 20px;
     }

     .auth-buttons {
         width: 100%;
         justify-content: center;
     }

     .auth-btn {
         padding: 8px 16px;
         font-size: 11px;
         flex: 1;
         max-width: 120px;
         justify-content: center;
     }
 }

 @media (max-width: 480px) {
     .navbar-container {
         padding: 10px 5px;
         width: 100%;
     }

     .nav-item {
         width: 100%;
     }

     .nav-menu {
         grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
         display: grid;
         gap: 8px;
         width: 100%;
     }

     .nav-link {
         padding: 8px 6px;
         font-size: 10px;
         text-align: center;
         border-radius: 6px;
     }

     .dropdown-arrow {
         display: none;
     }

     .logo {
         font-size: 16px;
         letter-spacing: 1px;
     }

     .flag {
         width: 24px;
         height: 16px;
     }

     .auth-btn {
         padding: 6px 12px;
         font-size: 10px;
     }
 }

 /* Animações adicionais */
 @keyframes glow {

     0%,
     100% {
         box-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
     }

     50% {
         box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
     }
 }

 .navbar:hover {
     animation: glow 2s infinite;
 }

 /* Menu mobile hamburger */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 5px;
 }

 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: #ff6600;
     margin: 3px 0;
     transition: 0.3s;
     border-radius: 2px;
 }

 @media (max-width: 768px) {
     .mobile-menu-toggle {
         display: flex;
     }

     .nav-menu.mobile-hidden {
         display: none;
     }

     .nav-menu.mobile-visible {
         display: flex;
     }
 }

 :root {
     --bg-color: #ffffff;
     --text-color: #000000;
     --slider-bg: #f0f0f0;
 }

 header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 2rem;
     background: var(--slider-bg);
 }

 .slider-container {
     position: relative;
     /* max-width: 100%; */
     overflow: hidden;
     /* margin: 2rem auto; */
     /* width: 90%; */
 }

 .slider {
     display: flex;
     transition: transform 0.5s ease;
 }

 .slide {
     min-width: 100%;
     transition: opacity 0.5s;
 }

 .slide img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 8px;
     /* height: 400px; */
 }

 .nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.5);
     color: white;
     border: none;
     padding: 1rem;
     cursor: pointer;
     z-index: 1;
     border-radius: 50%;
 }

 .prev {
     left: 10px;
 }

 .next {
     right: 10px;
 }

 .switch {
     position: relative;
     display: inline-block;
     width: 50px;
     height: 24px;
 }

 .switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .switch .slider {
     position: absolute;
     cursor: pointer;
     background-color: #ccc;
     transition: 0.4s;
     border-radius: 24px;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
 }

 .switch .slider:before {
     position: absolute;
     content: "";
     height: 18px;
     width: 18px;
     left: 4px;
     bottom: 3px;
     background-color: white;
     transition: 0.4s;
     border-radius: 50%;
 }

 input:checked+.slider {
     background-color: #2196F3;
 }

 input:checked+.slider:before {
     transform: translateX(26px);
 }


 .game-logo {
     font-size: 4rem;
     font-weight: bold;
     background: linear-gradient(45deg, #ff6b35, #f7931e);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     /* margin-bottom: 30px; */
     text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
     height: 320px;
     width: 320px;
     background-size: 100% !important;
     margin-top: 25px;
 }

 .game-subtitle {
     font-size: 1.2rem;
     /* margin-bottom: 40px; */
     opacity: 0.9;
 }

 /* Estilos para cards de notícia no tema escuro personalizado */
 .card-custom-dark {
     background-color: #22252a;
     /* Cor de fundo escura para o card, ajuste conforme a imagem */
     color: #c5c5c5;
     /* Cor de texto principal clara para parágrafos */
     border: 1px solid #3a3f44;
     /* Borda sutil, se desejar */
 }

 .card-custom-dark .card-title {
     color: #ffffff;
     /* Títulos em branco ou cor clara de destaque */
     font-size: 1.25rem;
     /* Ajuste o tamanho se necessário */
     margin-bottom: 0.5rem;
 }

 .card-custom-dark .card-text {
     color: #b0b0b0;
     /* Cor para o texto do parágrafo, um pouco mais suave */
     font-size: 0.9rem;
     line-height: 1.6;
 }

 .card-custom-dark .news-date {
     color: #8c8c8c;
     /* Cor para a data, deve ser sutil mas legível */
     font-size: 0.8rem;
 }

 /* Badges Personalizados */
 .badge {
     /* Estilo base para todos os badges se precisar de padding, etc. */
     padding: 0.35em 0.65em;
     font-weight: 600;
 }

 .news-badge-event {
     background-color: #e04444;
     /* Vermelho vibrante (ajuste para o vermelho do seu tema) */
     color: #ffffff;
 }

 .news-badge-article {
     background-color: #4a5568;
     /* Um cinza azulado escuro ou outra cor neutra do tema */
     color: #ffffff;
 }

 .news-badge-upcoming {
     background-color: #dd6b20;
     /* Laranja/âmbar (ajuste para a cor de "em breve" do seu tema) */
     color: #ffffff;
 }

 /* Botão "Leia Mais" Personalizado */
 .btn-custom-red {
     background-color: #cc0000;
     /* Cor vermelha principal do seu template */
     color: #ffffff;
     border: 1px solid #cc0000;
     /* Borda da mesma cor */
     padding: 0.25rem 0.75rem;
     font-size: 0.875rem;
     text-transform: uppercase;
     font-weight: 600;
     transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
 }

 .btn-custom-red:hover,
 .btn-custom-red:focus {
     background-color: #aa0000;
     /* Vermelho um pouco mais escuro para hover/focus */
     color: #ffffff;
     border-color: #aa0000;
 }

 /* Ajuste para o título da seção de notícias */
 .container h2 {
     /* Se quiser aplicar a todos os h2 dentro de container, ou use uma classe específica */
     color: #e0e0e0;
     /* Cor clara para títulos de seção */
 }

 .botao-download-elegante {
     display: block;
     width: 100%;
     padding: 25px 20px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 18px;
     font-weight: 600;
     color: #f8f9fa;
     background-color: #c82333;
     background-image: linear-gradient(to bottom, #dc3545, #c82333);
     border: 1px solid #a71d2a;
     border-radius: 8px;
     text-decoration: none;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease-in-out;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
     position: relative;
     overflow: hidden;
     box-sizing: border-box;
 }

 .botao-download-elegante:before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     background-color: rgba(255, 165, 0, 0.2);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
     z-index: 0;
 }

 .botao-download-elegante:hover:before,
 .botao-download-elegante:focus:before {
     width: 105%;
     height: 400px;
 }

 .botao-download-elegante:hover,
 .botao-download-elegante:focus {
     background-color: #495057;
     background-image: linear-gradient(to bottom, #5a6268, #495057);
     border-color: #343a40;
     color: #ffffff;
     box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
     transform: translateY(-2px);
 }

 .botao-download-elegante:active {
     background-color: #e06c00;
     background-image: linear-gradient(to bottom, #fd7e14, #e06c00);
     border-color: #c65e00;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     transform: translateY(0);
 }

 .botao-download-elegante>* {
     position: relative;
     z-index: 1;
 }

 .botao-download-elegante .icone-download:after {
     content: ' \21E9';
     font-size: 1.1em;
     margin-right: 8px;
     font-weight: bold;
 }

 .nav-menu {
     display: flex;
     /* gap: 10px; */
 }

 @media (max-width: 768px) {
     .nav-menu {
         display: none;
         flex-direction: column;
         text-align: center;
         padding: 10px;
         /* background-color: #000; */
         /* ou outro fundo escuro */
     }

     .nav-menu.active {
         display: flex;
     }

     .mobile-menu-toggle {
         display: flex;
         flex-direction: column;
         cursor: pointer;
         gap: 5px;
     }

     .mobile-menu-toggle span {
         background-color: orange;
         height: 3px;
         width: 25px;
     }

     .buttons-actions{
        display: none!important;
     }
 }

 .action-buttons {
     margin: 40px 0;
 }

 .btn-primary-custom {
     background: linear-gradient(45deg, #ff6b35, #f7931e);
     border: none;
     padding: 15px 40px;
     font-size: 1.1rem;
     font-weight: bold;
     text-transform: uppercase;
     margin: 0 10px;
     transition: all 0.3s ease;
     border-radius: 5px;
 }

 .btn-primary-custom:hover {
     background: linear-gradient(45deg, #e55a2b, #e8831a);
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
 }

 .btn-secondary-custom {
     background: linear-gradient(to bottom, #dc3545, #c82333);
     /* border: 2px solid #ff6b35; */
     /* color: #ff6b35; */
     padding: 15px 40px;
     font-size: 1.1rem;
     font-weight: bold;
     text-transform: uppercase;
     margin: 0 10px;
     transition: all 0.3s ease;
     border-radius: 5px;
 }

 .btn-secondary-custom:hover {
     background: linear-gradient(to bottom, #fa3d50, #b91727);
     color: white;
     transform: translateY(-3px);
 }