* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
  }
  
  .background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  
  .background img {
    position: absolute;
    opacity: 0.07;
    animation: float infinite alternate ease-in-out;
  }
  
  @keyframes float {
    from {
      transform: translate(0px, 0px);
    }
    to {
      transform: translate(var(--dx, 0px), var(--dy, 0px));
    }
  }
  
  .content {
    position: relative;
    z-index: 1;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  
  .title {
    font-size: 24px;
    color: #2e2e2e;
    font-weight: 600;
  }
  
  .tg-button {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #f9c03e, #ff9800);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .tg-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .button-row {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }
  
  .secondary-button {
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 500;
    color: #ff9800;
    border: 2px solid #ff9800;
    border-radius: 12px;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
  }
  
  .secondary-button:hover {
    background: #ff9800;
    color: #fff;
  }