* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #fff;
    background: #0f0f17;
    overflow-x: hidden;
}

/* Animated Background Canvas */
#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #0f0f17;
}

/* Smooth Fade-ins */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar */
header {
    width: 100%;
    padding: 15px 40px;
    background: rgba(20,20,30,0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.logo:hover {
    opacity: 0.7;
}

nav a {
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* Hero */
.hero {
    padding: 180px 40px 120px;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #ccc;
}

.cta-btn {
    margin-top: 25px;
    padding: 12px 28px;
    background: #5b63ff;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #4a52dd;
}

/* About */
.about {
    padding: 60px 40px;
    text-align: center;
}

.about h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

/* Listings */
.listings-section {
    padding: 80px 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tab {
    padding: 10px 20px;
    border: none;
    background: #252533;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.tab.active,
.tab:hover {
    background: #5b63ff;
}

.vehicle-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.vehicle-grid.active {
    display: grid;
}

.vehicle-card {
    background: rgba(30, 30, 45, 0.8);
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-card img {
    width: 100%;
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    padding: 80px 40px;
    text-align: center;
}

.testimonial-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: rgba(30, 30, 45, 0.8);
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.testimonial-card:nth-child(odd) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(even) {
    animation-delay: 0.4s;
}

.testimonial-card h4 {
    margin-top: 15px;
    font-weight: normal;
    color: #aaa;
}

.testimonial-card span {
    color: #5b63ff;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #161622;
    border-top: 1px solid #2c2c3d;
}

.footer-left p {
    color: #aaa;
}

.footer-right a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-right a:hover {
    opacity: 0.7;
}

.discord-btn {
    background: #5865F2;
    padding: 6px 14px;
    border-radius: 6px;
}
