*{box-sizing:border-box;margin:0;padding:0}
body{
  margin:0;
  background:#0a0a0a;
  color:#fff;
  font-family:'Montserrat',Arial,sans-serif;
  overflow-x:hidden
}

/* ===== HEADER ===== */
.header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(10,10,10,.95);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(60,255,195,.2);
  padding:16px 0
}
.header-inner{
  max-width:1200px;margin:auto;padding:0 20px;
  display:flex;justify-content:space-between;align-items:center
}
.logo{
  font-size:28px;font-weight:800;color:#3cffc3;
  text-shadow:0 0 20px rgba(60,255,195,.5);
  letter-spacing:2px;text-decoration:none
}
.nav{display:flex;gap:24px;align-items:center}
.nav a{
  color:#fff;text-decoration:none;font-weight:500;
  transition:.3s;position:relative;font-size:15px
}
.nav a:hover,.nav a.active{color:#3cffc3;text-shadow:0 0 10px rgba(60,255,195,.5)}
.nav a::after{
  content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;
  background:#3cffc3;transition:.3s
}
.nav a:hover::after,.nav a.active::after{width:100%}
.header-btn{
  background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;padding:10px 24px;border-radius:20px;
  text-decoration:none;font-weight:700;font-size:14px;
  transition:.3s;box-shadow:0 0 20px rgba(60,255,195,.3)
}
.header-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(60,255,195,.5)
}

/* ===== MOBILE NAV ===== */
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius: 14px;
  border: 1px solid rgba(60,255,195,.25);
  background: rgba(30,30,30,.6);
  cursor:pointer;
  transition:.2s;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.nav-toggle:hover{
  border-color: rgba(60,255,195,.55);
  box-shadow: 0 0 18px rgba(60,255,195,.12);
}
.nav-toggle-bars{
  width: 18px;
  height: 14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.nav-toggle-bars span{
  display:block;
  height:2px;
  border-radius: 2px;
  background: #3cffc3;
}
.nav-overlay{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 900;
}
body.nav-open{ overflow:hidden; }
body.nav-open .nav-overlay{ display:block; }

/* ===== HERO ===== */
.hero{
  margin-top:70px;min-height:90vh;position:relative;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(10,10,10,.85) 0%,rgba(26,26,26,.85) 100%),
    url('../img/2026-01-28 20.59.05.jpg') center/cover no-repeat;
  overflow:hidden
}
.hero::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:radial-gradient(circle at 50% 50%,rgba(60,255,195,.15) 0%,transparent 70%);
  pointer-events:none
}
.hero-content{
  max-width:1200px;padding:60px 20px;text-align:center;z-index:1
}
.hero h1{
  font-size:64px;font-weight:800;margin-bottom:20px;
  background:linear-gradient(135deg,#3cffc3,#00ff88);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;text-shadow:0 0 40px rgba(60,255,195,.5);
  letter-spacing:4px
}
.hero-subtitle{
  font-size:24px;color:#aaa;margin-bottom:20px;font-weight:300
}
.hero-description{
  font-size:18px;color:#ccc;margin-bottom:40px;max-width:700px;margin-left:auto;margin-right:auto;line-height:1.6
}
.hero-buttons{
  display:flex;gap:20px;justify-content:center;flex-wrap:wrap
}
.hero-cta{
  display:inline-block;background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;padding:16px 40px;border-radius:30px;
  text-decoration:none;font-weight:700;font-size:18px;
  transition:.3s;box-shadow:0 0 30px rgba(60,255,195,.4)
}
.hero-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 0 40px rgba(60,255,195,.6)
}
.hero-cta-secondary{
  display:inline-block;background:transparent;
  color:#3cffc3;padding:16px 40px;border-radius:30px;
  text-decoration:none;font-weight:700;font-size:18px;
  border:2px solid #3cffc3;transition:.3s;
  box-shadow:0 0 20px rgba(60,255,195,.2)
}
.hero-cta-secondary:hover{
  background:rgba(60,255,195,.1);
  box-shadow:0 0 30px rgba(60,255,195,.4)
}

