html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #0e1621; /* Telegram dark background */
    color: #e4e6eb;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px at 1% 15%, #0a3151c8, transparent 60%);
  pointer-events: none;
  opacity:0.6;
}


body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px at 90vw 60%, #008cff33, transparent 90%);
  opacity:0.7;
  pointer-events: none;
  z-index: 99999;
}

nav{
    /* border:solid 1px red; */
    padding: 10px 30px;

}

#home-icon{
    font-size: 24px;
    font-weight: bold;
    color: #2ea6ff;
}
#home-icon a{
    text-decoration: none;
    color: inherit;
}
#home-icon a:hover{
    color: #1b7dc1;
}



h1, h2, h3 {
    color: #2ea6ff;
}

p, li {
    color: #cfd2d6;
    line-height: 1.6;
}



.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #17212b;
    color: #e4e6eb;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #2b3a4a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Show state */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Success */
.toast.success {
    border-left: 4px solid #4caf50;
}

/* Error */
.toast.error {
    border-left: 4px solid #f44336;
}









.footer {
    position: relative;
    margin-top: 80px;
    text-align: center;
    color: #e4e6eb;
    font-size: 16px;
    z-index: 1;
}

/* Wave container */
.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* SVG wave */
.footer-wave svg {
    display: block;
    width: 100%;
    height: 140px;
}

/* Content */
.footer-content {
    padding: 20px 10px 30px;
    background: transparent;
    backdrop-filter: blur(6px);
}








/* ..............................  Mobile devices .......................*/
@media (max-width: 767px) {
    body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(500px at 10% 5%, #0a3151c8, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
    }


    body::before {
    opacity:0;
    }


}
