body{
margin:0;
font-family:Arial;
background:#000;
}

/* HEADER */

.tashan-header{
background:#000;
padding:15px 20px;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:40px;
}

/* DESKTOP MENU */

.nav-menu ul{
display:flex;
gap:25px;
list-style:none;
margin:0;
padding:0;
}

.nav-menu ul li a{
color:#fff;
text-decoration:none;
font-size:16px;
}

/* HAMBURGER */

.menu-toggle{
display:none;
font-size:30px;
color:#fff;
cursor:pointer;
}

/* MOBILE */

@media (max-width:768px){

.menu-toggle{
display:block;
}

.nav-menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#F1850A;
max-height:0;
overflow:hidden;
transition:0.4s;
}

.nav-menu.active{
max-height:300px;
}

.nav-menu ul{
flex-direction:column;
text-align:center;
padding:20px;
gap:20px;
}

}

.hero {
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  color: #27ff4a;
  font-size: 40px;
}

.hero p {
  width: 70%;
  margin: auto;
  color: #bbb;
}

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  display: inline-block;
  margin: 10px;
  text-decoration: none;
}

.orange {
  background: #ff8a00;
  color: #fff;
}

.blue {
  background: #1ea8e7;
  color: #fff;
}

.green {
  background: #2ecc71;
  color: #fff;
}

