@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Almarai', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
    background-color: #0a0a0a;
    margin: 0;
    padding: 0;
}

.background-image {
    display: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.85) 0%,
        rgba(227, 24, 55, 0.15) 50%,
        rgba(15, 15, 15, 0.85) 100%
    );
    backdrop-filter: blur(2px) contrast(110%);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
}

.nav-links a:hover {
    color: #ff1744;
}

main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 150px);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

h2 {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.2);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.car-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}
h2{
    text-align: center;
    background: radial-gradient(circle at top right, var(--black) 0%, var(--dark-black) 100%);
    transform-style: preserve-3d;
    font-size: 4em;
    background: linear-gradient(45deg, var(--white) 30%, var(--primary-color) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    transform: translateZ(var(--layer-distance));
    text-shadow: 0 0 30px rgba(227, 24, 55, 0.7);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
}
.car-speed, .car-power {
    background: rgba(227, 24, 55, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-card h3 {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    padding: 1.2rem 1rem;
    font-size: 1.5rem;
    color: white;
}

.price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

.car-features {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    margin: 1rem;
    border-radius: 8px;
}

.car-features ul {
    list-style: none;
}

.car-features li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e0e0e0;
    font-family: 'Almarai', 'SF Pro Display', sans-serif;
    font-weight: 400;
}

.car-features i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
}

.buy-now-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
}

.buy-now-btn:hover {
    background: var(--hover-color);
}

footer {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #f83a3a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

.discord-button:hover {
    background: #ff8484;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    main {
        padding: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
} 