:root {
    --bg-color: #0f111a;
    --card-bg: #1a1c2a;
    --accent: #5865F2; /* Discord Blurple */
    --text-main: #ffffff;
    --text-dim: #b9bbbe;
    --card-bg: #1e1f22;
    --border: rgba(255, 255, 255, 0.08);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

.emoji {
    width: 30px;
    height: 30px;
   margin-bottom: -9px;
}

/* ------------------ NAVBAR ------------------ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(15, 17, 26, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* Version status */
.version-status{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:0.9rem;
    color: var(--text-dim);
}

/* ------------------ HERO ------------------ */
.hero {
    padding: 100px 8% 60px 8%;
    background: radial-gradient(circle at top right, rgba(88, 101, 242, 0.15), transparent);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero-text p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #4752c4;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #2c2f33;
    color: white;
}

.hero-image img {
    width: 300px;
    animation: float 4s ease-in-out infinite;
}

/* ------------------ FEATURES GRID ------------------ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px 8%;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

/* ------------------ ANIMATIONS ------------------ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ------------------ MOBILE RESPONSIVENESS ------------------ */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 5%;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-links a {
        display: block;  /* show all links */
        font-size: 0.9rem;
        text-align: center;
    }

    /* Hero */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .hero-btns {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .hero-image img {
        width: 180px;
        margin-top: 20px;
    }

    /* Features */
    .features {
        padding: 40px 5%;
        grid-template-columns: 1fr;
    }

    .feature-card {
        width: 100%;
    }
}



/* FOOTER */
footer {
  padding: 60px 40px;
  text-align: center;
  background: #030303;
  border-top: 1px solid #111;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  margin: 0 15px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: .3s;
}

.footer-links a:hover {
  color: var(--accent);
}


/* Hide select by default */
.nav-select {
    display: none;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    background: var(--card-bg);
    color: var(--text-main);
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
}

/* Mobile: hide desktop links, show select */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .nav-select {
        display: block !important;
        z-index: 1001;  /* Make sure it appears above other elements */
    }
}



.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin: 0;
}

.legal-header p {
    color: #a0a0a5;
}

/* Grid layout */
.contributors-grid {
    display: flex;
    gap: 20px;
}


.contributors {
    padding: 60px 8%;
    background: #111214; /* Darker background makes cards pop */
}

.contributors-grid {
    display: grid; /* Switched to Grid for better responsiveness */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contributor-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    padding: 24px;
    border-radius: 25px;
    border: 3px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Subtle Glow Effect on Hover */
.contributor-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* Avatar Styling */
.avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: 0.3s;
}

.contributor-card:hover .avatar img {
    border-color: var(--accent);
    transform: scale(1.05);
}

/* Typography */
.info h2 {
    color: #ffffff;
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.owner-text {
    color: var(--accent);
    font-size: 0.85rem;
}


/* Small Bonus: A UI Badge */
.badge {
    font-size: 0.65rem;
    background: rgba(88, 101, 242, 0.2);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
}




 .home-overlay {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
  }

  .home-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    background: #2c2f33;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    opacity: 0.5;
  }

  .home-link:hover {
    opacity: 0.8;
    background: var(--accent);
    transform: translateY(-2px);
  }


-------------------------------------------------------------------------------------------
.preview-section {
    padding: 60px 5%;
    background-color: #000; /* Pure black background like the image */
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.3); /* Dim/Inactive */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* This is what makes the "movement" visible */
.dot.active {
    background-color: #ffffff; /* Bright White */
}

/* Wrapper helps position arrows outside the main image box */
.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px; 
    height: 550px; 
    overflow: hidden;
    border-radius: 8px; /* Slightly softer corners */
}

.slider {
    display: flex;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.slide.active {
    display: flex;
}

.slide img {
    max-width: 95%;
    max-height: 85%;
    object-fit: contain;
}

/* --- Arrows --- */
.slider-btn {
    background: transparent;
    border: none;
    color: #ffffff44;
    font-size: 2.5rem;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.slider-btn:hover {
    color: white;
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
    .slider-container {
        height: 350px;
    }
    .slider-btn {
        font-size: 1.5rem;
        padding: 10px;
    }
}

/* ------------------ TRANSPARENT ARROW BUTTONS ------------------ */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent; /* No background */
    color: var(--text-dim);   /* Subtle color by default */
    border: none;             /* No border */
    padding: 20px;
    cursor: pointer;
    font-size: 2.5rem;        /* Larger arrows since there's no box */
    z-index: 10;
    transition: all 0.3s ease;
    outline: none;            /* Removes the focus ring */
    user-select: none;        /* Prevents highlighting the arrow text */
}

.slider-btn:hover {
    color: var(--accent);     /* Glows Discord Blurple on hover */
}

.next { right: 10px; }
.prev { left: 10px; }

/* Mobile adjustment for arrows */
@media (max-width: 768px) {
    .slider-btn {
        font-size: 1.8rem;
        padding: 10px;
    }
}

