body {
    background: #155187;
    font-family: 'Inter', 'Roboto', 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffd700;
}
.container {
    max-width: 440px;
    margin: 48px auto 0 auto;
    padding: 0;
    text-align: center;
    background: rgba(23, 78, 124, 0.96);
    border-radius: 18px;
    box-shadow: 0 4px 32px #174e7c44;
}
.logo-wrapper {
    margin: 32px 0 20px 0;
    padding-top: 32px;
}
.logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    box-shadow: 0 2px 16px #ffd70040;
    background: #fff;
    object-fit: cover;
}
.lang-switch {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    background: #174e7c;
    border-radius: 28px;
    border: 1.5px solid #ffd700;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 1px 6px #ffd70020;
}
.lang {
    border: none;
    background: none;
    padding: 12px 28px;
    font-size: 1.08em;
    cursor: pointer;
    color: #ffd700;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    outline: none;
}
.lang.active {
    background: linear-gradient(90deg, #ffd700 0%, #f7d774 100%);
    color: #174e7c;
    font-weight: 700;
    border-radius: 24px;
    box-shadow: 0 2px 8px #ffd70022;
}
.title {
    font-size: 2.1em;
    font-weight: 700;
    margin: 18px 0 10px 0;
    letter-spacing: 0.5px;
    color: #ffd700;
}
.subtitle {
    color: #fffbe6;
    margin-bottom: 36px;
    font-size: 1.08em;
    font-weight: 400;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 32px 24px 32px 24px;
}
.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-radius: 20px;
    font-size: 1.13em;
    font-weight: 500;
    box-shadow: 0 2px 12px #ffd70020;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    border: 1.5px solid #ffd700;
    background: #174e7c;
    color: #ffd700;
}
.link-btn .icon {
    margin-right: 14px;
    display: flex;
    align-items: center;
}
.link-btn .icon img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 2px solid #ffd700;
}
.link-btn .text {
    flex: 1;
    text-align: left;
}
.link-btn .more {
    font-size: 1.4em;
    color: #fffbe6;
    margin-left: 14px;
}
.link-btn.green {
    background: linear-gradient(90deg, #2dce89 0%, #232946 100%);
    border-color: #2dce89;
    color: #fff;
}
.link-btn.green:hover {
    box-shadow: 0 6px 18px #2dce8940;
    transform: translateY(-2px) scale(1.025);
    background: linear-gradient(90deg, #232946 0%, #2dce89 100%);
}
.link-btn.blue {
    background: linear-gradient(90deg, #3a86ff 0%, #232946 100%);
    border-color: #3a86ff;
    color: #fff;
}
.link-btn.blue:hover {
    box-shadow: 0 6px 18px #3a86ff40;
    transform: translateY(-2px) scale(1.025);
    background: linear-gradient(90deg, #232946 0%, #3a86ff 100%);
}
.link-btn.orange {
    background: linear-gradient(90deg, #ffbe76 0%, #232946 100%);
    border-color: #ffbe76;
    color: #232946;
}
.link-btn.orange:hover {
    box-shadow: 0 6px 18px #ffbe7640;
    transform: translateY(-2px) scale(1.025);
    background: linear-gradient(90deg, #232946 0%, #ffbe76 100%);
}
.link-btn.pink {
    background: linear-gradient(90deg, #ff6f91 0%, #232946 100%);
    border-color: #ff6f91;
    color: #fff;
}
.link-btn.pink:hover {
    box-shadow: 0 6px 18px #ff6f9140;
    transform: translateY(-2px) scale(1.025);
    background: linear-gradient(90deg, #232946 0%, #ff6f91 100%);
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0;
    border-radius: 18px;
  }
  .links {
    padding: 24px 4vw 24px 4vw;
    gap: 14px;
  }
  .logo-wrapper {
    margin: 18px 0 12px 0;
    padding-top: 18px;
  }
  .logo {
    width: 64px;
    height: 64px;
  }
  .title {
    font-size: 1.3em;
  }
  .subtitle {
    font-size: 1em;
    margin-bottom: 18px;
  }
  .link-btn {
    padding: 12px 8px;
    font-size: 0.98em;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .links {
    padding: 8px 1vw 8px 1vw;
    gap: 6px;
  }
  .logo-wrapper {
    margin: 8px 0 6px 0;
    padding-top: 8px;
  }
  .logo {
    width: 38px;
    height: 38px;
  }
  .title {
    font-size: 1em;
    margin: 8px 0 4px 0;
  }
  .subtitle {
    font-size: 0.9em;
    margin-bottom: 6px;
  }
  .link-btn {
    padding: 6px 2px;
    font-size: 0.9em;
    border-radius: 7px;
    min-height: 38px;
  }
  .link-btn .icon {
    margin-right: 6px;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .link-btn .icon img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: block;
  }
  .link-btn .text {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .lang-switch {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    margin-bottom: 8px;
    background: #232946;
    border-radius: 9px;
    border: 1px solid #393e5c;
    width: 98vw;
    margin-left: 1vw;
    margin-right: 1vw;
    box-sizing: border-box;
    scrollbar-width: none;
    height: 36px;
  }
  .lang-switch::-webkit-scrollbar {
    display: none;
  }
  .lang {
    min-width: 70px;
    padding: 6px 6px;
    font-size: 0.92em;
    border-radius: 7px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lang.active {
    border-radius: 7px;
  }
  #gallery-modal > #gallery-thumbs, #gallery-modal > #gallery-viewer {
    max-width: 98vw !important;
    max-height: 98vh !important;
    padding: 6vw 2vw 6vw 2vw !important;
    border-radius: 10px !important;
  }
  #gallery-large {
    max-width: 92vw !important;
    max-height: 60vh !important;
    border-radius: 8px !important;
  }
  #gallery-prev, #gallery-next {
    font-size: 2em !important;
    left: 1vw !important;
    right: 1vw !important;
  }
  #gallery-back, #gallery-close {
    font-size: 1.5em !important;
    top: 4px !important;
    right: 8px !important;
  }
  .gallery-thumb {
    max-width: 28vw !important;
    max-height: 18vw !important;
    border-radius: 6px !important;
  }
} 