/* SEGA Humming Font */
@font-face {
  font-family: 'SEGA_Humming';
  src: url('./assets/fonts/SEGA_Humming.ttf') format('truetype');
  font-display: swap;
}

/* Global styles for TouNet */
.tounet-font {
  font-family: 'SEGA_Humming', Arial, sans-serif;
}

.tounet-bg {
  background-color: #f2f2f2;
  background-image: url('./assets/images/backgrounds/bg.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
}

/* App button styles matching index.html */
.app-button {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.app-button:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.app-button span.emoji {
  margin-right: 10px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .app-button {
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.55);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 0;
  }

  .app-button span.emoji {
    margin: 0;
    font-size: 24px;
  }
}