.section {
  padding: 60px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.box {
  border: 1px solid #444;
  padding: 20px;
}

.box h3 {
  color: #ff9a00;
}

.box ul {
  padding-left: 20px;
}

.steps {
      background: #000000;
    color: #000000;
    padding: 60px 0;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq {
  width: 80%;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #444;
  padding: 15px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.download-guide {
     background: #151414;
    color: #ffffff;
    padding: 40px;
    margin-top: 40px;
}

.download-guide h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.download-guide ol {
    font-size: 18px;

  line-height: 1.8;
}
/* ========== DEFAULT (DESKTOP) ========== */
.why-choose {
  background: #000;
  padding: 80px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-left {
  flex: 1;
}

.why-left h2 {
  color: #ff8c00;
  font-size: 36px;
  margin-bottom: 30px;
}

.why-left ul {
  list-style: none;
  padding: 0;
}

.why-left ul li {
  color: white;
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 18px;
}

.why-left ul li:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #ff8c00;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.why-right {
  flex: 1;
  text-align: right;
}

.why-right img {
  width: 100%;
  max-width: 500px;
}


/* ========== TABLET (<= 992px) ========== */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-right {
    text-align: center;
  }

  .why-left h2 {
    font-size: 30px;
  }

  .why-left ul li {
    font-size: 16px;
    padding-left: 30px;
  }
}


/* ========== MOBILE (<= 576px) ========== */
@media (max-width: 576px) {
  .why-choose {
    padding: 50px 15px;
  }

  .why-left h2 {
    font-size: 24px;
  }

  .why-left ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .why-left ul li:before {
    width: 10px;
    height: 10px;
    top: 7px;
  }

  .why-right img {
    max-width: 100%;
  }
}
.faq-section {
  background: #000;
  padding: 60px 0;
}

.faq-title {
  text-align: center;
  color: #ff8c00;
  font-size: 38px;
  margin-bottom: 40px;
}

.faq {
  width: 90%;
  margin: auto;
}

.faq-question {
  width: 100%;
  background: #d3d3d3;
  border: none;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #e67e00;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 15px;
}

.faq-answer {
  display: none;
  color: #fff;
  padding: 15px 20px;
  font-size: 18px;
}

.faq-answer.show {
  display: block;
}

.icon {
  font-size: 18px;
}

.container {
  width: 90%;
  margin: auto;
}

.footer-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
    color: white;

  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 12px;
  font-size: 18px;
}

.quick-links span {
  color: #ff7a00;
  margin-right: 10px;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
}

.quick-links a:hover {
  color: #ff7a00;
}

.disclaimer {
    color: white;

  line-height: 1.4;
  font-size: 16px;
}

.footer-img {
  width: 100%;
  max-width: 350px;
}
.tashan-section {
  background: #000;
  padding: 25px 0;
}

.tashan-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.tashan-left {
  width: 50%;
}

.tashan-left h2 {
  color: #ff8c00;
  font-size: 42px;
  margin-bottom: 20px;
}

.tashan-left p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.tashan-btn {
  display: inline-block;
  background: #e67e00;
  color: #fff;
  padding: 18px 45px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.tashan-btn:hover {
  background: #ff8c00;
}

.tashan-right {
  width: 50%;
}

.tashan-right img {
  width: 100%;
  border-radius: 6px;
}

/* ---------- TABLET ---------- */

@media (max-width: 992px) {
  .tashan-container {
    gap: 40px;
  }

  .tashan-left h2 {
    font-size: 34px;
  }

  .tashan-left p {
    font-size: 16px;
  }
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
  .tashan-container {
    flex-direction: column;
    text-align: center;
  }

  .tashan-left {
    width: 100%;
  }

  .tashan-right {
    width: 100%;
  }

  .tashan-left h2 {
    font-size: 30px;
  }

  .tashan-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
}

/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {
  .tashan-left h2 {
    font-size: 26px;
  }

  .tashan-left p {
    font-size: 15px;
  }
}
/* HERO */
.tashan-hero {
  background: #000;
  padding: 40px 20px;
  text-align: center;
}

.tashan-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* HEADINGS (ALL FIXED RESPONSIVE) */
.tashan-title,
.tashan-title2,
.tashan-title3,
.tashan-title4,
.tashan-title5 {
  color: #32cd32;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: titleGlow 3s infinite alternate;
}

/* DESKTOP SIZES */
.tashan-title { font-size: 54px; }
.tashan-title2 { font-size: 46px; }
.tashan-title3 { font-size: 40px; }
.tashan-title4 { font-size: 30px; }
.tashan-title5 { font-size: 20px; }

/* TEXT */
.tashan-text {
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
  max-width: 1000px;
  margin: 20px auto 40px;
}

/* BUTTONS */
.tashan-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* IMPORTANT */
}

.btn {
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  min-width: 200px;
}

/* BUTTON COLORS */
.login-btn {
  background: #e67e00;
  color: #fff;
}

.telegram-btn {
  background: #2fa4b8;
  color: #fff;
  transition: 0.3s;
}

.telegram-btn:hover {
  background: #1bc3e0;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.code-btn {
  background: #0b7d13;
  color: #fff;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .tashan-title { font-size: 42px; }
  .tashan-title2 { font-size: 36px; }
  .tashan-title3 { font-size: 30px; }
  .tashan-title4 { font-size: 24px; }
  .tashan-title5 { font-size: 18px; }

  .tashan-text {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .tashan-hero {
    padding: 30px 15px;
  }

  .tashan-title { font-size: 28px; }
  .tashan-title2 { font-size: 24px; }
  .tashan-title3 { font-size: 22px; }
  .tashan-title4 { font-size: 18px; }
  .tashan-title5 { font-size: 14px; }

  .tashan-text {
    font-size: 15px;
  }

  .tashan-buttons {
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .tashan-title { font-size: 24px; }
  .tashan-title2 { font-size: 20px; }
  .tashan-title3 { font-size: 18px; }
  .tashan-title4 { font-size: 16px; }
  .tashan-title5 { font-size: 13px; }

  .btn {
    max-width: 100%;
  }
}.tashan-guide {
  background: #000;
  padding: 60px 20px;
}

.guide-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.guide-box {
  border: 1px solid #fff;
  padding: 20px;
}

.guide-box h3 {
  color: #ff8c00;
  font-size: 24px;
  margin-bottom: 15px;
}

.guide-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-box ul li {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.guide-box ul li::before {
  content: "●";
  color: #ff8c00;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* Tablet */

@media (max-width: 992px) {
  .guide-container {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .guide-box h3 {
    font-size: 20px;
  }

  .guide-box ul li {
    font-size: 18px;
  }
}
/* ========================= */
/* GLOBAL FIX */
/* ========================= */

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================= */
/* LAPTOP */
/* ========================= */

@media (max-width: 1200px) {
  .container {
    width: 95%;
  }

  .nav-container {
    width: 95%;
  }

  .tashan-title {
    font-size: 46px;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

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

  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-row {
    flex-direction: column;
    gap: 30px;
  }

  .tashan-container {
    flex-direction: column;
    text-align: center;
  }

  .tashan-left,
  .tashan-right {
    width: 100%;
  }

  .tashan-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .guide-container {
    grid-template-columns: 1fr;
  }

  .why-right {
    text-align: center;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    width: 100%;
    font-size: 15px;
  }

  .tashan-title {
    font-size: 32px;
  }
.tashan-title  h2{
    font-size: 24px;
  }
  .tashan-text {
    font-size: 15px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    font-size: 16px;
    padding: 14px 25px;
  }

  .footer-col {
    text-align: left;
  }

  .footer-row {
    flex-direction: column;
  }

  .faq {
    width: 100%;
  }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width: 480px) {
  .hero {
    padding: 40px 10px;
  }

  .tashan-title {
    font-size: 24px;
  }

  .tashan-text {
    font-size: 14px;
  }

  .btn {
   font-size: 11px;
        width: 100%;
        max-width: 219px;
        text-align: center;
  }

  .faq-title {
    font-size: 26px;
  }

  .footer-img {
    margin: auto;
  }

  .nav-menu ul li a {
    font-size: 18px;
  }
}

.tashan-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

.tashan-box {
	background: #000000;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tashan-box h2 {
	color: white;
	margin-bottom: 10px;
}

.tashan-box h3 {
	color: white;
	margin-top: 15px;
}

.tashan-box hr {
	margin: 15px 0;
	border: none;
	border-top: 1px solid #eee;
}

.tashan-box p {
	font-size: 18px;
	color: white;
}

.tashan-box ul,
.tashan-box ol {
	color: white;
	padding-left: 18px;
}

/* ✅ TABLET */
@media (max-width: 992px) {
	.tashan-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.tashan-box {
		padding: 20px;
	}

	.tashan-box p {
		font-size: 16px;
	}
}

/* ✅ MOBILE */
@media (max-width: 768px) {
	.tashan-grid {
		grid-template-columns: 1fr;
	}

	.tashan-box {
		padding: 18px;
	}

	.tashan-box h2 {
		font-size: 20px;
	}

	.tashan-box h3 {
		font-size: 16px;
	}

	.tashan-box p {
		font-size: 15px;
	}
}

