* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.menu-container,
.search-container {
    position: relative;
}

.menu-icon,
.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.5;
}

.menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #D3D3D3;
    border-radius: 4px;
    padding: 8px 0;
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-container:hover .menu {
    opacity: 1;
    visibility: visible;
}

.menu-item {
    padding: 8px 16px;
    cursor: pointer;
}

.menu-item:hover {
    background: #f0f0f0;
}

.search-bar {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 36px;
    background: white;
    border: 1px solid #D3D3D3;
    border-radius: 18px;
    overflow: hidden;
    transition: width 0.3s ease;
}

.search-container:hover .search-bar {
    width: 200px;
}

.search-input {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border: none;
    outline: none;
    font-size: 14px;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 20px;
}

.title {
    font-family: 'Oi', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    color: #D3D3D3;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.car-container {
    position: relative;
    height: 400px;
    margin-bottom: 60px;
}

.car-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: auto;
}

.slider-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.slider {
    width: 100%;
    height: 48px;
    background: #D3D3D3;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4px;
    overflow: hidden;
}

.slider-button {
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    transition: left 0.3s ease;
}

.slider-button:active {
    left: calc(100% - 44px);
}

.slider-text {
    position: absolute;
    right: 150px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: px;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.about-link {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.about-link:hover {
    color: #666;
}

@media (min-width: 768px) {
    .title {
        font-size: 8rem;
    }
}