* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(315deg, #003153 0%, #1B1B1B 74%);
}

.navigation-panel {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 30px;
    z-index: 1000;
    padding: 8px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.navigation-panel button {
    background-color: #bbbbbb;
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #000000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 100px;
    white-space: nowrap;
}

.navigation-panel button:hover {
    opacity: 80%;
    transform: translateY(-4px);
}

.tg-icon-link {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #bbbbbb;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.tg-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
}

.tg-icon-link:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

.main-panel {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease; /* Плавная кривая */
}

.main-panel.animated {
    opacity: 1;
    transform: translateY(0);
}

.panel-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.version {
    min-height: 5px;
    color: white;
    opacity: 15%;
}

.utilities-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Контейнер для кнопок в ряд */
.buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}



.panelbuttons button{
    flex: 1;
    min-width: 140px;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    background-color: #d7d8d9;
    color: #606978;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    z-index: 1000;
    letter-spacing: -0.3px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}



.panelbuttons button:hover {
    opacity: 75%;
    transform: translateY(-3px);
}

.soonbtn {
    cursor: not-allowed !important;
    opacity: 0.6;
}

.soonbtn:hover {
    transform: none !important;
    opacity: 0.6 !important;
}