/* ===== FEATURES SECTION ===== */
.features-section{
  padding:80px 20px;background:#111
}
.container{
  max-width:1200px;margin:auto
}
.features-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px
}
.feature-card{
  background:#1a1a1a;padding:30px;border-radius:20px;
  border:1px solid rgba(60,255,195,.2);
  text-align:center;transition:.3s
}
.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(60,255,195,.2);
  border-color:#3cffc3
}
.feature-card .feature-icon{
  font-size:48px;margin-bottom:20px
}
.feature-card h3{
  font-size:22px;color:#3cffc3;margin-bottom:12px;
  text-shadow:0 0 10px rgba(60,255,195,.3)
}
.feature-card p{
  color:#aaa;line-height:1.6;font-size:15px
}
.schedule-info{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  margin-top:10px
}
.schedule-row{
  display:flex;justify-content:space-around;width:100%;
  gap:12px
}
.schedule-group{
  text-align:center;flex:1
}
.schedule-days{
  font-size:14px;font-weight:700;color:#3cffc3;
  text-shadow:0 0 10px rgba(60,255,195,.5);
  margin-bottom:4px;letter-spacing:0.5px
}
.schedule-time{
  font-size:15px;font-weight:600;color:#fff
}
.schedule-divider{
  width:60px;height:1px;background:rgba(60,255,195,.3);
  margin:2px 0
}

/* ===== SECTION ===== */
.section{
  padding:80px 20px;max-width:1200px;margin:auto
}
.section-title{
  font-size:42px;font-weight:800;margin-bottom:50px;
  text-align:center;color:#3cffc3;
  text-shadow:0 0 20px rgba(60,255,195,.3);
  letter-spacing:2px
}

