* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: #fff;
    letter-spacing: 15px;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1); 
    }
}
@media (max-width: 768px) {
    .social-media {
        right: 1rem;
        top: auto;
        bottom: 8rem;
        transform: none;
        flex-direction: row;
        gap: 0.8rem;
        background: rgba(0, 0, 0, 0.8);
        padding: 0.8rem;
        border-radius: 50px;
        border: 1px solid rgba(0, 173, 239, 0.3);
    }
}
/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: #8f00ef;
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section with Car Slider */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.car-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.car-slide.active {
    opacity: 1;
}

.car-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.5s ease;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    letter-spacing: 20px;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-20px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-10px); 
    }
}

/* About Section */
.about {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(92, 0, 239, 0.9);
}

.about-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    color: #6800ef;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.about-quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #8300ef;
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #8300ef;
}

/* Social Media */
.social-media {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Visitor Counter */
.visitor-counter {
    position: fixed;
    top: 100px;
    right: 3rem;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 173, 239, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.2);
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    transform: translateY(-5px);
    box-shadow: rgba(92, 0, 239, 0.9);
    border-color: rgba(92, 0, 239, 0.9);
}

.visitor-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00adef, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.visitor-info {
    display: flex;
    flex-direction: column;
}

.visitor-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.visitor-count {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7000ef;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #8f00ef;
    border-color: #5c00ef;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 173, 239, 0.4);
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .loading-name {
        font-size: 4rem;
        letter-spacing: 8px;
    }

    .hero-title {
        font-size: 4rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: block;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 5%;
    }

    .about-content h2 {
        font-size: 3rem;
    }

    .social-media {
        right: 1rem;
        gap: 1rem;
    }

    .visitor-counter {
        top: 90px;
        right: 1rem;
        padding: 1rem;
        flex-direction: row;
        gap: 0.8rem;
    }

    .visitor-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .visitor-count {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}/* Music Button Tooltip */
.music-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(112, 0, 239, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.music-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 173, 239, 0.95);
}