@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Outfit:wght@400;700;900&display=swap');

:root {
    --primary: #ff3e3e;
    --primary-glow: rgba(255, 62, 62, 0.5);
    --secondary: #ffce31;
    --bg-dark: #0f1014;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0ab;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
    font-family: 'Pokemon';
    src: url('Pokemon\ Solid.ttf') format('truetype')
}
@font-face {
  font-family: 'tittle';
  src: url('Hey Comic.ttf') format('truetype')
}

body, html {
  font-family: var(--font-main);
  background: linear-gradient(rgba(15, 16, 20, 0.8), rgba(15, 16, 20, 0.9)), url('../images/background.gif') no-repeat center center fixed;
  background-size: cover;
  background-color: var(--bg-dark);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
}

.topBar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 8px 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.topBar:hover {
    border-color: rgba(255, 62, 62, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
  
  .conteudo {
    padding-top: 100px; /* Ajuste o padding superior para compensar o espaço ocupado pelo item fixado */
  }

  
.topBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Sombra do botão */
}

.social-icons,
.right-buttons {
    display: flex;
}

.logo-container {
    text-decoration: none;
    font-family: 'Pokemon';
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffffff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
}

.logo-container img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.logo-container:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-container a {
  text-decoration: none; /* Remover sublinhado */
  color: inherit; /* Usar a cor padrão do texto */
}

.right-buttons a {
  text-decoration: none; /* Remover sublinhado */
  color: inherit; /* Usar a cor padrão do texto */
}

.topButton a {
  text-decoration: none; /* Remover sublinhado */
  color: inherit; /* Usar a cor padrão do texto */
}

.topButton,
.right {
    text-decoration: none;
    margin-left: 10px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topButton:hover,
.right:hover {
    background: var(--surface-hover);
    border-color: var(--glass-border);
    transform: translateY(-2px);
    color: var(--primary);
}

.right.sign-up {
    background: var(--primary);
    color: white;
}

.right.sign-up:hover,
.right.nav-create-char {
    background: var(--primary);
    color: white;
}

.right.nav-create-char:hover {
    background: #e63535;
    box-shadow: 0 0 15px var(--primary-glow);
    color: white;
}

/* Dropdown Style Donation e Promotions */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

@media only screen and (max-width: 768px) {
  .topButton
  {
    display: none;
  }
	.right {
		margin-left: 10px;
		font-size: 10px;
	}
	.logo-container a {
		font-size: 20px;
		width: 10px;
		height: 10px;
	}
}