/* ==========================================================================
   GLOBAL STYLES & RESET
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geometria', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@font-face {
  font-family: 'Geometria'; 
  src: url(/Geometria.ttf) format('truetype'); 
  font-display: swap;
}
@font-face {
  font-family: 'Geometria-Bold'; 
  src: url(/Geometria-Bold.ttf) format('truetype'); 
  font-display: swap;
}

html, body {
  overflow-x: hidden;
  position: relative;
  background: #061121;
  background: radial-gradient(circle at 50% 0%, #0d2746 0%, #050d1a 100%);
  color: #e2e8f0;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

.contentSection {
  padding-top: 120px;
}

.wrapper, p, h1, h2, h3, h4, h5, h6, .general-table-wrapper, figcaption, ol, ul, .faq-container, .quote, figure {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   TYPOGRAPHY & TEXT
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Geometria-Bold', sans-serif;
  text-align: center;
  padding-bottom: 32px;
  line-height: 1.3;
  background: linear-gradient(90deg, #ffffff 0%, #a3cfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 20px rgba(128, 181, 255, 0.2);
}

h1 { font-size: 46px; padding-top: 32px; }
h2 { font-size: 32px; padding-top: 32px; }
h3 { font-size: 24px; padding-top: 24px; }
h4 { font-size: 20px; padding-top: 24px; }

p, span, li, a {
  font-size: 18px;
  line-height: 1.7;
  color: #e2e8f0;
}

p { padding-bottom: 24px; }

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #00e676;
}
a:hover {
  color: #69f0ae;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

/* ==========================================================================
   UI ELEMENTS & BUTTONS
   ========================================================================== */
input, button {
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

button { cursor: pointer; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  height: 80px;
  background: rgba(6, 17, 33, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  left: 0; top: 0; width: 100%;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.headerInner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.headerMenu { display: flex; gap: 32px; }
.headerMenu a {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-text-fill-color: initial;
}
.headerMenu a:hover, .headerMenu a.active { color: #00e676; }

.headerButtons { display: flex; gap: 16px; }
.headerButtons button {
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-reg, .regButton {
  background: linear-gradient(135deg, #00e676 0%, #00b259 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}
.btn-reg:hover, .regButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
}

.btn-log, .logButton {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-log:hover, .logButton:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.headerButtonsMobile { display: none; }
.burger { display: none; }

/* ==========================================================================
   MAIN BANNER (Новый дизайн + Пропорциональная картинка)
   ========================================================================== */
.mainbanner {
  background: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.12); 
  backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0, 0.4);
  margin-bottom: 40px;
}

.mainbanner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(163, 207, 255, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.mainbanner-inner {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mainbanner-content {
  flex: 1 1 60%; 
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.mainbanner-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: #fff;
  text-align: left; 
}

.title-green { color: #00e676; font-size: inherit; } 
.title-blue { -webkit-text-fill-color: initial; color: #a3cfff; }

.mainbanner-desc {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 32px;
  text-align: left;
}

.mainbanner-image {
  flex: 1 1 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch; 
  position: relative;
}

.mainbanner-image .banner-img {
  width: 100%;
  max-width: 450px; 
  height: 100%;
  object-fit: contain; 
  object-position: bottom right; 
  display: block;
}

.mainbanner-image .banner-mobile {
  display: none;
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00e676 0%, #00b259 100%);
  padding: 16px 32px;
  border-radius: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
}

.btn-banner:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 230, 118, 0.5);
}

.btn-banner-arrow { display: none; }

.mainbanner-btn-wrap {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.trust-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 11px; 
  color: #a3cfff;
  font-weight: 500;
  opacity: 0.85; 
  flex-wrap: nowrap;
  white-space: nowrap;
}
.trust-info span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  -webkit-text-fill-color: initial; 
}

/* ==========================================================================
   BOTTOM ALT BANNER
   ========================================================================== */
.altbanner {
  background: linear-gradient(135deg, #0d2746 0%, #061121 100%);
  border: 1px solid rgba(163, 207, 255, 0.15); 
  border-left: 6px solid #00e676;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0, 0.5);
  margin-bottom: 40px;
}

.altbanner-inner {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 30px;
}

.altbanner-content {
  flex: 1;
  text-align: left;
}

.altbanner-title { 
  font-family: 'Geometria-Bold', sans-serif;
  background: linear-gradient(90deg, #ffffff 0%, #a3cfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 20px rgba(128, 181, 255, 0.2);
  font-size: 32px; 
  margin-bottom: 12px;
  text-transform: none; 
  line-height: 1.3;
}

.altbanner-desc {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0;
  -webkit-text-fill-color: initial;
}

.altbanner-btn-wrap {
  flex-shrink: 0;
}

.altbanner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ff88 0%, #00c260 100%); 
  padding: 18px 40px;
  border-radius: 14px;
  color: #fff;
  font-size: 20px; 
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.5), 0 0 20px rgba(0, 230, 118, 0.3);
  animation: pulse-btn 2s infinite; 
  white-space: nowrap;
}
.altbanner-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 230, 118, 0.6);
}

@keyframes pulse-btn {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* ==========================================================================
   LISTS AS WIDE STRIPES
   ========================================================================== */
ul.general-ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  padding: 0;
  margin-bottom: 40px;
}
ul.general-ul li {
  list-style: none;
  background: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.15); 
  border-radius: 12px; 
  padding: 20px 24px 20px 60px;
  margin: 0;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  color: #e2e8f0;
}
ul.general-ul li:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(163, 207, 255, 0.4);
}
ul.general-ul li:before {
  content: '✓';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  width: 24px;
  height: 24px;
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid rgba(0, 230, 118, 0.4);
  font-family: Arial, Helvetica, sans-serif;
}

ol.general-ol {
  counter-reset: counter-ol;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
  list-style-type: none;
}
ol.general-ol li {
  position: relative;
  counter-increment: counter-ol;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 24px 20px 70px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: #e2e8f0;
}
ol.general-ol li:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 230, 118, 0.4);
}
ol.general-ol li:before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  background: linear-gradient(135deg, #1a5b99 0%, #2a7acc 100%);
  font-size: 16px;
  font-weight: bold;
}