/* ===== ABOUT SECTION ===== */
.about-section{
  background:#111;border-radius:30px;padding:60px 40px;
  border:1px solid rgba(60,255,195,.2)
}
.about-content{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center
}
.about-text{font-size:18px;line-height:1.8;color:#ccc}
.about-list{
  list-style:none;margin:20px 0;padding:0
}
.about-list li{
  padding:10px 0;padding-left:25px;position:relative;
  color:#ccc;font-size:16px;line-height:1.6
}
.about-list li::before{
  content:'✓';position:absolute;left:0;
  color:#3cffc3;font-weight:700
}
.about-features{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px
}
.feature{
  background:#1a1a1a;padding:20px;border-radius:15px;
  border:1px solid rgba(60,255,195,.2);
  text-align:center
}
.feature-icon{font-size:32px;margin-bottom:10px}
.feature-title{font-size:18px;font-weight:600;color:#3cffc3;margin-bottom:8px}
.feature-text{font-size:14px;color:#aaa;line-height:1.5}

/* ===== GALLERY ===== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:14px;
  margin-top:40px
}
.gallery-item{
  border-radius:18px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(60,255,195,.18);
  background:#0a0a0a;
  cursor:pointer;
  isolation:isolate;
  transition:transform .2s,border-color .2s,box-shadow .2s;
  aspect-ratio:4/3
}
.gallery-item::before{
  content:'';
  position:absolute;
  inset:-14px;
  background-image:var(--bg);
  background-size:cover;
  background-position:center;
  filter:blur(18px) saturate(1.05) brightness(.72);
  transform:scale(1.1);
  z-index:-2
}
.gallery-item::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(0,0,0,.12),rgba(0,0,0,.55));
  z-index:-1
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.gallery-item:hover{
  border-color:rgba(60,255,195,.45);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transform:translateY(-2px)
}

/* Lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:10050;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.92);
  backdrop-filter:blur(8px)
}
.gallery-lightbox.open{display:flex}
.gallery-lightbox img{
  max-width:min(1100px,100%);
  max-height:85vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:18px;
  border:1px solid rgba(60,255,195,.25);
  background:#0a0a0a;
  box-shadow:0 0 60px rgba(0,0,0,.55)
}
.gallery-lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(60,255,195,.25);
  background:rgba(30,30,30,.6);
  color:#3cffc3;
  cursor:pointer;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center
}
body.lightbox-open{overflow:hidden}

@media (max-width:980px){
  .gallery-grid{
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr))
  }
}

@media (max-width:560px){
  .gallery-grid{
    grid-template-columns:1fr
  }
}

/* ===== CONTACTS ===== */
.contacts-section{
  background:#1a1a1a;border-radius:24px;padding:50px 40px;
  border:1px solid rgba(60,255,195,.15);
  box-shadow:0 0 30px rgba(0,0,0,.3)
}
.contacts-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:50px;
  align-items:start
}
.contact-item{
  margin-bottom:32px
}
.contact-label{
  color:#3cffc3;font-weight:700;margin-bottom:12px;
  text-shadow:0 0 10px rgba(60,255,195,.5);
  font-size:16px;display:flex;align-items:center;gap:8px;
  letter-spacing:.5px
}
.contact-value{
  color:#e0e0e0;font-size:17px;line-height:1.8;
  font-weight:400
}
.contact-value a{
  color:#3cffc3;text-decoration:none;margin-right:15px;
  transition:.3s
}
.contact-value a:hover{
  text-shadow:0 0 10px rgba(60,255,195,.5)
}
.social-buttons{
  display:flex;flex-direction:column;gap:12px;margin-top:8px
}
.social-button{
  display:flex;align-items:center;gap:12px;
  padding:14px 18px;border-radius:12px;
  text-decoration:none;transition:all .3s;
  border:1px solid rgba(60,255,195,.2);
  background:rgba(60,255,195,.05)
}
.social-button:hover{
  background:rgba(60,255,195,.1);
  border-color:rgba(60,255,195,.4);
  transform:translateX(4px)
}
.social-button-telegram:hover{
  background:rgba(0,136,204,.15);
  border-color:rgba(0,136,204,.4)
}
.social-button-whatsapp:hover{
  background:rgba(37,211,102,.15);
  border-color:rgba(37,211,102,.4)
}
.social-icon{
  width:24px;height:24px;flex-shrink:0;
  color:#3cffc3;transition:.3s
}
.social-button-telegram .social-icon{color:#0088cc}
.social-button-whatsapp .social-icon{color:#25d366}
.social-button:hover .social-icon{
  transform:scale(1.1)
}
.social-button-text{
  display:flex;flex-direction:column;gap:2px;flex:1
}
.social-button-name{
  font-weight:600;font-size:15px;color:#fff
}
.social-button-value{
  font-size:13px;color:#aaa
}
.social-button-telegram .social-button-name{color:#0088cc}
.social-button-whatsapp .social-button-name{color:#25d366}
.social-button:hover .social-button-value{color:#ccc}
.contact-cta{
  display:inline-block;background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;padding:14px 30px;border-radius:20px;
  text-decoration:none;font-weight:700;font-size:16px;
  transition:.3s;box-shadow:0 0 20px rgba(60,255,195,.3);
  margin-top:10px
}
.contact-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(60,255,195,.5)
}
.qr-code-container{
  display:flex;flex-direction:column;align-items:center;gap:12px
}
.qr-code-image{
  width:200px;height:200px;border-radius:12px;
  border:2px solid rgba(60,255,195,.2);
  background:#fff;padding:12px;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:.3s
}
.qr-code-image:hover{
  border-color:rgba(60,255,195,.45);
  box-shadow:0 6px 30px rgba(60,255,195,.2);
  transform:scale(1.02)
}
.qr-code-hint{
  color:#aaa;font-size:13px;text-align:center;
  line-height:1.5;margin:0;max-width:220px
}
.map-container{
  border-radius:16px;overflow:hidden;height:450px;
  border:1px solid rgba(60,255,195,.15);
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  background:#0a0a0a
}
.map-container iframe{
  width:100%;height:100%;border:none;display:block
}

/* ===== FOOTER ===== */
.footer{
  background:#0a0a0a;border-top:1px solid rgba(60,255,195,.2);
  padding:40px 20px;text-align:center
}
.footer-content{
  max-width:1200px;margin:auto
}
.footer-logo{
  font-size:32px;font-weight:800;color:#3cffc3;
  text-shadow:0 0 20px rgba(60,255,195,.5);
  margin-bottom:20px;letter-spacing:2px
}
.footer-text{color:#888;margin-bottom:20px;line-height:1.6}
.social-links{
  display:flex;justify-content:center;gap:20px;margin-bottom:20px
}
.social-link{
  width:40px;height:40px;border-radius:50%;
  background:#1a1a1a;border:1px solid rgba(60,255,195,.3);
  display:flex;align-items:center;justify-content:center;
  color:#3cffc3;text-decoration:none;transition:.3s;
  font-size:18px
}
.social-link:hover{
  background:#3cffc3;color:#000;
  box-shadow:0 0 20px rgba(60,255,195,.5)
}
.footer-nav{
  display:flex;justify-content:center;gap:20px;flex-wrap:wrap;
  margin-bottom:20px
}
.footer-nav a{
  color:#888;text-decoration:none;font-size:14px;
  transition:.3s
}
.footer-nav a:hover{color:#3cffc3}

/* ===== AGE WARNING SECTION ===== */
.age-warning-section{
  padding:60px 20px;background:#0a0a0a;
  border-top:1px solid rgba(60,255,195,.2);
  border-bottom:1px solid rgba(60,255,195,.2)
}
.age-warning-content{
  max-width:900px;margin:auto;text-align:center;
  background:#1a1a1a;border-radius:20px;padding:40px;
  border:2px solid rgba(255,77,77,.3);
  box-shadow:0 0 30px rgba(255,77,77,.1)
}
.age-warning-icon{
  font-size:64px;margin-bottom:20px
}
.age-warning-title{
  font-size:28px;color:#ff4d4d;margin-bottom:20px;
  text-shadow:0 0 20px rgba(255,77,77,.5);
  font-weight:700
}
.age-warning-text{
  color:#ccc;font-size:16px;line-height:1.8;
  margin-bottom:15px;text-align:left
}
.age-warning-text strong{
  color:#ff4d4d;font-weight:700
}
.smoking-warning{
  background:rgba(255,77,77,.1);border-radius:15px;
  padding:25px;margin:25px 0;border:1px solid rgba(255,77,77,.3);
  text-align:left
}
.smoking-warning-title{
  color:#ff4d4d;font-size:20px;margin-bottom:15px;
  font-weight:700;text-shadow:0 0 15px rgba(255,77,77,.4)
}
.smoking-warning-text{
  color:#ddd;font-size:15px;line-height:1.7;
  margin-bottom:12px
}
.smoking-warning-text strong{
  color:#ff4d4d
}
.age-warning-legal{
  color:#888;font-size:13px;font-style:italic;
  margin-top:20px;text-align:center
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal-overlay{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.98);z-index:10000;
  display:flex;align-items:center;justify-content:center;
  padding:20px;backdrop-filter:blur(10px)
}
.age-modal-overlay.hidden{display:none}
.age-modal-content{
  background:#1a1a1a;border-radius:24px;
  max-width:600px;width:100%;
  border:2px solid rgba(60,255,195,.3);
  box-shadow:0 0 50px rgba(60,255,195,.2);
  overflow:hidden
}
.age-modal-header{
  padding:30px 30px 20px;text-align:center;
  border-bottom:1px solid rgba(60,255,195,.2)
}
.age-modal-title{
  font-size:28px;font-weight:700;color:#fff;
  line-height:1.4;margin:0
}
.age-highlight{
  display:inline-block;background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;padding:4px 12px;border-radius:8px;
  font-weight:800;text-shadow:none;
  box-shadow:0 0 20px rgba(60,255,195,.5)
}
.age-modal-body{
  padding:30px;max-height:60vh;overflow-y:auto
}
.age-modal-body::-webkit-scrollbar{width:6px}
.age-modal-body::-webkit-scrollbar-track{background:#0a0a0a}
.age-modal-body::-webkit-scrollbar-thumb{
  background:linear-gradient(135deg,#3cffc3,#00ff88);
  border-radius:3px
}
.age-modal-text{
  color:#ccc;font-size:15px;line-height:1.7;
  margin-bottom:16px
}
.age-modal-text:last-child{margin-bottom:0}
.age-modal-text strong{color:#fff;font-weight:600}
.age-modal-buttons{
  display:flex;gap:16px;padding:20px 30px;
  border-top:1px solid rgba(60,255,195,.2)
}
.age-btn{
  flex:1;padding:16px 24px;border-radius:12px;
  font-size:16px;font-weight:700;cursor:pointer;
  transition:.3s;border:none
}
.age-btn-no{
  background:transparent;color:#999;
  border:1px solid #333
}
.age-btn-no:hover{
  background:#222;border-color:#444;color:#fff
}
.age-btn-yes{
  background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;box-shadow:0 0 20px rgba(60,255,195,.3)
}
.age-btn-yes:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(60,255,195,.5)
}
.age-modal-footer{
  padding:20px 30px;border-top:1px solid rgba(60,255,195,.1);
  text-align:center;background:#0f0f0f
}
.age-footer-text{
  color:#888;font-size:13px;line-height:1.6;margin:0
}
.age-footer-link{
  color:#3cffc3;text-decoration:none;
  transition:.3s;text-shadow:0 0 10px rgba(60,255,195,.3)
}
.age-footer-link:hover{
  color:#00ff88;text-shadow:0 0 15px rgba(60,255,195,.5)
}

/* ===== LOGIN MODAL ===== */
.login-modal-overlay{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.95);z-index:10001;
  display:none;align-items:center;justify-content:center;
  padding:20px;backdrop-filter:blur(10px)
}
.login-modal-overlay.active{display:flex}
.login-modal-content{
  background:#1a1a1a;border-radius:24px;
  max-width:450px;width:100%;
  border:2px solid rgba(60,255,195,.3);
  box-shadow:0 0 50px rgba(60,255,195,.2);
  overflow:hidden
}
.login-modal-header{
  padding:25px 30px;border-bottom:1px solid rgba(60,255,195,.2);
  display:flex;align-items:center;justify-content:space-between
}
.login-modal-title{
  font-size:24px;font-weight:700;color:#3cffc3;
  text-shadow:0 0 10px rgba(60,255,195,.5);margin:0
}
.login-modal-close{
  width:32px;height:32px;border:none;background:none;cursor:pointer;
  font-size:28px;color:#999;display:flex;
  align-items:center;justify-content:center;
  border-radius:50%;transition:.3s
}
.login-modal-close:hover{background:#2a2a2a;color:#3cffc3}
.login-modal-body{padding:40px 30px}
.login-intro{
  text-align:center;margin-bottom:30px
}
.login-icon-large{
  font-size:64px;margin-bottom:15px;filter:drop-shadow(0 0 20px rgba(60,255,195,.3))
}
.login-subtitle{
  font-size:22px;font-weight:700;color:#3cffc3;
  text-shadow:0 0 15px rgba(60,255,195,.5);
  margin:0 0 10px 0
}
.login-step{display:flex;flex-direction:column;gap:20px}
.login-text{
  color:#aaa;font-size:15px;line-height:1.6;text-align:center;
  margin:0
}
.login-input-group{position:relative}
.login-input{
  width:100%;padding:14px 18px;border:1px solid #2a2a2a;
  border-radius:12px;font-size:16px;outline:none;
  transition:.3s;background:#0a0a0a;color:#fff;
  box-sizing:border-box
}
.login-input:focus{
  border-color:#3cffc3;
  box-shadow:0 0 15px rgba(60,255,195,.2)
}
.login-hint{
  color:#888;font-size:13px;text-align:center;margin-top:10px;line-height:1.5
}
.login-type-selector{
  margin-bottom:15px
}
.login-select{
  width:100%;padding:12px 18px;border:1px solid #2a2a2a;
  border-radius:12px;font-size:16px;outline:none;
  transition:.3s;background:#0a0a0a;color:#fff;
  cursor:pointer
}
.login-select:focus{
  border-color:#3cffc3;
  box-shadow:0 0 15px rgba(60,255,195,.2)
}
.login-btn{
  width:100%;padding:14px;border:none;border-radius:12px;
  background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;font-size:16px;font-weight:700;cursor:pointer;
  transition:.3s;box-shadow:0 0 20px rgba(60,255,195,.3)
}
.login-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(60,255,195,.5)
}
.login-btn:active{transform:scale(.98)}
.login-btn-secondary{
  width:100%;padding:12px;border:1px solid #2a2a2a;
  border-radius:12px;background:transparent;
  color:#999;font-size:14px;font-weight:600;cursor:pointer;
  transition:.3s;margin-top:8px
}
.login-btn-secondary:hover{
  background:#222;border-color:#3cffc3;color:#3cffc3
}
.login-error{
  background:rgba(255,77,77,.1);border:1px solid rgba(255,77,77,.3);
  border-radius:12px;padding:12px;color:#ff4d4d;
  font-size:14px;text-align:center;margin-top:10px
}
.telegram-bot-link{
  display:flex;justify-content:center;margin:30px 0
}
.telegram-bot-button{
  display:flex;align-items:center;justify-content:center;gap:12px;
  background:linear-gradient(135deg,#0088cc,#229ed9);
  color:#fff;padding:18px 36px;border-radius:16px;
  text-decoration:none;font-weight:700;font-size:18px;
  transition:all .3s;box-shadow:0 4px 20px rgba(0,136,204,.4);
  border:none;min-width:280px
}
.telegram-bot-button:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 30px rgba(0,136,204,.6);
  background:linear-gradient(135deg,#229ed9,#0088cc)
}
.telegram-bot-button:active{transform:translateY(-1px)}
.telegram-icon-svg{
  width:24px;height:24px;flex-shrink:0
}
.login-steps-info{
  display:flex;flex-direction:column;gap:20px;
  margin-top:30px;padding:0
}
.login-step-item{
  display:flex;align-items:flex-start;gap:16px;
  padding:16px;background:rgba(60,255,195,.03);
  border-radius:12px;border:1px solid rgba(60,255,195,.1);
  transition:.3s
}
.login-step-item:hover{
  background:rgba(60,255,195,.06);
  border-color:rgba(60,255,195,.2)
}
.step-number{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,#3cffc3,#00ff88);
  color:#000;display:flex;align-items:center;
  justify-content:center;font-weight:800;font-size:16px;
  flex-shrink:0;box-shadow:0 0 15px rgba(60,255,195,.4)
}
.step-content{
  flex:1;display:flex;flex-direction:column;gap:4px
}
.step-title{
  color:#3cffc3;font-weight:700;font-size:15px;
  text-shadow:0 0 10px rgba(60,255,195,.3)
}
.step-text{
  color:#999;font-size:13px;line-height:1.5
}
.header-btn.logged-in{
  background:rgba(60,255,195,.2);
  color:#3cffc3
}
.header-btn.logged-in:hover{
  background:rgba(60,255,195,.3)
}

/* Login by phone (main page) */
.login-section{
  padding-top:2rem;padding-bottom:3rem
}
.login-by-phone{
  max-width:420px;margin:0 auto;
  padding:28px;background:rgba(60,255,195,.04);
  border:1px solid rgba(60,255,195,.15);
  border-radius:16px
}
.login-by-phone-desc{
  color:#aaa;font-size:14px;line-height:1.5;
  margin-bottom:20px
}
.login-by-phone-form{
  display:flex;flex-wrap:wrap;gap:12px;
  align-items:center;margin-bottom:12px
}
.login-by-phone-input{
  flex:1;min-width:180px;padding:14px 18px;
  border:1px solid rgba(60,255,195,.25);
  border-radius:12px;background:rgba(10,10,10,.6);
  color:#fff;font-size:16px;
  transition:.3s
}
.login-by-phone-input::placeholder{color:#666}
.login-by-phone-input:focus{
  outline:none;border-color:#3cffc3;
  box-shadow:0 0 15px rgba(60,255,195,.15)
}
.login-by-phone-btn{
  flex-shrink:0
}
.login-by-phone-hint{
  font-size:14px;min-height:1.4em
}
.login-by-phone-hint.success{color:#3cffc3}
.login-by-phone-hint.error{color:#ff6b6b}

/* Responsive */
@media (max-width:768px){
  .hero h1{font-size:36px}
  .hero-subtitle{font-size:18px}
  .hero-description{font-size:16px}
  .section-title{font-size:28px}
  .header-inner{ padding: 0 16px; gap: 10px; }
  .logo{ font-size: 22px; }
  .nav-toggle{ display:inline-flex; }
  .header-btn{ padding: 10px 14px; font-size: 13px; border-radius: 16px; }

  /* dropdown menu */
  .nav{
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 1100;
    display:flex;
    flex-direction:column;
    gap: 10px;
    padding: 14px 16px 18px;
    background: rgba(10,10,10,.98);
    border-bottom: 1px solid rgba(60,255,195,.14);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .18s;
    max-height: calc(100vh - 70px);
    overflow:auto;
  }
  body.nav-open .nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a{
    font-size:16px;
    padding: 10px 6px;
  }
  .about-content,.contacts-grid{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr}
  .hero-buttons{flex-direction:column;align-items:stretch}
  .hero-cta,.hero-cta-secondary{width:100%;text-align:center}
}
