body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: white;
    overflow-x: hidden;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    background: rgba(18, 19, 26, 0);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease, top 0.3s ease;
}

@media (max-width: 700px) {
    header {
        padding: 50px 40px;
    }
}

header.scrolled {
    background: rgba(18, 19, 26, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.logo {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
}

.logo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}
nav .nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}
.premium {
    color: #f5c32c;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium::after {
    content: " ✨";
    color: yellow;
}

.premium:hover {
    background: rgba(90, 85, 42, 0.416);
}

.support,
.resources span {
    color: #e0e0e0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 5px 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.support:hover,
.resources span:hover {
    color: #4A90E2;
    transform: scale(1.05);
}

.support:hover,
.resources:hover span {
    background: rgba(45, 53, 83, 0.416);
}
.resources {
    position: relative;
    cursor: pointer;
}

.resources .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 19, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    list-style: none;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.resources:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.resources .dropdown li {
    margin: 10px 0;
    border-radius: 10px;
}

.resources .dropdown a {
    text-decoration: none;
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.profile {
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.profile img:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.login-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #5568e5, #896be9);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 8px 15px rgba(85, 104, 229, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-45deg);
    transition: 0.5s;
}

.login-button:hover::before {
    left: 150%;
}

.login-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(85, 104, 229, 0.6);
}
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    height: 90vh;
    background: radial-gradient(circle at center, rgba(15, 16, 36, 0.7), rgba(20, 20, 40, 0.9), #050509);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37), inset 0 0 15px rgba(85, 104, 229, 0.15);
    border-radius: 20px;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.bot-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5568e5, #86a8e7);
    box-shadow: 0 8px 20px rgba(85, 104, 229, 0.3), 0 0 25px rgba(85, 104, 229, 0.6);
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.bot-icon:hover {
    transform: rotate(12deg) scale(1.08);
    box-shadow: 0 12px 30px rgba(85, 104, 229, 0.5), 0 0 35px rgba(85, 104, 229, 0.7);
}
.description {
    font-size: 1.3rem;
    color: #c9c9d1;
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.description:hover {
    color: #e5e5f0;
}
.scroll-btn {
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid rgba(85, 104, 229, 0.6);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.scroll-btn:hover {
    background: rgba(85, 104, 229, 0.8);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(85, 104, 229, 0.4);
    transform: translateY(-2px);
}

.scroll-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease, left 0.3s ease;
}

.scroll-btn:hover::after {
    width: 100%;
    left: 0;
}

.scroll-btn span {
    position: relative;
    z-index: 1;
}
.intro {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-on-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    background-color: rgba(25, 27, 43, 0.544);
}



.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card .feature-img {
    flex: 1;
}

.feature-card .feature-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-card .feature-content {
    flex: 1;
    padding: 20px;
    color: white;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.feature-card.reverse {
    flex-direction: row-reverse;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: rgba(25, 27, 43, 0.544);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-box {
    background: rgba(15, 15, 26, 0.542);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #3a3d98;
}

.stat-box h4 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.stat-box p {
    color: #bbb;
}

.invite-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
    height: 40vh;
    background: radial-gradient(circle at top, rgba(85, 104, 229, 0.2), transparent);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37), inset 0 0 15px rgba(85, 104, 229, 0.15);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.invite-text {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px 25px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.invite-button {
    position: relative;
    padding: 16px 34px;
    background: linear-gradient(135deg, #3a3d98, #6d5ed5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(58, 61, 152, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(5px);
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.invite-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s;
    border-radius: 50%;
    filter: blur(15px);
    z-index: 0;
}

.invite-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.invite-button:hover::before {
    top: 100%;
    left: 100%;
}

.invite-button:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #6a7be0, #9d89f0);
    box-shadow: 0 10px 25px rgba(85, 104, 229, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.invite-button span {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.invite-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(85, 104, 229, 0.6);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background: rgba(18, 18, 18, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav .active {
    color: #ffffff;
    font-weight: bold;
}

.footer-info {
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 14px;
}

.footer-icons {
    display: flex;
    gap: 15px;
}

.footer-icons a {
    color: #b0b0b0;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-icons a:hover {
    color: #ffffff;
}

.feature-img img {
  border-radius: 15px; 
  box-shadow: 
    0px 4px 20px rgba(0, 0, 0, 0.5), 
    0px 0px 25px rgba(0, 255, 170, 0.25); 
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.feature-img img:hover {
  box-shadow: 
    0px 6px 30px rgba(0, 0, 0, 0.6), 
    0px 0px 30px rgba(0, 255, 170, 0.3); 
  transform: scale(1.02);
}
.stats-invite {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #12141a, #232428);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stats-card {
  background: rgba(25, 27, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 40px;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.stats-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-item h4 {
  font-size: 3rem;
  font-weight: bold;
  color: #00ffaa;
  margin: 0;
  text-shadow: 0px 0px 10px rgba(0, 255, 170, 0.6);
}

.stat-item p {
  font-size: 1rem;
  color: #b0b3c6;
  margin-top: 5px;
}

/* Invite Card */
.invite-card {
  flex: 1;
  min-width: 300px;
  background: rgba(18, 19, 26, 0.8);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.invite-card .invite-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e5e5e5;
  line-height: 1.4;
}

.invite-button {
  padding: 14px 30px;
  background: linear-gradient(135deg, #5568e5, #896be9);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(85, 104, 229, 0.4);
}

.invite-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(85, 104, 229, 0.6);
}