/* ==========================================================================
   CUSTOM GRIDS (Sport & Bonuses)
   ========================================================================== */
.colorful-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.sports-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bonus-grid {
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}
.c-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(163,207,255,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.c-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  -webkit-text-fill-color: initial;
}
.c-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.3;
}
.c-text strong { font-size: 18px; color: #fff; font-weight: bold; }
.c-text span { font-size: 14px; color: #a3cfff; opacity: 0.8; }

.b-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  border-top: 4px solid #00e676;
  transition: 0.3s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
}
.b-card:nth-child(2) { border-top-color: #a3cfff; }
.b-card:nth-child(3) { border-top-color: #fbbf24; }
.b-card:nth-child(4) { border-top-color: #e879f9; }
.b-card:nth-child(5) { border-top-color: #ff6b6b; }

.b-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.25);
}
.b-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.b-icon { font-size: 28px; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; -webkit-text-fill-color: initial; }
.b-head h4 { font-size: 18px; color: #fff; margin: 0; padding: 0; text-align: left; background: none; -webkit-text-fill-color: #fff; }
.b-card p { font-size: 15px; margin: 0; padding: 0; color: #cbd5e1; line-height: 1.5; }

.b-card.accent {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(0, 178, 89, 0.02) 100%);
  border: 1px solid rgba(0, 230, 118, 0.4);
  border-top: 4px solid #00e676;
  justify-content: center;
  text-align: center;
}
.b-card.accent .b-head { justify-content: center; }
.b-card.accent h4 { color: #00e676; font-size: 20px;}

/* ==========================================================================
   TABLES
   ========================================================================== */
.general-table-wrapper {
  background: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  overflow-x: auto;
}
.general-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.general-table tr th, .general-table tr td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  color: #e2e8f0; font-size: 16px;
}
.general-table tr td:first-child { font-weight: bold; color: #fff; }
.general-table tr th {
  background: rgba(255, 255, 255, 0.12); 
  color: #a3cfff;
  font-weight: bold; text-transform: uppercase; font-size: 14px;
}
.general-table .general-tr { transition: 0.2s; }
.general-table .general-tr:hover td { background: rgba(255, 255, 255, 0.1); }

/* ==========================================================================
   BLOCKQUOTES & FAQ
   ========================================================================== */
.quote {
  position: relative; padding: 24px 30px 24px 70px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 16px; margin: 40px auto;
}
.quote::before { 
  content: '⚠️'; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; 
}
.quote p { margin: 0; padding: 0; color: #fde047; font-size: 18px; }

.faq-container { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.faq-container .faq-item {
  background: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px; padding: 24px; position: relative; transition: all 0.3s ease;
}
.faq-container .faq-item:hover { border-color: rgba(163, 207, 255, 0.4); background: rgba(255, 255, 255, 0.09); }
.faq-container .faq-question { font-size: 20px; color: #fff; padding: 0 40px 0 0; margin: 0; text-align: left; -webkit-text-fill-color: initial; font-family: 'Geometria-Bold', sans-serif;}
.faq-container .icon { position: absolute; right: 24px; top: 28px; width: 20px; height: 20px; pointer-events: none; }
.faq-container .icon::before, .faq-container .icon::after { content: ''; position: absolute; background: #a3cfff; transition: 0.3s; }
.faq-container .icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-container .icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-container .toggle { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 10; }
.faq-container .faq-answer { height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease; padding: 0; color: #cbd5e1; }
.faq-container .toggle:checked ~ .faq-answer { height: auto; opacity: 1; padding-top: 16px; }
.faq-container .toggle:checked ~ .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-container .toggle:checked ~ .faq-question { color: #a3cfff; }

img { display: block; max-width: 100%; }
.general-image { border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); margin: 20px auto 40px auto; }

.footer { background: rgba(6, 17, 33, 0.9); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 40px 20px; margin-top: 60px; text-align: center; }
.footer_links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.footer_links a { color: #cbd5e1; font-size: 14px; }
.footer_links a:hover { color: #fff; }
.copyright { color: #94a3b8; font-size: 14px; }

.scrollTop {
  background: #00e676;
  box-shadow: 0px 4px 15px rgba(0, 230, 118, 0.4);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 60px;
  right: 30px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
  transition: all 0.3s ease;
}
.scrollTop:hover { background: #00b259; transform: translateY(-3px); }
.scrollTop.visible { opacity: 1; }

/* ==========================================================================
   BUTTON BLOCK (APK)
   ========================================================================== */
.buttonBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 40px 0;
}

.buttonBlock button {
  background: linear-gradient(135deg, #00ff88 0%, #00c260 100%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.buttonBlock button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 45px rgba(0, 230, 118, 0.6);
}

/* ==========================================================================
   MOBILE FOOTER BUTTONS
   ========================================================================== */
.footerButtons {
  display: none;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media(max-width: 1024px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .mainbanner-content { padding: 40px 20px; width: 60%; }
  .mainbanner-title { font-size: 32px; }
  
  .altbanner-inner { flex-direction: column; text-align: center; padding: 40px 20px; }
  .altbanner-title { text-align: center; font-size: 28px; }
}

@media(max-width: 890px) {
  .mainbanner-inner {
    flex-direction: column;
  }
  .mainbanner-content {
    flex: 1 1 auto;
    padding: 24px 20px 20px 20px;
    text-align: center;
    width: auto;
    margin: 0;
    align-items: center;
  }
  .mainbanner-title {
    font-size: 22px;
    text-align: center;
  }
  .mainbanner-desc {
    font-size: 13px;
    text-align: center;
    max-width: 100%;
    padding-bottom: 16px;
  }
  .mainbanner-btn-wrap {
    align-self: center;
    max-width: 100%;
  }
  
  .btn-banner { height: 46px; padding: 12px 16px; }
  .btn-banner-text { font-size: 14px; }
  
  .mainbanner-image {
    flex: 0 0 auto;
    max-width: 100%;
    margin: 0 auto;
    height: 200px;
    width: 100%;
  }
  .mainbanner-image img.banner-mobile {
    display: block;
    max-height: 100%;
    margin: 0 auto;
  }
  .mainbanner-image img.banner-desktop {
    display: none;
  }
}

@media(max-width: 768px) {
  .headerMenu, .headerButtons { display: none; }
  
  .headerButtonsMobile { 
    display: block; 
    margin-left: auto; 
    margin-right: 15px; 
  }
  .headerButtonsMobile .btn-apk { 
    background: linear-gradient(135deg, #00e676 0%, #00b259 100%); 
    color: #fff; 
    border-radius: 8px; 
    padding: 8px 16px; 
    font-weight: bold; 
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
    border: none;
    outline: none;
  }
  
  .burger { 
    display: block; 
    width: 28px; 
    height: 20px; 
    position: relative; 
    z-index: 101; 
    background: transparent;
    padding-right: 20px;
    margin-right: 15px;
  }
  
  .burger img[alt="Burger icon"] {
      display: none;
  }
  
  .burger::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 28px; height: 3px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 8px 0 #fff, 0 16px 0 #fff;
  }

  .bonus-grid { grid-template-columns: 1fr; }
  .trust-info { white-space: normal; flex-wrap: wrap; justify-content: center;}
  
  .contentSection { padding-top: 100px; }
  
  .wrapper, p, h1, h2, h3, h4, h5, h6, .general-table-wrapper, figcaption, ol, ul, .faq-container, .quote, figure { 
    padding-left: 20px; 
    padding-right: 20px; 
  }
  .mainbanner.wrapper, .altbanner.wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
  
  h1 { font-size: 28px; } h2 { font-size: 24px; }
  
  .footerButtons {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 17, 33, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  }

  .footerButtonsInner { display: flex; gap: 16px; justify-content: center; }

  .footerButtonsInner button {
    flex: 1; padding: 14px 0; font-size: 16px; font-weight: bold;
    text-transform: uppercase; border-radius: 12px; transition: 0.3s; cursor: pointer;
  }

  .footerButtonsInner .regButton {
    background: linear-gradient(135deg, #00e676 0%, #00b259 100%);
    color: #fff; box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3); border: none;
  }

  .footerButtonsInner .logButton {
    background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footerButtonsInner .logButton:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }
  
  .footer { padding-bottom: 100px; }
  .scrollTop { bottom: 80px; right: 20px; }
}

@media(max-width: 460px) {
  .mainbanner.wrapper, .altbanner.wrapper { margin-left: 10px; margin-right: 10px; width: calc(100% - 20px); }
  .mainbanner-content { padding: 16px 14px 14px 14px; }
  .mainbanner-title { font-size: 20px; }
  .mainbanner-desc { font-size: 14px; }
}