/* GLOBAL FIX */
html, body {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  min-height: 100vh;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 40px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
}

.btn-outline {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.main-logo {
  width: 120px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

/* LOGO FLOAT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.hero-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-content p {
  max-width: 600px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* SERVER STATUS */
#server-status {
  margin-top: 10px;
  font-weight: 600;
}

/* BUTTONS */
.buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 114, 255, 0.6);
}

.btn-secondary {
  padding: 14px 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* TOAST */
.toast {
  position: fixed;
  top: 25px;
  right: 25px;
  transform: translateX(120%);
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.4);
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.4s ease;
}

.toast.show {
  transform: translateX(0);
}

/* ========================= */
/* ABOUT / HAKKIMIZDA */
/* ========================= */

.about-section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.about-card {
  max-width: 1100px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  gap: 50px;
  backdrop-filter: blur(15px);
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,114,255,0.15);
  padding: 10px 18px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.about-title .icon {
  color: #4fc3ff;
  font-size: 18px;
}

.about-left h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-desc {
  opacity: 0.8;
  margin-bottom: 35px;
}

/* FEATURES */
.feature {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-icon {
  font-size: 26px;
  color: #4fc3ff;
}

.feature h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature p {
  opacity: 0.8;
  line-height: 1.5;
}

/* RIGHT */
.about-right {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-right img {
  width: 260px;
  animation: float 4s ease-in-out infinite;
}

/* MOBILE */
@media (max-width: 900px) {
  .navbar {
    padding: 20px;
  }

  .about-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 25px;
  }

  .feature {
    justify-content: center;
    text-align: left;
  }
}
/* FOOTER */
.footer {
  background: #050505;
  padding: 80px 20px 30px;
  color: #ccc;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 60px;
}

.footer-top h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.footer-top p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-mail a {
  color: #4fc3ff;
  text-decoration: none;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #aaa;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #4fc3ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

