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

body {
  margin: 0;
  background: #0d0d0d;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  width: 100%;
  height: 90px;
  padding: 0 6%;
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid rgba(177, 60, 244, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-wrap img {
  height: 70px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #cfcfcf;
  font-size: 15px;
}

nav a:hover {
  color: #b13cf4;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login {
  color: #cfcfcf;
}

.join,
.primary-btn {
  background: #b13cf4;
  color: white;
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(177, 60, 244, 0.35);
}

.hero {
  min-height: 680px;
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at bottom left, rgba(93, 27, 130, 0.35), transparent 35%),
    #000;
}

.badge {
  display: inline-block;
  color: #b13cf4;
  border: 1px solid rgba(177, 60, 244, 0.5);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  margin-bottom: 25px;
}

.hero p {
  max-width: 600px;
  color: #b8b8b8;
  font-size: 19px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 13px 22px;
  border-radius: 30px;
  color: #f5f5f5;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.hero-image::before{
    content:"";
    position:absolute;
    width:800px;
    height:800px;
    border-radius:50%;
    filter:blur(35px);
    z-index:0;
}

.hero-image img{
    width:100%;
    transform:scale(1.25);
    transform-origin:center;
}

.upload-card {
  background: #171717;
  border: 1px solid rgba(177, 60, 244, 0.35);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(177, 60, 244, 0.18);
}

.upload-card h3 {
  font-size: 28px;
  margin-bottom: 22px;
}

.upload-box {
  height: 180px;
  border: 2px dashed rgba(177, 60, 244, 0.65);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(177, 60, 244, 0.06);
}

.upload-box span {
  font-size: 48px;
  color: #b13cf4;
}

.upload-box p {
  color: #b8b8b8;
}

input,
textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 14px;
  outline: none;
}

textarea {
  height: 90px;
  resize: none;
}

input:focus,
textarea:focus {
  border-color: #b13cf4;
}

.upload-card button {
  width: 100%;
  border: none;
  background: #b13cf4;
  color: white;
  padding: 15px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.feed-section,
.categories {
  padding: 70px 6%;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-title h2,
.categories h2 {
  font-size: 34px;
}

.section-title a {
  color: #b13cf4;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.post-card{
    display:block;
    overflow:hidden;
    color:inherit;
    text-decoration:none;
}

.post-img{
    position:relative;
    width:100%;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#ededf2;
}

.post-img img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .3s ease;
}

.post-card:hover .post-img img{
    transform:scale(1.04);
}

.post-img-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#7540f3;
    font-size:42px;
}

.latest-builds-empty{
    grid-column:1/-1;
    padding:45px 20px;
    border:1px dashed #d8d8e0;
    border-radius:14px;
    color:#777;
    text-align:center;
}

.latest-builds-empty i{
    margin-bottom:10px;
    color:#7540f3;
    font-size:38px;
}

.latest-builds-empty p{
    margin:0;
}

.post-info {
  padding: 20px;
}

.post-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.post-info p {
  color: #9ca3af;
}

.category-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.category-row a {
  background: #171717;
  border: 1px solid rgba(177,60,244,0.35);
  color: #f5f5f5;
  padding: 14px 22px;
  border-radius: 30px;
}

.category-row a:hover {
  background: #b13cf4;
}

@media (max-width: 900px) {
  .topbar {
    height: auto;
    padding: 18px 5%;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 5%;
  }

  .feed-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    text-align: center;
  }
}.dashboard{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:30px;
    padding:30px;
}

.sidebar{
    position:fixed;
    top:0;
    left:0;
    width:260px;
    height:100vh;
    background:#151515;
    border-right:1px solid rgba(255,255,255,.08);
    z-index:1000;
    padding:20px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
}


.sidebar .logo{
    text-align:center;
    margin-bottom:45px;
}

.sidebar .logo img{
    width:150px;
}

.sidebar nav{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.sidebar nav a{
    display:block;
    padding:16px 22px;
    border-radius:14px;
    color:#d6d6d6;
    text-decoration:none;
    font-size:16px;
    transition:.25s;
}

.sidebar nav a:hover,
.sidebar nav a.active{
    background:#b13cf4;
    color:#fff;
}.sidebar nav a{
    display:flex;
    align-items:center;
    gap:10px;
}

.sidebar nav a i{
    width:20px;
    text-align:center;
}

/* Smaller-height desktop/laptop screens */
@media (max-height: 850px) and (min-width: 769px){

    .sidebar{
        padding:15px 18px;
    }

    .sidebar .logo{
        margin-bottom:25px;
    }

    .sidebar .logo img{
        width:130px;
    }

    .sidebar nav{
        gap:8px;
    }

    .sidebar nav a{
        padding:11px 16px;
        border-radius:11px;
        font-size:14px;
    }

    .sidebar nav a i{
        width:18px;
        font-size:14px;
    }
}


/* Really short laptop/browser window */
@media (max-height: 700px) and (min-width: 769px){

    .sidebar{
        padding:12px 16px;
    }

    .sidebar .logo{
        margin-bottom:15px;
    }

    .sidebar .logo img{
        width:115px;
    }

    .sidebar nav{
        gap:5px;
    }

    .sidebar nav a{
        padding:9px 14px;
        border-radius:9px;
        font-size:13px;
    }

    .sidebar nav a i{
        font-size:13px;
    }
}

.upload-btn{
    width:100%;
    margin-top:45px;
    padding:16px;
    border:0;
    border-radius:50px;
    background:#b13cf4;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.page-content{
    margin-left:260px;
    min-height:100vh;
}

.upload-btn{
    width:100%;
    margin-top:40px;
    background:#b13cf4;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
}

.feed{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.welcome{
    background:#171717;
    border-radius:20px;
    padding:30px;
}

.welcome h2{
    font-size:30px;
}

.welcome p{
    color:#999;
    margin-top:8px;
}

.post-box{
    background:#171717;
    border-radius:20px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.post-box img{
    width:55px;
    height:55px;
    border-radius:50%;
}

.post-box input{
    flex:1;
    background:#0d0d0d;
    border:1px solid #2b2b2b;
    border-radius:50px;
    padding:16px 22px;
    color:#fff;
}

.post{
    background:#171717;
    border-radius:20px;
    overflow:hidden;
}

.post-header{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
}

.post-header img{
    width:55px;
    height:55px;
    border-radius:50%;
}

.post-image{
    width:100%;
    display:block;
}

.post-actions{
    display:flex;
    gap:35px;
    padding:20px;
    color:#ddd;
}

.right-panel{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.widget{
    background:#171717;
    border-radius:20px;
    padding:25px;
}

.widget h3{
    margin-bottom:20px;
}

.widget ul{
    list-style:none;
}

.widget li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.garage{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.garage img{
    width:45px;
    height:45px;
    border-radius:50%;
}.logout-btn{
    display:block;
    width:100%;
    padding:15px 20px;
    margin-top:auto;
    text-align:center;
    color:#ff4d4d;
    text-decoration:none;
    background:#2b2b2b;
    border-radius:5px;
	font-weight: bold;
}

.logout-btn i{
    width:20px;
    text-align:center;
    font-size:17px;
}

.logout-btn:hover{
    background:#202020;
    color:#fff;
}.post{background:#171717;border:1px solid rgba(255,255,255,.08);border-radius:14px;margin-bottom:22px;overflow:hidden}
.post-header{display:flex;align-items:center;gap:12px;padding:16px}
.post-avatar{width:46px;height:46px;border-radius:50%;object-fit:cover}
.post-header-info{flex:1}
.post-header h4{margin:0;color:#fff;font-size:15px}
.post-header small{color:#999}
.post-header a{text-decoration:none;color:inherit}
.post-caption{padding:0 16px 16px;color:#eee;line-height:1.5}
.post-media-grid{display:grid;gap:2px;background:#0d0d0d}
.post-media-grid.media-count-1{grid-template-columns:1fr}
.post-media-grid.media-count-2{grid-template-columns:repeat(2,1fr)}
.post-media-grid.media-count-3,.post-media-grid.media-count-4{grid-template-columns:repeat(2,1fr)}
.post-image-button{display:block;width:100%;padding:0;border:0;background:none;cursor:pointer}
.post-image,.post-video{display:block;width:100%;max-height:650px;object-fit:cover;background:#000}
.post-actions{display:flex;align-items:center;gap:22px;padding:14px 16px;border-top:1px solid rgba(255,255,255,.06)}
.post-action{display:flex;align-items:center;gap:7px;padding:0;border:0;background:none;color:#ccc;cursor:pointer}
.post-action:hover{color:#fff}
.like-btn.liked{color:#b13cf4}
.post-menu-btn{border:0;background:none;color:#aaa;cursor:pointer}
.comment-form{display:flex;gap:10px;padding:0 16px 16px}
.comment-form input{flex:1;background:#101010;border:1px solid #333;border-radius:9px;padding:11px;color:#fff}
.comment-form button{border:0;border-radius:9px;padding:0 16px;background:#b13cf4;color:#fff;cursor:pointer}
.settings-page{
    margin-left:260px;
    min-height:100vh;
    padding:40px;
    background:#0d0d0d;
    color:#fff;
}

.settings-header{
    max-width:900px;
    margin:0 auto 28px;
}

.settings-header h1{
    margin:0 0 8px;
    font-size:30px;
}

.settings-header p{
    margin:0;
    color:#969696;
}

.settings-card{
    max-width:900px;
    margin:0 auto 24px;
    padding:28px;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
}

.settings-card-heading{
    margin-bottom:24px;
}

.settings-card-heading h2{
    margin:0 0 7px;
    font-size:20px;
}

.settings-card-heading p{
    margin:0;
    color:#909090;
    font-size:14px;
}

.settings-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group.full-width{
    grid-column:1/-1;
}

.form-group label{
    color:#ddd;
    font-size:14px;
    font-weight:600;
}

.form-group input{
    width:100%;
    padding:13px 14px;
    border:1px solid #343434;
    border-radius:8px;
    background:#101010;
    color:#fff;
    outline:none;
    box-sizing:border-box;
}

.form-group input:focus{
    border-color:#b13cf4;
}

.username-input{
    display:flex;
    align-items:center;
    border:1px solid #343434;
    border-radius:8px;
    background:#101010;
    overflow:hidden;
}

.username-input:focus-within{
    border-color:#b13cf4;
}

.username-input span{
    padding-left:14px;
    color:#888;
}

.username-input input{
    border:0;
}

.settings-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:24px;
}

.save-settings-btn{
    padding:12px 20px;
    border:0;
    border-radius:8px;
    background:#b13cf4;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.save-settings-btn:hover{
    filter:brightness(1.08);
}

.settings-message{
    max-width:900px;
    margin:0 auto 20px;
    padding:14px 18px;
    border-radius:9px;
}

.settings-message p{
    margin:3px 0;
}

.error-message{
    color:#ff7474;
    background:rgba(255,77,77,.1);
    border:1px solid rgba(255,77,77,.35);
}

.success-message{
    color:#8ee9a6;
    background:rgba(50,190,90,.1);
    border:1px solid rgba(50,190,90,.35);
}

@media(max-width:850px){
    .settings-page{
        margin-left:0;
        padding:24px 16px;
    }

    .settings-grid{
        grid-template-columns:1fr;
    }

    .form-group.full-width{
        grid-column:auto;
    }
}.garage-page{
    padding:40px;
}

.garage-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-bottom:25px;
}

.garage-label{
    display:block;
    margin-bottom:8px;
    color:#b13cf4;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
}

.garage-header h1{
    margin:0 0 8px;
    font-size:34px;
}

.garage-header p{
    margin:0;
    color:#999;
}

.garage-add-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 22px;
    border-radius:30px;
    background:#b13cf4;
    color:#fff;
    font-weight:700;
    white-space:nowrap;
    box-shadow:0 0 20px rgba(177,60,244,.25);
}

.garage-add-btn:hover{
    filter:brightness(1.1);
}

.garage-message{
    margin-bottom:20px;
    padding:14px 18px;
    border-radius:10px;
}

.garage-success{
    color:#8ee9a6;
    background:rgba(50,190,90,.1);
    border:1px solid rgba(50,190,90,.35);
}

.garage-error{
    color:#ff7474;
    background:rgba(255,77,77,.1);
    border:1px solid rgba(255,77,77,.35);
}

.garage-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-bottom:28px;
}

.garage-stat{
    display:flex;
    align-items:center;
    gap:16px;
    padding:22px;
    border-radius:16px;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
}

.garage-stat>i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(177,60,244,.12);
    color:#b13cf4;
    font-size:20px;
}

.garage-stat strong{
    display:block;
    margin-bottom:3px;
    font-size:25px;
}

.garage-stat span{
    color:#999;
    font-size:14px;
}

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.vehicle-card{
    overflow:hidden;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    transition:.25s;
}

.vehicle-card:hover{
    transform:translateY(-4px);
    border-color:rgba(177,60,244,.45);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.vehicle-card-image{
    position:relative;
    display:block;
    height:230px;
    overflow:hidden;
    background:#0d0d0d;
}

.vehicle-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s;
}

.vehicle-card:hover .vehicle-card-image img{
    transform:scale(1.04);
}

.vehicle-type{
    position:absolute;
    top:14px;
    left:14px;
    padding:7px 11px;
    border-radius:20px;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.vehicle-card-info{
    padding:20px;
}

.vehicle-nickname{
    display:block;
    margin-bottom:5px;
    color:#b13cf4;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.vehicle-card-info h2{
    margin:0;
    font-size:21px;
}

.vehicle-card-info h2 a:hover{
    color:#b13cf4;
}

.vehicle-trim{
    margin:6px 0 0;
    color:#999;
    font-size:14px;
}

.vehicle-specs{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    min-height:34px;
    margin:17px 0;
}

.vehicle-specs span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 10px;
    border-radius:8px;
    background:#101010;
    border:1px solid rgba(255,255,255,.08);
    color:#bbb;
    font-size:12px;
}

.vehicle-specs i{
    color:#b13cf4;
}

.vehicle-actions{
    display:flex;
    align-items:center;
    gap:9px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.07);
}

.vehicle-actions a,
.vehicle-actions button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:38px;
    padding:0 13px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.1);
    background:#222;
    color:#ddd;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}

.vehicle-actions a:hover{
    color:#fff;
    border-color:#b13cf4;
}

.vehicle-actions form{
    margin-left:auto;
}

.vehicle-delete-btn{
    width:40px;
    padding:0!important;
    color:#ff7474!important;
}

.vehicle-delete-btn:hover{
    background:rgba(255,77,77,.12)!important;
    border-color:#ff4d4d!important;
}

.empty-garage{
    min-height:430px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:40px;
    text-align:center;
    border:1px dashed rgba(177,60,244,.4);
    border-radius:18px;
    background:#171717;
}

.empty-garage-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:85px;
    height:85px;
    margin-bottom:20px;
    border-radius:50%;
    background:rgba(177,60,244,.12);
    color:#b13cf4;
    font-size:34px;
}

.empty-garage h2{
    margin:0 0 9px;
    font-size:25px;
}

.empty-garage p{
    margin:0 0 24px;
    color:#999;
}

@media(max-width:1100px){
    .vehicle-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:850px){
    .garage-page{
        margin-left:0;
        padding:24px 16px;
    }

    .garage-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .garage-stats{
        grid-template-columns:1fr;
    }

    .vehicle-grid{
        grid-template-columns:1fr;
    }
}
.garage-add-btn{
    border:0;
    cursor:pointer;
}

body.modal-open{
    overflow:hidden;
}

.vehicle-modal{
    position:fixed;
    inset:0;
    z-index:3000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.vehicle-modal.active{
    display:flex;
}

.vehicle-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(4px);
}

.vehicle-modal-content{
    position:relative;
    width:100%;
    max-width:720px;
    max-height:90vh;
    overflow-y:auto;
    padding:28px;
    background:#171717;
    border:1px solid rgba(177,60,244,.35);
    border-radius:18px;
}

.vehicle-modal-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.vehicle-modal-header h2{
    margin:0 0 6px;
}

.vehicle-modal-header p{
    margin:0;
    color:#999;
}

.close-vehicle-modal{
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#292929;
    color:#fff;
    cursor:pointer;
}

.vehicle-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.vehicle-form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.vehicle-form-group.full-width{
    grid-column:1/-1;
}

.vehicle-form-group label{
    color:#ddd;
    font-size:14px;
    font-weight:600;
}

.vehicle-form-group input,
.vehicle-form-group select{
    width:100%;
    margin:0;
    padding:13px 14px;
    border:1px solid #343434;
    border-radius:8px;
    background:#101010;
    color:#fff;
    outline:none;
}

.vehicle-form-group input:focus,
.vehicle-form-group select:focus{
    border-color:#b13cf4;
}

.vehicle-modal-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:24px;
}

.cancel-vehicle-modal,
.save-vehicle-btn{
    padding:12px 19px;
    border:0;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
}

.cancel-vehicle-modal{
    background:#292929;
    color:#ddd;
}

.save-vehicle-btn{
    background:#b13cf4;
    color:#fff;
}

.save-vehicle-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
}

.vehicle-form-error,
.vehicle-form-success{
    margin-bottom:18px;
    padding:13px 15px;
    border-radius:8px;
}

.vehicle-form-error{
    color:#ff7474;
    background:rgba(255,77,77,.1);
    border:1px solid rgba(255,77,77,.35);
}

.vehicle-form-success{
    color:#8ee9a6;
    background:rgba(50,190,90,.1);
    border:1px solid rgba(50,190,90,.35);
}

@media(max-width:650px){
    .vehicle-modal-content{
        padding:20px;
    }

    .vehicle-form-grid{
        grid-template-columns:1fr;
    }

    .vehicle-form-group.full-width{
        grid-column:auto;
    }
}.explore-page{
    padding:30px;
}

.explore-header{
    margin-bottom:20px;
}

.explore-header h1{
    margin:0;
    font-size:28px;
}

.explore-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:4px;
}

.explore-item{
    position:relative;
    display:block;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#111;
}

.explore-item img,
.explore-item video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .2s ease;
}

.explore-item:hover img,
.explore-item:hover video{
    transform:scale(1.03);
}

.explore-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:background .2s ease;
}

.explore-item:hover::after{
    background:rgba(0,0,0,.12);
}

.explore-video-icon{
    position:absolute;
    top:10px;
    right:10px;
    z-index:2;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    background:rgba(0,0,0,.65);
    font-size:12px;
}

.explore-empty{
    min-height:350px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.explore-empty i{
    font-size:45px;
    margin-bottom:15px;
}

.explore-empty h2{
    margin:0 0 8px;
}

.explore-empty p{
    margin:0;
    color:#777;
}

@media(max-width:700px){
    .explore-page{
        padding:15px;
    }

    .explore-grid{
        gap:2px;
    }

    .explore-video-icon{
        top:6px;
        right:6px;
        width:25px;
        height:25px;
        font-size:10px;
    }
}.post-view-page{
    padding:30px;
}

.post-view-topbar{
    width:min(1180px,100%);
    margin:0 auto 18px;
}

.post-view-back{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:inherit;
    text-decoration:none;
    font-weight:600;
}

.post-view-card{
    width:min(1180px,100%);
    min-height:650px;
    margin:auto;
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(330px,.75fr);
    overflow:hidden;
    border:1px solid #dedede;
    border-radius:14px;
    background:#fff;
}

.post-view-media{
    position:relative;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#050505;
}

.post-view-slides{
    width:100%;
    height:100%;
}

.post-view-slide{
    width:100%;
    height:100%;
    display:none;
    align-items:center;
    justify-content:center;
}

.post-view-slide.active{
    display:flex;
}

.post-view-slide img,
.post-view-slide video{
    width:100%;
    height:100%;
    max-height:820px;
    display:block;
    object-fit:contain;
    background:#050505;
}

.post-view-arrow{
    position:absolute;
    top:50%;
    z-index:3;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:50%;
    color:#111;
    background:rgba(255,255,255,.9);
    cursor:pointer;
    transform:translateY(-50%);
}

.post-view-prev{
    left:16px;
}

.post-view-next{
    right:16px;
}

.post-view-dots{
    position:absolute;
    left:50%;
    bottom:15px;
    z-index:3;
    display:flex;
    align-items:center;
    gap:6px;
    transform:translateX(-50%);
}

.post-view-dot{
    width:7px;
    height:7px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.post-view-dot.active{
    background:#fff;
}

.post-view-details{
    min-width:0;
    display:flex;
    flex-direction:column;
    background:#fff;
}

.post-view-owner{
    min-height:76px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    border-bottom:1px solid #ebebeb;
}

.post-view-owner-link{
    min-width:0;
    display:flex;
    align-items:center;
    gap:11px;
    color:inherit;
    text-decoration:none;
}

.post-view-avatar{
    width:44px;
    height:44px;
    flex-shrink:0;
    border-radius:50%;
    object-fit:cover;
    background:#eee;
}

.post-view-owner-link span{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.post-view-owner-link strong,
.post-view-owner-link small{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.post-view-owner-link small{
    margin-top:2px;
    color:#777;
}

.post-view-menu-btn,
.post-action-btn{
    border:0;
    color:inherit;
    background:transparent;
    cursor:pointer;
}

.post-view-menu-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    font-size:18px;
}

.post-view-vehicle{
    padding:13px 18px;
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    color:inherit;
    text-decoration:none;
    border-bottom:1px solid #ebebeb;
    background:#fafafa;
}

.post-view-vehicle>i:first-child{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ececec;
}

.post-view-vehicle span{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.post-view-vehicle small{
    margin-bottom:2px;
    color:#777;
}

.post-view-vehicle strong{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.post-view-body{
    min-height:200px;
    padding:20px 18px;
    flex:1;
    overflow-y:auto;
}

.post-view-caption a{
    color:inherit;
    text-decoration:none;
    font-weight:700;

}

.post-view-caption p{
    margin:7px 0 0;
    line-height:1.5;
    overflow-wrap:anywhere;
}

.post-view-footer{
    padding:15px 18px 18px;
    border-top:1px solid #ebebeb;
}

.post-view-actions{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:13px;
}

.post-action-btn{
    padding:0;
    font-size:24px;
}

.post-action-btn:hover{
    opacity:.65;
}

.post-like-btn.liked{
    color:#ed1c24;
}

.post-view-stats{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:9px;
    font-size:14px;
}

.post-view-footer time{
    color:#888;
    font-size:12px;
    text-transform:uppercase;
}

@media(max-width:950px){
    .post-view-page{
        padding:20px;
    }

    .post-view-card{
        grid-template-columns:1fr;
    }

    .post-view-media{
        aspect-ratio:1/1;
    }

    .post-view-body{
        min-height:auto;
        overflow:visible;
    }
}

@media(max-width:700px){
    .post-view-page{
        padding:0 0 80px;
    }

    .post-view-topbar{
        padding:15px;
        margin:0;
    }

    .post-view-card{
        min-height:0;
        border-left:0;
        border-right:0;
        border-radius:0;
    }

    .post-view-media{
        aspect-ratio:1/1;
    }

    .post-view-arrow{
        width:34px;
        height:34px;
    }

    .post-view-prev{
        left:10px;
    }

    .post-view-next{
        right:10px;
    }
}
.settings-photos{
    overflow:hidden;
}

.settings-cover-wrap{
    position:relative;
    width:100%;
    height:260px;
    overflow:hidden;
    border-radius:16px;
    background:#e8e8e8;
}

.settings-cover-preview{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.settings-cover-wrap .settings-photo-button{
    position:absolute;
    right:18px;
    bottom:18px;
}

.settings-profile-wrap{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:24px;
}

.settings-profile-preview{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    box-shadow:0 4px 18px rgba(0,0,0,.14);
}

.settings-profile-info{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.settings-profile-info strong{
    font-size:18px;
}

.settings-profile-info p{
    margin:0;
    color:#777;
    font-size:14px;
}

.settings-photo-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:11px 16px;
    border:0;
    border-radius:9px;
    background:#111;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}

.settings-photo-button:hover{
    opacity:.88;
}

.settings-photo-message{
    display:none;
    margin-top:18px;
    padding:12px 14px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
}

.settings-photo-message.success{
    display:block;
    background:#e7f8ed;
    color:#17783b;
}

.settings-photo-message.error{
    display:block;
    background:#fdeaea;
    color:#b42318;
}

@media(max-width:700px){
    .settings-cover-wrap{
        height:190px;
    }

    .settings-profile-wrap{
        align-items:flex-start;
    }

    .settings-profile-preview{
        width:90px;
        height:90px;
    }

    .settings-cover-wrap .settings-photo-button{
        right:12px;
        bottom:12px;
    }
}.post-action.liked{
    color:#e31b23;
}

.post-action.liked i{
    color:#e31b23;
}

.post-comments-section{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:12px;
}

.post-comments-preview{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.post-comment{
    display:flex;
    align-items:flex-start;
    gap:9px;
}

.post-comment-avatar{
    flex:0 0 36px;
    width:36px;
    height:36px;
    border-radius:50%;
    overflow:hidden;
}

.post-comment-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.post-comment-content{
    flex:1;
    min-width:0;
}

.post-comment-bubble{
    display:inline-block;
    max-width:100%;
    padding:9px 12px;
    border-radius:16px;
    background:#f0f2f5;
    color:#111;
}

.post-comment-name{
    display:block;
    color:#111;
    font-size:13px;
    line-height:1.2;
    font-weight:700;
    text-decoration:none;
}

.post-comment-text{
    margin-top:3px;
    font-size:14px;
    line-height:1.4;
    overflow-wrap:anywhere;
}

.post-comment-meta{
    display:flex;
    align-items:center;
    gap:12px;
    padding:3px 10px 0;
    font-size:12px;
    color:#777;
}

.comment-reply-btn,
.view-replies-btn,
.load-more-comments{
    appearance:none;
    border:0;
    padding:0;
    background:transparent;
    color:inherit;
    font:inherit;
    font-weight:600;
    cursor:pointer;
}

.view-replies-btn{
    display:block;
    margin:7px 0 0 10px;
}

.comment-replies{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
    padding-left:14px;
    border-left:2px solid rgba(0,0,0,.08);
}

.comment-form,
.comment-reply-form{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:12px;
}

.comment-reply-form{
    margin:8px 0;
}

.comment-form input,
.comment-reply-form input{
    flex:1;
    min-width:0;
    border:1px solid rgba(0,0,0,.12);
    border-radius:20px;
    padding:10px 14px;
    outline:none;
}

.comment-form button,
.comment-reply-form button{
    border:0;
    background:transparent;
    font-weight:700;
    cursor:pointer;
}

.load-more-comments{
    margin:10px 0;
}

.notification-badge{
    min-width:20px;
    height:20px;
    padding:0 5px;
    border-radius:10px;
    background:#e31b23;
    color:#fff;
    font-size:11px;
    line-height:20px;
    text-align:center;
    font-weight:700;
}.notifications-page{
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:32px 24px 60px;
}

.notifications-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.notifications-label{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    color:#777;
}

.notifications-header h1{
    margin:0;
    font-size:34px;
    line-height:1.15;
}

.notifications-header p{
    margin:8px 0 0;
    color:#777;
}

.mark-all-read-btn{
    display:flex;
    align-items:center;
    gap:8px;
    border:0;
    border-radius:10px;
    padding:11px 15px;
    background:#111;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.mark-all-read-btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.notifications-card{
    overflow:hidden;
    border:1px solid rgba(0,0,0,.1);
    border-radius:16px;
    background:#fff;
}

.notifications-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:18px 20px;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.notifications-card-header h2{
    margin:0;
    font-size:18px;
}

.notifications-unread-count{
    font-size:13px;
    font-weight:700;
    color:#777;
}

.notifications-list{
    display:flex;
    flex-direction:column;
}

.notification-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:13px;
    min-height:84px;
    padding:14px 48px 14px 18px;
    border-bottom:1px solid rgba(0,0,0,.07);
    color:#111;
    text-decoration:none;
    transition:background .2s ease;
}

.notification-item:hover{
    background:#f7f7f7;
}

.notification-item.unread{
    background:#eef5ff;
}

.notification-item.unread:hover{
    background:#e4efff;
}

.notification-avatar-wrap{
    position:relative;
    flex:0 0 52px;
    width:52px;
    height:52px;
}

.notification-avatar{
    display:block;
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
}

.notification-type-icon{
    position:absolute;
    right:-2px;
    bottom:-2px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:23px;
    height:23px;
    border:2px solid #fff;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:10px;
}

.notification-type-like,
.notification-type-comment_like{
    background:#e31b23;
}

.notification-type-comment,
.notification-type-reply{
    background:#1877f2;
}

.notification-type-share{
    background:#28a745;
}

.notification-type-follow{
    background:#8a2be2;
}

.notification-type-mention{
    background:#ff8c00;
}

.notification-content{
    flex:1;
    min-width:0;
}

.notification-message{
    color:#333;
    font-size:14px;
    line-height:1.45;
}

.notification-message strong{
    color:#111;
}

.notification-time{
    margin-top:4px;
    color:#777;
    font-size:12px;
    font-weight:600;
}

.notification-item.unread .notification-time{
    color:#1877f2;
}

.notification-unread-dot{
    position:absolute;
    top:50%;
    right:20px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#1877f2;
    transform:translateY(-50%);
}

.load-more-notifications{
    display:block;
    width:calc(100% - 36px);
    margin:18px;
    border:1px solid rgba(0,0,0,.12);
    border-radius:10px;
    padding:12px;
    background:#f5f5f5;
    color:#111;
    font-weight:700;
    cursor:pointer;
}

.load-more-notifications:hover{
    background:#ececec;
}

.load-more-notifications:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.notifications-empty{
    padding:70px 24px;
    text-align:center;
}

.notifications-empty-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#f1f1f1;
    color:#777;
    font-size:28px;
}

.notifications-empty h3{
    margin:0;
    font-size:20px;
}

.notifications-empty p{
    max-width:420px;
    margin:8px auto 0;
    color:#777;
    line-height:1.5;
}

.notification-badge{
    min-width:20px;
    height:20px;
    padding:0 5px;
    border-radius:10px;
    background:#e31b23;
    color:#fff;
    font-size:11px;
    line-height:20px;
    text-align:center;
    font-weight:700;
}

@media(max-width:700px){
    .notifications-page{
        padding:20px 12px 40px;
    }

    .notifications-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .notifications-header h1{
        font-size:28px;
    }

    .mark-all-read-btn{
        width:100%;
        justify-content:center;
    }

    .notification-item{
        padding:13px 40px 13px 13px;
    }

    .notification-avatar-wrap,
    .notification-avatar{
        width:46px;
        height:46px;
    }

    .notification-avatar-wrap{
        flex-basis:46px;
    }

    .notification-unread-dot{
        right:15px;
    }
}.profile-page{
    width:auto;
    max-width:none;
    margin-left:260px;
    padding:28px 32px 60px;
    box-sizing:border-box;
}

.profile-hero{
    overflow:hidden;
    border:1px solid rgba(0,0,0,.1);
    border-radius:18px;
    background:#fff;
}

.profile-cover{
    position:relative;
    width:100%;
    height:310px;
    overflow:hidden;
    background:#ddd;
}

.profile-cover img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.profile-header-content{
    position:relative;
    display:flex;
    align-items:flex-end;
    gap:22px;
    padding:0 28px 20px;
}

.profile-avatar-wrap{
    position:relative;
    z-index:2;
    flex:0 0 158px;
    width:158px;
    height:158px;
    margin-top:-72px;
    border:6px solid #fff;
    border-radius:50%;
    background:#fff;
    overflow:hidden;
}

.profile-avatar{
    display:block;
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}

.profile-primary-info{
    flex:1;
    min-width:0;
    padding-top:18px;
}

.profile-name-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
}

.profile-name-row h1{
    margin:0;
    color:#111;
    font-size:30px;
    line-height:1.15;
}

.profile-username{
    margin-top:4px;
    color:#777;
    font-size:14px;
}

.profile-actions{
    display:flex;
    align-items:center;
    gap:9px;
}

.profile-edit-btn,
.profile-follow-btn,
.profile-message-btn,
.profile-more-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:42px;
    border:0;
    border-radius:10px;
    padding:0 15px;
    font-size:14px;
    font-weight:750;
    text-decoration:none;
    cursor:pointer;
}

.profile-edit-btn,
.profile-follow-btn{
    background:#111;
    color:#fff;
}

.profile-message-btn{
    border:1px solid rgba(0,0,0,.13);
    background:#f1f1f1;
    color:#111;
}

.profile-more-btn{
    width:42px;
    padding:0;
    border:1px solid rgba(0,0,0,.13);
    background:#f1f1f1;
    color:#111;
}

.profile-bio{
    max-width:680px;
    margin:13px 0 0;
    color:#333;
    font-size:15px;
    line-height:1.55;
}

.profile-details{
    display:flex;
    flex-wrap:wrap;
    gap:8px 18px;
    margin-top:13px;
    color:#777;
    font-size:13px;
}

.profile-details span,
.profile-details a{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:inherit;
    text-decoration:none;
}

.profile-details a:hover{
    color:#111;
    text-decoration:underline;
}

.profile-stats{
    display:flex;
    align-items:center;
    gap:0;
    padding:0 28px 18px;
}

.profile-stat{
    display:flex;
    align-items:center;
    gap:6px;
    border:0;
    border-right:1px solid rgba(0,0,0,.1);
    padding:0 20px;
    background:transparent;
    color:#111;
    cursor:pointer;
}

.profile-stat:first-child{
    padding-left:0;
}

.profile-stat:last-child{
    border-right:0;
}

.profile-stat strong{
    font-size:16px;
}

.profile-stat span{
    color:#777;
    font-size:13px;
}

.profile-tabs{
    display:flex;
    align-items:center;
    gap:4px;
    overflow-x:auto;
    padding:0 20px;
    border-top:1px solid rgba(0,0,0,.08);
}

.profile-tab{
    position:relative;
    flex:0 0 auto;
    border:0;
    padding:17px 18px;
    background:transparent;
    color:#777;
    font-size:14px;
    font-weight:750;
    cursor:pointer;
}

.profile-tab::after{
    content:"";
    position:absolute;
    right:14px;
    bottom:0;
    left:14px;
    height:3px;
    border-radius:3px 3px 0 0;
    background:transparent;
}

.profile-tab.active{
    color:#111;
}

.profile-tab.active::after{
    background:#111;
}

.profile-content{
    margin-top:22px;
}

.profile-tab-panel{
    width:100%;
}

.profile-posts-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:100%;
    max-width:none;
    margin:0;
}

.profile-section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}

.profile-section-heading span{
    display:block;
    margin-bottom:5px;
    color:#777;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.3px;
}

.profile-section-heading h2{
    margin:0;
    color:#111;
    font-size:25px;
}

.profile-add-vehicle-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:0;
    border-radius:10px;
    padding:11px 15px;
    background:#111;
    color:#fff;
    font-weight:750;
    cursor:pointer;
}

.profile-vehicle-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.profile-vehicle-card{
    overflow:hidden;
    border:1px solid rgba(0,0,0,.1);
    border-radius:16px;
    background:#fff;
}

.profile-vehicle-image{
    display:block;
    width:100%;
    height:245px;
    overflow:hidden;
    background:#eee;
}

.profile-vehicle-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .3s ease;
}

.profile-vehicle-card:hover .profile-vehicle-image img{
    transform:scale(1.035);
}

.profile-vehicle-body{
    padding:18px;
}

.profile-vehicle-nickname{
    display:block;
    margin-bottom:5px;
    color:#777;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.profile-vehicle-body h3{
    margin:0;
    font-size:20px;
}

.profile-vehicle-body h3 a{
    color:#111;
    text-decoration:none;
}

.profile-vehicle-specs{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:13px;
}

.profile-vehicle-specs span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    border-radius:20px;
    padding:7px 10px;
    background:#f2f2f2;
    color:#555;
    font-size:12px;
}

.profile-view-build-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:18px;
    border-top:1px solid rgba(0,0,0,.08);
    padding-top:14px;
    color:#111;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.profile-media-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:5px;
}

.profile-media-item{
    position:relative;
    display:block;
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:5px;
    background:#ddd;
}

.profile-media-item img,
.profile-media-item video{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .25s ease;
}

.profile-media-item:hover img,
.profile-media-item:hover video{
    transform:scale(1.035);
}

.profile-video-play{
    position:absolute;
    top:50%;
    left:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(0,0,0,.68);
    color:#fff;
    font-size:17px;
    transform:translate(-50%,-50%);
}

.profile-about-card{
    overflow:hidden;
    max-width:760px;
    border:1px solid rgba(0,0,0,.1);
    border-radius:16px;
    background:#fff;
}

.profile-about-row{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:17px 19px;
    border-bottom:1px solid rgba(0,0,0,.07);
}

.profile-about-row:last-child{
    border-bottom:0;
}

.profile-about-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 40px;
    width:40px;
    height:40px;
    border-radius:10px;
    background:#f1f1f1;
    color:#555;
}

.profile-about-row > div:last-child{
    display:flex;
    flex-direction:column;
    gap:3px;
    min-width:0;
}

.profile-about-row span{
    color:#777;
    font-size:12px;
    font-weight:650;
}

.profile-about-row strong,
.profile-about-row a{
    color:#111;
    font-size:14px;
    line-height:1.45;
}

.profile-empty-state{
    padding:75px 24px;
    border:1px solid rgba(0,0,0,.1);
    border-radius:16px;
    background:#fff;
    text-align:center;
}

.profile-empty-state > i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    margin:0 auto 17px;
    border-radius:50%;
    background:#f1f1f1;
    color:#777;
    font-size:27px;
}

.profile-empty-state h2{
    margin:0;
    color:#111;
    font-size:21px;
}

.profile-empty-state p{
    margin:8px 0 0;
    color:#777;
    line-height:1.5;
}

.public-error-page{
    max-width:700px;
    margin:80px auto;
    padding:30px;
    text-align:center;
}

@media(max-width:800px){
    .profile-page{
        padding:16px 12px 45px;
    }

    .profile-cover{
        height:230px;
    }

    .profile-header-content{
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
        padding:0 18px 18px;
    }

    .profile-avatar-wrap{
        width:126px;
        height:126px;
        flex-basis:126px;
        margin-top:-62px;
    }

    .profile-primary-info{
        width:100%;
        padding-top:0;
    }

    .profile-name-row{
        align-items:flex-start;
        flex-direction:column;
    }

    .profile-actions{
        width:100%;
        flex-wrap:wrap;
    }

    .profile-follow-btn,
    .profile-edit-btn{
        flex:1;
    }

    .profile-stats{
        overflow-x:auto;
        padding:0 18px 17px;
    }

    .profile-stat{
        flex:0 0 auto;
    }

    .profile-vehicle-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:520px){
    .profile-cover{
        height:185px;
    }

    .profile-avatar-wrap{
        width:108px;
        height:108px;
        flex-basis:108px;
        margin-top:-54px;
        border-width:4px;
    }

    .profile-name-row h1{
        font-size:25px;
    }

    .profile-details{
        flex-direction:column;
        gap:8px;
    }

    .profile-stat{
        align-items:flex-start;
        flex-direction:column;
        gap:2px;
        padding:0 16px;
    }

    .profile-media-grid{
        gap:3px;
    }

    .profile-section-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .profile-add-vehicle-btn{
        width:100%;
        justify-content:center;
    }
}.legal-page{
    width:100%;
    padding:40px;
}

.legal-hero{
    max-width:1200px;
    margin:0 auto 35px;
    padding:45px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    background:rgba(255,255,255,.03);
}

.legal-label{
    display:block;
    margin-bottom:12px;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    color:#9b5cff;
}

.legal-hero h1{
    margin:0 0 12px;
    font-size:42px;
    line-height:1.1;
}

.legal-hero p{
    margin:0;
    opacity:.7;
}

.legal-layout{
    display:grid;
    grid-template-columns:260px minmax(0,1fr);
    gap:35px;
    max-width:1200px;
    margin:0 auto;
}

.legal-sidebar{
    position:relative;
}

.legal-nav{
    position:sticky;
    top:25px;
    display:flex;
    flex-direction:column;
    gap:5px;
    padding:18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.03);
}

.legal-nav a{
    display:block;
    padding:10px 12px;
    border-radius:10px;
    color:inherit;
    font-size:14px;
    line-height:1.35;
    text-decoration:none;
    opacity:.75;
}

.legal-nav a:hover{
    background:rgba(155,92,255,.12);
    color:#b982ff;
    opacity:1;
}

.legal-content{
    min-width:0;
}

.legal-section{
    scroll-margin-top:30px;
    margin-bottom:24px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:rgba(255,255,255,.025);
}

.legal-section h2{
    margin:0 0 18px;
    font-size:25px;
}

.legal-section h3{
    margin:28px 0 12px;
    font-size:18px;
}

.legal-section p{
    margin:0 0 16px;
    line-height:1.8;
    opacity:.85;
}

.legal-section p:last-child{
    margin-bottom:0;
}

.legal-section ul{
    margin:0 0 18px;
    padding-left:24px;
}

.legal-section li{
    margin-bottom:10px;
    line-height:1.65;
    opacity:.85;
}

.legal-notice{
    padding:22px;
    border:1px solid rgba(155,92,255,.3);
    border-radius:16px;
    background:rgba(155,92,255,.08);
    line-height:1.7;
}

@media(max-width:900px){
    .legal-page{
        padding:20px;
    }

    .legal-hero{
        padding:28px;
    }

    .legal-hero h1{
        font-size:34px;
    }

    .legal-layout{
        grid-template-columns:1fr;
    }

    .legal-sidebar{
        display:none;
    }

    .legal-section{
        padding:22px;
    }
}.legal-contact-card{
    margin:20px 0;
    padding:20px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    background:rgba(255,255,255,.035);
}

.legal-contact-card p{
    margin:0 0 7px;
}

.legal-contact-card p:last-child{
    margin-bottom:0;
}

.legal-contact-card a{
    color:#b982ff;
    text-decoration:none;
}

.legal-contact-card a:hover{
    text-decoration:underline;
}.legal-uppercase{
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.2px;
}

.legal-section a{
    color:#b982ff;
    text-decoration:none;
}

.legal-section a:hover{
    text-decoration:underline;
}.vehicle-editor-page{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:34px 28px 80px;
}

.vehicle-editor-page h2{
    color: #17171d;
}

.vehicle-editor-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:28px;
}

.vehicle-editor-header h1{
    margin:12px 0 7px;
    font-size:32px;
    line-height:1.15;
}

.vehicle-editor-header p{
    margin:0;
    color:#757575;
    font-size:15px;
}

.vehicle-editor-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#6f3cff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
}

.vehicle-editor-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.vehicle-editor-card{
    background:#fff;
    border:1px solid #e8e8ee;
    border-radius:18px;
    padding:26px;
    margin-bottom:22px;
    box-shadow:0 8px 30px rgba(22,22,32,.04);
}

.vehicle-card-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.vehicle-card-heading h2{
    margin:0 0 6px;
    font-size:20px;
}

.vehicle-card-heading p{
    margin:0;
    color:#777;
    font-size:14px;
    line-height:1.55;
}

.vehicle-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.vehicle-textarea-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.vehicle-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.vehicle-field-full{
    grid-column:1/-1;
}

.vehicle-field label{
    color:#292934;
    font-size:14px;
    font-weight:700;
}

.vehicle-field label span{
    color:#7a3cff;
}

.vehicle-field input,
.vehicle-field select,
.vehicle-field textarea{
    width:100%;
    border:1px solid #dedee7;
    border-radius:11px;
    background:#fff;
    color:#20202a;
    font:inherit;
    outline:none;
    transition:border-color .2s,box-shadow .2s;
}

.vehicle-field input,
.vehicle-field select{
    min-height:48px;
    padding:0 14px;
}

.vehicle-field textarea{
    min-height:135px;
    padding:13px 14px;
    resize:vertical;
    line-height:1.55;
}

.vehicle-field input:focus,
.vehicle-field select:focus,
.vehicle-field textarea:focus{
    border-color:#7844ff;
    box-shadow:0 0 0 3px rgba(120,68,255,.12);
}

.vehicle-field-help{
    margin:11px 0 0;
    color:#777;
    font-size:12px;
}

.vehicle-input-suffix{
    position:relative;
}

.vehicle-input-suffix input{
    padding-right:70px;
}

.vehicle-input-suffix span{
    position:absolute;
    top:50%;
    right:14px;
    transform:translateY(-50%);
    color:#777;
    font-size:12px;
    font-weight:800;
}

.vehicle-cover-preview{
    position:relative;
    width:100%;
    min-height:370px;
    overflow:hidden;
    border-radius:15px;
    background:#17171d;
}

.vehicle-cover-preview img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.vehicle-cover-empty{
    background:linear-gradient(135deg,#22222c,#111116);
}

.vehicle-cover-placeholder{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#aaa;
}

.vehicle-cover-placeholder i{
    font-size:54px;
    color:#7441ef;
}

.vehicle-cover-placeholder span{
    font-size:15px;
    font-weight:700;
}

.vehicle-cover-overlay{
    position:absolute;
    right:16px;
    bottom:16px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:2;
}

.vehicle-photo-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:42px;
    padding:0 15px;
    border:0;
    border-radius:10px;
    background:rgba(20,20,26,.88);
    color:#fff;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    backdrop-filter:blur(10px);
}

.vehicle-photo-remove{
    background:rgba(160,26,42,.9);
}

.vehicle-save-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:48px;
    padding:0 22px;
    border:0;
    border-radius:11px;
    background:#dedee5;
    color:#92929d;
    font-size:14px;
    font-weight:800;
    cursor:not-allowed;
    transition:.2s;
}

.vehicle-save-button.vehicle-save-active{
    background:#7540f3;
    color:#fff;
    cursor:pointer;
}

.vehicle-save-button.vehicle-save-active:hover{
    transform:translateY(-1px);
    box-shadow:0 9px 24px rgba(117,64,243,.25);
}

.vehicle-editor-actions{
    display:flex;
    justify-content:flex-end;
}

.vehicle-editor-actions .vehicle-save-button{
    min-width:190px;
}

.vehicle-alert{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:22px;
    padding:15px 17px;
    border-radius:12px;
    font-size:14px;
    line-height:1.5;
}

.vehicle-alert p{
    margin:0 0 4px;
}

.vehicle-alert p:last-child{
    margin-bottom:0;
}

.vehicle-alert-success{
    background:#eaf9ef;
    border:1px solid #bde8ca;
    color:#1e7139;
}

.vehicle-alert-error{
    background:#fff0f1;
    border:1px solid #f1c4c9;
    color:#9b2431;
}

.vehicle-danger-zone{
    margin-top:38px;
    border-color:#efc9ce;
}

.vehicle-danger-zone .vehicle-card-heading{
    margin:0;
}

.vehicle-delete-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:0 16px;
    border:1px solid #c72d3e;
    border-radius:10px;
    background:#fff;
    color:#c72d3e;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
}

.vehicle-delete-button:hover{
    background:#c72d3e;
    color:#fff;
}

.vehicle-delete-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(10,10,14,.72);
    opacity:0;
    visibility:hidden;
    transition:.2s;
}

.vehicle-delete-modal.vehicle-modal-visible{
    opacity:1;
    visibility:visible;
}

.vehicle-delete-dialog{
    position:relative;
    width:100%;
    max-width:460px;
    padding:32px;
    border-radius:18px;
    background:#fff;
    text-align:center;
    transform:translateY(15px);
    transition:.2s;
}

.vehicle-modal-visible .vehicle-delete-dialog{
    transform:translateY(0);
}

.vehicle-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:#f1f1f5;
    color:#555;
    cursor:pointer;
}

.vehicle-delete-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#fff0f1;
    color:#c72d3e;
    font-size:25px;
}

.vehicle-delete-dialog h2{
    margin:0 0 12px;
    font-size:23px;
}

.vehicle-delete-dialog p{
    margin:0;
    color:#6f6f79;
    font-size:14px;
    line-height:1.65;
}

.vehicle-delete-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:25px;
}

.vehicle-cancel-delete,
.vehicle-confirm-delete{
    min-height:46px;
    border-radius:10px;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
}

.vehicle-cancel-delete{
    border:1px solid #dedee5;
    background:#fff;
    color:#444;
}

.vehicle-confirm-delete{
    border:1px solid #c72d3e;
    background:#c72d3e;
    color:#fff;
}

.vehicle-modal-open{
    overflow:hidden;
}

@media(max-width:760px){
    .vehicle-editor-page{
        padding:22px 14px 65px;
    }

    .vehicle-editor-header{
        align-items:flex-start;
    }

    .vehicle-save-button-top{
        display:none;
    }

    .vehicle-editor-card{
        padding:19px;
        border-radius:14px;
    }

    .vehicle-form-grid,
    .vehicle-textarea-grid{
        grid-template-columns:1fr;
    }

    .vehicle-field-full{
        grid-column:auto;
    }

    .vehicle-cover-preview{
        min-height:260px;
    }

    .vehicle-cover-overlay{
        right:10px;
        bottom:10px;
        left:10px;
    }

    .vehicle-photo-button{
        flex:1;
        padding:0 10px;
    }

    .vehicle-danger-zone .vehicle-card-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .vehicle-delete-button{
        width:100%;
    }
}.vehicle-view-page{
    width:calc(100% - 243px);
    min-width:0;
    max-width:none;
    margin:0 0 0 243px;
    padding:28px 28px 80px;
    box-sizing:border-box;
}

.vehicle-view-hero{
    margin-bottom:25px;
}

.vehicle-view-cover{
    position:relative;
    width:100%;
    min-height:500px;
    overflow:hidden;
    border-radius:22px;
    background:#17171d;
}

.vehicle-view-cover>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.vehicle-view-cover-empty{
    background:linear-gradient(135deg,#282832,#111116);
}

.vehicle-view-cover-placeholder{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:#9b9ba5;
}

.vehicle-view-cover-placeholder i{
    color:#7540f3;
    font-size:65px;
}

.vehicle-view-cover-placeholder span{
    font-size:15px;
    font-weight:700;
}

.vehicle-view-cover-shade{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(8,8,12,.9) 0%,
        rgba(8,8,12,.25) 50%,
        rgba(8,8,12,.06) 100%
    );
}

.vehicle-view-hero-content{
    position:absolute;
    right:30px;
    bottom:30px;
    left:30px;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:25px;
}

.vehicle-view-title{
    color:#fff;
}

.vehicle-view-type{
    display:inline-flex;
    align-items:center;
    min-height:29px;
    margin-bottom:10px;
    padding:0 11px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    background:rgba(18,18,24,.7);
    font-size:11px;
    font-weight:800;
    letter-spacing:.6px;
    text-transform:uppercase;
    backdrop-filter:blur(8px);
}

.vehicle-view-title h1{
    margin:0;
    color:#fff;
    font-size:43px;
    line-height:1.08;
    text-shadow:0 2px 12px rgba(0,0,0,.4);
}

.vehicle-view-title p{
    margin:9px 0 0;
    color:rgba(255,255,255,.82);
    font-size:18px;
    font-weight:600;
}

.vehicle-view-edit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:46px;
    padding:0 18px;
    border-radius:11px;
    background:#7540f3;
    color:#fff;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    white-space:nowrap;
}

.vehicle-view-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 325px;
    align-items:start;
    gap:25px;
}

.vehicle-view-main{
    min-width:0;
}

.vehicle-view-sidebar{
    position:sticky;
    top:22px;
}

.vehicle-view-card{
    margin-bottom:22px;
    padding:25px;
    border:1px solid #e7e7ed;
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 26px rgba(20,20,30,.04);
}

.vehicle-view-card-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:21px;
}

.vehicle-view-card-heading h2{
    margin:0 0 5px;
    color:#22222c;
    font-size:20px;
}

.vehicle-view-card-heading p{
    margin:0;
    color:#777780;
    font-size:13px;
    line-height:1.5;
}

.vehicle-view-card-heading>i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    flex-shrink:0;
    border-radius:11px;
    background:#f1ecff;
    color:#7540f3;
    font-size:17px;
}

.vehicle-spec-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:13px;
}

.vehicle-spec-item{
    display:flex;
    flex-direction:column;
    gap:6px;
    min-height:82px;
    padding:15px;
    border:1px solid #ededf1;
    border-radius:12px;
    background:#fafafd;
}

.vehicle-spec-item span{
    color:#888891;
    font-size:11px;
    font-weight:800;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.vehicle-spec-item strong{
    color:#292933;
    font-size:15px;
    line-height:1.35;
}

.vehicle-spec-wide{
    grid-column:span 2;
}

.vehicle-mod-content{
    color:#555560;
    font-size:14px;
    line-height:1.8;
    white-space:normal;
}

.vehicle-owner-label{
    display:block;
    margin-bottom:15px;
    color:#888891;
    font-size:11px;
    font-weight:800;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.vehicle-owner-profile{
    display:flex;
    align-items:center;
    gap:13px;
    color:inherit;
    text-decoration:none;
}

.vehicle-owner-profile img{
    width:54px;
    height:54px;
    flex-shrink:0;
    border-radius:50%;
    object-fit:cover;
    background:#ededf2;
}

.vehicle-owner-profile div{
    min-width:0;
}

.vehicle-owner-profile strong{
    display:block;
    overflow:hidden;
    color:#292933;
    font-size:15px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.vehicle-owner-profile span{
    display:block;
    margin-top:4px;
    color:#81818a;
    font-size:13px;
}

.vehicle-owner-location{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:16px;
    color:#72727b;
    font-size:13px;
}

.vehicle-owner-location i{
    color:#7540f3;
}

.vehicle-owner-button{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:43px;
    margin-top:20px;
    border:1px solid #7540f3;
    border-radius:10px;
    color:#7540f3;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.vehicle-owner-button:hover{
    background:#7540f3;
    color:#fff;
}

.vehicle-share-card h3{
    margin:0 0 15px;
    color:#292933;
    font-size:16px;
}

.vehicle-share-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
}

.vehicle-share-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:42px;
    border:1px solid #e1e1e8;
    border-radius:9px;
    background:#fafafd;
    color:#454550;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}

.vehicle-share-button:hover{
    border-color:#7540f3;
    color:#7540f3;
}

.vehicle-copy-message{
    display:block;
    height:0;
    overflow:hidden;
    color:#238347;
    font-size:12px;
    font-weight:700;
    opacity:0;
    text-align:center;
    transition:.2s;
}

.vehicle-copy-message-visible{
    height:20px;
    margin-top:10px;
    opacity:1;
}

.vehicle-date-card{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.vehicle-date-card div{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.vehicle-date-card div+div{
    padding-top:17px;
    border-top:1px solid #ededf1;
}

.vehicle-date-card span{
    color:#888891;
    font-size:11px;
    font-weight:800;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.vehicle-date-card strong{
    color:#34343d;
    font-size:13px;
}

.vehicle-posts-section{
    margin-top:32px;
}

.vehicle-posts-heading{
    margin-bottom:18px;
}

.vehicle-posts-heading h2{
    margin:0 0 5px;
    color:#22222c;
    font-size:23px;
}

.vehicle-posts-heading p{
    margin:0;
    color:#797982;
    font-size:14px;
}

.vehicle-posts-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.vehicle-posts-empty{
    padding:55px 25px;
    border:1px dashed #d7d7df;
    border-radius:16px;
    background:#fff;
    text-align:center;
}

.vehicle-posts-empty i{
    margin-bottom:14px;
    color:#7540f3;
    font-size:42px;
}

.vehicle-posts-empty h3{
    margin:0 0 7px;
    color:#292933;
    font-size:18px;
}

.vehicle-posts-empty p{
    margin:0;
    color:#81818a;
    font-size:13px;
}

@media(max-width:1000px){
    .vehicle-view-layout{
        grid-template-columns:1fr;
    }

    .vehicle-view-sidebar{
        position:static;
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:20px;
    }

    .vehicle-view-sidebar .vehicle-view-card{
        margin-bottom:0;
    }

    .vehicle-date-card{
        grid-column:1/-1;
    }
}

@media(max-width:700px){
    .vehicle-view-page{
        padding:15px 13px 60px;
    }

    .vehicle-view-cover{
        min-height:410px;
        border-radius:16px;
    }

    .vehicle-view-hero-content{
        right:18px;
        bottom:18px;
        left:18px;
        align-items:flex-start;
        flex-direction:column;
    }

    .vehicle-view-title h1{
        font-size:32px;
    }

    .vehicle-view-title p{
        font-size:15px;
    }

    .vehicle-view-edit{
        min-height:42px;
    }

    .vehicle-view-card{
        padding:19px;
        border-radius:14px;
    }

    .vehicle-spec-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .vehicle-spec-wide{
        grid-column:1/-1;
    }

    .vehicle-view-sidebar{
        grid-template-columns:1fr;
    }

    .vehicle-date-card{
        grid-column:auto;
    }
}.empty-feed{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:70px 40px;

    background:#fff;
    border:1px solid #e9e9ef;
    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.04);
}

.empty-feed-icon{
    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    border-radius:50%;

    background:linear-gradient(135deg,#8b5cf6,#6d28d9);

    color:#fff;
    font-size:34px;

    box-shadow:0 12px 35px rgba(109,40,217,.35);
}

.empty-feed h3{
    margin:0 0 12px;

    color:#222;

    font-size:28px;
    font-weight:700;
}

.empty-feed p{
    max-width:500px;

    margin:0 0 28px;

    color:#777;

    line-height:1.7;
    font-size:15px;
}

#empty-feed-upload{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 26px;

    border:none;
    border-radius:12px;

    background:#7c3aed;

    color:#fff;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;
}

#empty-feed-upload:hover{
    background:#6d28d9;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(109,40,217,.35);
}

#empty-feed-upload:active{
    transform:translateY(0);
}.garage-widget{
    overflow:hidden;
}

.garage-widget-header{
    display:flex;
    align-items:center;
    gap:13px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.garage-widget-avatar{
    width:54px;
    height:54px;
    flex-shrink:0;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #8b5cf6;
    background:#1c1c24;
}

.garage-widget-identity{
    min-width:0;
}

.garage-widget-identity h3{
    margin:0 0 4px;
    color:#fff;
    font-size:16px;
    font-weight:700;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.garage-widget-identity a{
    color:#9292a0;
    font-size:13px;
    text-decoration:none;
}

.garage-widget-identity a:hover{
    color:#a78bfa;
}

.garage-widget-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.garage-stat{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#fff;
    text-decoration:none;
    border-right:1px solid rgba(255,255,255,.08);
}

.garage-stat:last-child{
    border-right:0;
}

.garage-stat strong{
    font-size:18px;
    font-weight:800;
    line-height:1;
}

.garage-stat span{
    color:#9292a0;
    font-size:11px;
}

.garage-stat:hover strong{
    color:#a78bfa;
}

.garage-widget-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding-top:18px;
}

.garage-widget-actions a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:39px;
    border-radius:9px;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    transition:.2s ease;
}

.garage-widget-view{
    color:#fff;
    background:#25252f;
    border:1px solid rgba(255,255,255,.08);
}

.garage-widget-view:hover{
    background:#30303d;
}

.garage-widget-add{
    color:#fff;
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    border:1px solid transparent;
}

.garage-widget-add:hover{
    transform:translateY(-1px);
    box-shadow:0 7px 20px rgba(124,58,237,.3);
}.profile-follow-btn.following{
    background:#24242d;
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
}

.profile-follow-btn.following:hover{
    background:#ef4444;
    border-color:#ef4444;
}

.profile-follow-btn:disabled{
    cursor:not-allowed;
    opacity:.7;
}.suggested-garages-list{
    display:flex;
    flex-direction:column;
}

.suggestion{
    width:100%;
    padding:12px 0;
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom:1px solid rgba(255,255,255,.07);
}

.suggestion:last-child{
    border-bottom:0;
}

.suggestion-avatar{
    flex-shrink:0;
}

.suggestion-avatar img{
    width:43px;
    height:43px;
    display:block;
    border-radius:50%;
    object-fit:cover;
    background:#25252c;
}

.suggestion-info{
    min-width:0;
    flex:1;
    display:flex;
    flex-direction:column;
}

.suggestion-name{
    overflow:hidden;
    color:#fff;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.suggestion-username{
    margin-top:2px;
    overflow:hidden;
    color:#8f8f99;
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.suggestion-meta{
    margin-top:3px;
    color:#696974;
    font-size:9px;
}

.suggestion-follow-btn{
    min-height:34px;
    padding:0 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    flex-shrink:0;
    border:0;
    border-radius:8px;
    background:#9d39df;
    color:#fff;
    font-size:10px;
    font-weight:800;
    cursor:pointer;
}

.suggestion-follow-btn i{
    font-size:10px;
}

.suggestions-empty{
    padding:25px 10px;
    color:#85858f;
    text-align:center;
}

.suggestions-empty i{
    margin-bottom:8px;
    color:#b13cf4;
    font-size:25px;
}

.suggestions-empty p{
    margin:0;
    font-size:12px;
}/* =========================================
   FOLLOWERS / FOLLOWING PAGE
========================================= */

.follows-page{
    width:100%;
    min-width:0;
    padding:32px 38px 80px;
    box-sizing:border-box;
    background:#0d0d0d;
}

.follows-header{
    margin-bottom:24px;
}

.follows-label{
    display:block;
    margin-bottom:7px;
    color:#b13cf4;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.3px;
}

.follows-header h1{
    margin:0 0 8px;
    color:#fff;
    font-size:34px;
    line-height:1.1;
}

.follows-header p{
    margin:0;
    color:#92929c;
    font-size:14px;
    line-height:1.55;
}

/* Tabs */

.follows-tabs{
    width:100%;
    margin-bottom:22px;
    display:flex;
    gap:8px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.follows-tabs a{
    position:relative;
    padding:13px 18px;
    color:#888892;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.follows-tabs a.active{
    color:#fff;
}

.follows-tabs a.active::after{
    content:"";
    position:absolute;
    right:12px;
    bottom:-1px;
    left:12px;
    height:3px;
    border-radius:3px 3px 0 0;
    background:#b13cf4;
}

/* List */

.follows-list{
    width:100%;
    max-width:850px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.follow-user-card{
    width:100%;
    min-width:0;
    padding:15px 17px;
    display:flex;
    align-items:center;
    gap:14px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:#15151a;
}

.follow-user-avatar{
    flex-shrink:0;
    text-decoration:none;
}

.follow-user-avatar img{
    width:54px;
    height:54px;
    display:block;
    border-radius:50%;
    object-fit:cover;
    background:#25252c;
}

.follow-user-info{
    min-width:0;
    flex:1;
    display:flex;
    flex-direction:column;
}

.follow-user-name{
    overflow:hidden;
    color:#fff;
    font-size:14px;
    font-weight:800;
    line-height:1.3;
    text-decoration:none;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.follow-user-username{
    margin-top:2px;
    overflow:hidden;
    color:#92929c;
    font-size:12px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.follow-user-stats{
    margin-top:5px;
    display:flex;
    align-items:center;
    gap:6px;
    color:#6f6f79;
    font-size:10px;
}

.follow-list-btn{
    min-width:105px;
    min-height:39px;
    padding:0 13px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    flex-shrink:0;
    border:0;
    border-radius:9px;
    background:#9d39df;
    color:#fff;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
}

.follow-list-btn.following{
    border:1px solid rgba(255,255,255,.12);
    background:#24242b;
    color:#dddde2;
}

/* Empty */

.follows-empty{
    width:100%;
    max-width:850px;
    min-height:360px;
    padding:45px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    box-sizing:border-box;
    border:1px dashed rgba(255,255,255,.13);
    border-radius:16px;
    background:#15151a;
    text-align:center;
}

.follows-empty-icon{
    width:72px;
    height:72px;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(177,60,244,.13);
    color:#b13cf4;
    font-size:27px;
}

.follows-empty h2{
    margin:0 0 8px;
    color:#fff;
    font-size:21px;
}

.follows-empty p{
    max-width:300px;
    margin:0;
    color:#92929c;
    font-size:13px;
    line-height:1.6;
}

.follows-empty>a{
    min-height:43px;
    margin-top:18px;
    padding:0 17px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#9d39df;
    color:#fff;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
}/* =========================================
   404 PAGE
========================================= */

.error-page{
    position:relative;
    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            rgba(0,0,0,.10),
            rgba(0,0,0,.10)
        ),
        url("/imgs/404-bg.png") center center/cover no-repeat;
}

.error-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.62),
            rgba(0,0,0,.45)
        );
}

.error-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:700px;

    text-align:center;
}

.error-number{
    margin:0 0 -22px;

    color:rgba(177,60,244,.25);

    font-size:190px;
    line-height:.85;
    font-weight:900;

    letter-spacing:-10px;

    text-shadow:
        0 0 35px rgba(177,60,244,.2);
}

.error-label{
    display:inline-block;

    margin-bottom:15px;

    color:#b13cf4;

    font-size:14px;
    font-weight:900;

    letter-spacing:4px;
}

.error-content h1{
    margin:0 0 15px;

    color:#fff;

    font-size:48px;
    line-height:1.05;

    font-weight:900;
}

.error-content p{
    width:100%;
    max-width:540px;

    margin:0 auto 30px;

    color:#b3b3bc;

    font-size:16px;
    line-height:1.7;
}

.error-actions{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;
}

.error-actions a{
    min-height:50px;

    padding:0 22px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    border-radius:11px;

    font-size:14px;
    font-weight:800;

    text-decoration:none;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.error-actions a:hover{
    transform:translateY(-2px);
}

.error-home-btn{
    border:1px solid #b13cf4;

    background:
        linear-gradient(
            135deg,
            #b13cf4,
            #7920bb
        );

    color:#fff;

    box-shadow:
        0 10px 30px
        rgba(177,60,244,.22);
}

.error-explore-btn{
    border:1px solid rgba(255,255,255,.18);

    background:rgba(15,15,18,.76);

    color:#fff;

    backdrop-filter:blur(8px);
}/* =========================================
   POST COMMENTS - DESKTOP
========================================= */

.post-comments-section{
    padding:14px 18px 18px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* View Comments */

.load-more-comments{
    display:inline-flex;
    align-items:center;

    margin:4px 0 12px;
    padding:0;

    border:0;
    background:transparent;

    color:#9c9ca6;

    font-size:13px;
    font-weight:700;
    font-family:inherit;

    cursor:pointer;

    transition:color .2s ease;
}

.load-more-comments:hover{
    color:#b13cf4;
}

.load-more-comments:disabled{
    opacity:.55;
    cursor:default;
}


/* =========================================
   COMMENT INPUT
========================================= */

.comment-form{
    width:100%;

    display:flex;
    align-items:center;

    gap:10px;

    margin-top:8px;
}

.comment-form input{
    flex:1;
    min-width:0;

    height:44px;

    padding:0 16px;

    box-sizing:border-box;

    border:1px solid rgba(255,255,255,.1);
    border-radius:22px;

    outline:none;

    background:#1b1b20;

    color:#fff;

    font-size:14px;
    font-family:inherit;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.comment-form input::placeholder{
    color:#777780;
}

.comment-form input:focus{
    border-color:#b13cf4;

    background:#202026;

    box-shadow:
        0 0 0 3px rgba(177,60,244,.10);
}


/* =========================================
   POST BUTTON
========================================= */

.comment-form button{
    flex:0 0 auto;

    height:42px;

    padding:0 17px;

    border:0;
    border-radius:21px;

    background:#b13cf4;

    color:#fff;

    font-size:13px;
    font-weight:800;
    font-family:inherit;

    cursor:pointer;

    transition:
        background .2s ease,
        transform .15s ease,
        opacity .2s ease;
}

.comment-form button:hover{
    background:#c052f7;
}

.comment-form button:active{
    transform:scale(.96);
}

.comment-form button:disabled{
    opacity:.55;
    cursor:default;
}


/* =========================================
   LOADED COMMENTS
========================================= */

.post-comments-preview{
    display:flex;
    flex-direction:column;

    gap:12px;

    margin-bottom:8px;
}

.post-comment{
    display:flex;
    align-items:flex-start;

    gap:9px;
}

.post-comment-avatar{
    flex:0 0 36px;

    width:36px;
    height:36px;

    overflow:hidden;

    border-radius:50%;
}

.post-comment-avatar img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

.post-comment-content{
    flex:1;
    min-width:0;
}

.post-comment-bubble{
    display:inline-block;

    max-width:100%;

    padding:9px 13px;

    box-sizing:border-box;

    border-radius:4px 16px 16px 16px;

    background:#1d1d23;

    color:#eee;
}

.post-comment-name{
    display:block;

    margin-bottom:3px;

    color:#fff;

    font-size:13px;
    line-height:1.2;
    font-weight:800;

    text-decoration:none;
}

.post-comment-name:hover{
    color:#b13cf4;
}

.post-comment-text{
    color:#d3d3d8;

    font-size:14px;
    line-height:1.45;

    overflow-wrap:anywhere;
}


/* Time / Reply */

.post-comment-meta{
    display:flex;
    align-items:center;

    gap:12px;

    padding:4px 10px 0;

    color:#777780;

    font-size:11px;
}

.comment-reply-btn,
.view-replies-btn{
    padding:0;

    border:0;
    background:transparent;

    color:#96969f;

    font-size:12px;
    font-weight:700;
    font-family:inherit;

    cursor:pointer;
}

.comment-reply-btn:hover,
.view-replies-btn:hover{
    color:#b13cf4;
}


/* =========================================
   REPLIES
========================================= */

.view-replies-btn{
    display:block;

    margin:8px 0 0 10px;
}

.comment-replies{
    display:flex;
    flex-direction:column;

    gap:10px;

    margin-top:10px;
    padding-left:15px;

    border-left:2px solid rgba(177,60,244,.18);
}


/* Reply Input */

.comment-reply-form{
    display:flex;
    align-items:center;

    gap:8px;

    margin:9px 0 3px;
}

.comment-reply-form[hidden]{
    display:none;
}

.comment-reply-form input{
    flex:1;
    min-width:0;

    height:38px;

    padding:0 14px;

    box-sizing:border-box;

    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;

    outline:none;

    background:#17171c;

    color:#fff;

    font-family:inherit;
    font-size:13px;
}

.comment-reply-form input::placeholder{
    color:#707078;
}

.comment-reply-form input:focus{
    border-color:#b13cf4;
}

.comment-reply-form button{
    padding:0;

    border:0;
    background:transparent;

    color:#b13cf4;

    font-size:12px;
    font-weight:800;
    font-family:inherit;

    cursor:pointer;
}

.comment-reply-form button:hover{
    color:#c95bff;
}
/* =========================================
   MEMBERS PAGE
========================================= */

.members-page{
    width:calc(100% - 260px);
    max-width:none;
    min-width:0;
    margin:0 0 0 260px;
    padding:30px 32px 80px;
    box-sizing:border-box;
}


/* =========================================
   HEADER
========================================= */

.members-header{
    width:100%;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:28px;
}

.members-heading{
    min-width:0;
}

.members-heading h1{
    margin:0 0 6px;
    color:#fff;
    font-size:28px;
    font-weight:800;
    line-height:1.2;
}

.members-heading p{
    margin:0;
    color:#8f8f98;
    font-size:13px;
    line-height:1.5;
}


/* =========================================
   SEARCH
========================================= */

.members-search{
    width:320px;
    flex:0 0 320px;
    display:flex;
    align-items:center;
    gap:8px;
}

.members-search input{
    width:100%;
    min-width:0;
    height:44px;
    padding:0 14px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.1);
    border-radius:10px;
    background:#15151a;
    color:#fff;
    font-family:inherit;
    font-size:13px;
    outline:none;
}

.members-search input::placeholder{
    color:#74747e;
}

.members-search input:focus{
    border-color:#a855f7;
}

.members-search button{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:10px;
    background:#a855f7;
    color:#fff;
    cursor:pointer;
}

.members-search button:hover{
    opacity:.9;
}


/* =========================================
   MEMBER GRID
========================================= */

.members-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}


/* =========================================
   MEMBER CARD
========================================= */

.member-card{
    width:100%;
    min-width:0;
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:#15151a;
    transition:
        opacity .2s ease,
        transform .2s ease,
        border-color .2s ease;
}

.member-card:hover{
    border-color:rgba(168,85,247,.4);
    transform:translateY(-2px);
}

.member-card-removing{
    opacity:0;
    transform:scale(.97);
}


/* =========================================
   AVATAR
========================================= */

.member-avatar-link{
    width:58px;
    height:58px;
    flex:0 0 58px;
    display:block;
    text-decoration:none;
}

.member-avatar{
    width:58px;
    height:58px;
    display:block;
    border-radius:50%;
    object-fit:cover;
    background:#25252c;
}


/* =========================================
   MEMBER INFO
========================================= */

.member-info{
    min-width:0;
    flex:1;
}

.member-name-link{
    display:block;
    max-width:100%;
    color:#fff;
    text-decoration:none;
}

.member-name-link h3{
    margin:0 0 3px;
    overflow:hidden;
    color:#fff;
    font-size:14px;
    font-weight:800;
    line-height:1.25;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.member-username{
    display:block;
    width:max-content;
    max-width:100%;
    margin-bottom:6px;
    overflow:hidden;
    color:#8b8b95;
    font-size:11px;
    line-height:1.3;
    text-decoration:none;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.member-location{
    max-width:100%;
    display:flex;
    align-items:center;
    gap:5px;
    margin-bottom:6px;
    overflow:hidden;
    color:#9c9ca5;
    font-size:10px;
    white-space:nowrap;
}

.member-location i{
    flex:0 0 auto;
    color:#a855f7;
}

.member-location span{
    overflow:hidden;
    text-overflow:ellipsis;
}


/* =========================================
   MEMBER STATS
========================================= */

.member-stats{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    color:#bdbdc6;
    font-size:10px;
}

.member-stats strong{
    color:#fff;
}


/* =========================================
   FOLLOW BUTTON
========================================= */

.member-follow-btn{
    min-width:82px;
    height:32px;
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 13px;
    box-sizing:border-box;
    border:1px solid #a855f7;
    border-radius:8px;
    background:#a855f7;
    color:#fff;
    font-family:inherit;
    font-size:11px;
    font-weight:700;
    line-height:1;
    text-align:center;
    text-decoration:none;
    white-space:nowrap;
    cursor:pointer;
}

.member-follow-btn:hover{
    opacity:.9;
}

.member-follow-btn:disabled{
    opacity:.6;
    cursor:wait;
}


/* =========================================
   EMPTY
========================================= */

.members-empty{
    width:100%;
    padding:70px 20px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:#15151a;
    color:#8f8f98;
    text-align:center;
}

.members-empty i{
    margin-bottom:15px;
    color:#a855f7;
    font-size:30px;
}

.members-empty h3{
    margin:0 0 8px;
    color:#fff;
}

.members-empty p{
    margin:0 0 12px;
}

.members-empty a{
    color:#a855f7;
    text-decoration:none;
}


/* =========================================
   SMALL DESKTOP / TABLET
========================================= */

@media(max-width:1100px){

    .members-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

/* =========================================
   FEATURED MANUFACTURER
========================================= */

.featured-manufacturer{
    width:98%;
    margin:45px auto 25px;
}

.featured-manufacturer-label{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:#9b9ba5;
    font-size:12px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.featured-manufacturer-label i{
    color:#a855f7;
}

.manufacturer-feature-card{
    position:relative;
    overflow:hidden;
    padding:28px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:
        radial-gradient(
            circle at top right,
            rgba(168,85,247,.12),
            transparent 35%
        ),
        #121217;
}

.manufacturer-feature-card::before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(
        90deg,
        #a855f7,
        transparent
    );
    content:"";
}

.manufacturer-feature-top{
    display:flex;
    align-items:center;
    gap:18px;
}

.manufacturer-feature-logo{
    width:90px;
    height:90px;
    flex:0 0 90px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background:#fff;
}

.manufacturer-feature-logo img{
    width:76%;
    height:76%;
    display:block;
    object-fit:contain;
}

.manufacturer-feature-logo span{
    color:#111;
    font-size:36px;
    font-weight:800;
}

.manufacturer-feature-title{
    min-width:0;
}

.manufacturer-feature-title>span{
    display:block;
    margin-bottom:3px;
    color:#a855f7;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.manufacturer-feature-title h2{
    margin:0 0 6px;
    color:#fff;
    font-size:28px;
    line-height:1.1;
}

.manufacturer-feature-title p{
    display:flex;
    align-items:center;
    gap:6px;
    margin:0;
    color:#8f8f98;
    font-size:12px;
}

.manufacturer-feature-details{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    margin:24px 0;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.07);
    border-radius:12px;
    background:rgba(255,255,255,.07);
}

.manufacturer-feature-details>div{
    min-width:0;
    padding:14px 16px;
    background:#17171d;
}

.manufacturer-feature-details span{
    display:block;
    margin-bottom:5px;
    color:#777781;
    font-size:9px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.manufacturer-feature-details strong{
    display:block;
    overflow:hidden;
    color:#e8e8ec;
    font-size:12px;
    font-weight:600;
    line-height:1.4;
    text-overflow:ellipsis;
}

.manufacturer-feature-bio{
    padding-top:1px;
}

.manufacturer-feature-bio p{
    margin:0;
    color:#a9a9b2;
    font-size:13px;
    line-height:1.75;
}/* =========================================
   SITE FOOTER
========================================= */

.site-footer{
    width:100%;
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.07);
    background:#0b0b0e;
}

.site-footer-inner{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:45px 0 35px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    box-sizing:border-box;
}

.footer-brand{
    max-width:320px;
}

.footer-logo{
    width:150px;
    height:auto;
    display:block;
    margin-bottom:15px;
}

.footer-brand p{
    margin:0;
    color:#777781;
    font-size:12px;
    line-height:1.7;
}

.footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.footer-column h4{
    margin:0 0 5px;
    color:#fff;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.footer-column a{
    color:#85858f;
    font-size:12px;
    text-decoration:none;
    transition:.2s ease;
}

.footer-column a:hover{
    color:#a855f7;
}

.footer-bottom{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:18px 0 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    border-top:1px solid rgba(255,255,255,.06);
    color:#5f5f68;
    font-size:10px;
    box-sizing:border-box;
}

.footer-bottom p{
    margin:0;
}

.footer-bottom span{
    color:#6d6d76;
}.sidebar-footer{
    width:100%;
    padding:15px 20px 18px;
    box-sizing:border-box;
    color:#5f5f68;
}

.sidebar-footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:6px 12px;
    margin-bottom:8px;
}

.sidebar-footer-links a{
    color:#777781;
    font-size:9px;
    text-decoration:none;
}

.sidebar-footer-links a:hover{
    color:#a855f7;
}

.sidebar-footer p{
    margin:0;
    color:#55555e;
    font-size:9px;
}/* =========================================
   ABOUT PAGE
========================================= */

.about-page{
    width:100%;
    overflow:hidden;
    background:#0b0b0e;
    color:#fff;
}

.about-hero{
    min-height:520px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 24px;
    box-sizing:border-box;
    overflow:hidden;
    border-bottom:1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(168,85,247,.18),
            transparent 45%
        ),
        #0b0b0e;
}

.about-hero-glow{
    width:400px;
    height:400px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:#a855f7;
    filter:blur(180px);
    opacity:.12;
    pointer-events:none;
}

.about-hero-content{
    width:100%;
    max-width:850px;
    position:relative;
    z-index:2;
    text-align:center;
}

.about-eyebrow,
.about-section-heading>span,
.about-garage-content>span,
.about-future-content>span,
.about-cta>span{
    display:block;
    margin-bottom:12px;
    color:#a855f7;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}

.about-hero h1{
    margin:0;
    color:#fff;
    font-size:64px;
    font-weight:900;
    line-height:1.03;
    letter-spacing:-2px;
}

.about-hero h1 span{
    color:#a855f7;
}

.about-hero-content>p{
    max-width:680px;
    margin:22px auto 0;
    color:#9898a3;
    font-size:15px;
    line-height:1.8;
}

.about-hero-actions,
.about-cta-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:28px;
}

.about-primary-btn,
.about-secondary-btn{
    min-height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0 20px;
    border-radius:10px;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
    box-sizing:border-box;
}

.about-primary-btn{
    border:1px solid #a855f7;
    background:#a855f7;
    color:#fff;
}

.about-secondary-btn{
    border:1px solid rgba(255,255,255,.12);
    background:#15151a;
    color:#fff;
}

.about-primary-btn:hover,
.about-secondary-btn:hover{
    opacity:.9;
}


/* SECTIONS */

.about-section,
.about-culture,
.about-garage,
.about-future{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:85px 0;
    box-sizing:border-box;
}

.about-section-heading{
    margin-bottom:35px;
}

.about-section-heading.center{
    text-align:center;
}

.about-section-heading h2,
.about-garage h2,
.about-future h2,
.about-cta h2{
    margin:0;
    color:#fff;
    font-size:36px;
    font-weight:900;
    line-height:1.15;
    letter-spacing:-.7px;
}


/* INTRO */

.about-intro-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:50px;
    align-items:center;
}

.about-intro-copy p{
    margin:0 0 18px;
    color:#9999a3;
    font-size:14px;
    line-height:1.8;
}

.about-intro-copy p:last-child{
    margin-bottom:0;
}

.about-quote-card{
    padding:30px;
    border:1px solid rgba(168,85,247,.2);
    border-radius:16px;
    background:#15151a;
}

.about-quote-card i{
    display:block;
    margin-bottom:16px;
    color:#a855f7;
    font-size:24px;
}

.about-quote-card strong{
    color:#fff;
    font-size:18px;
    line-height:1.55;
}


/* CULTURE */

.about-culture{
    border-top:1px solid rgba(255,255,255,.06);
}

.about-culture-intro{
    max-width:650px;
    margin:-15px 0 35px;
    color:#8f8f99;
    font-size:14px;
    line-height:1.7;
}

.about-culture-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.about-culture-card{
    padding:28px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:14px;
    background:#15151a;
}

.about-culture-card i{
    margin-bottom:20px;
    color:#a855f7;
    font-size:25px;
}

.about-culture-card h3{
    margin:0 0 10px;
    color:#fff;
    font-size:16px;
}

.about-culture-card p{
    margin:0;
    color:#85858f;
    font-size:12px;
    line-height:1.7;
}


/* GARAGE */

.about-garage{
    padding:60px;
    border:1px solid rgba(168,85,247,.16);
    border-radius:20px;
    background:
        radial-gradient(
            circle at right center,
            rgba(168,85,247,.12),
            transparent 45%
        ),
        #131318;
}

.about-garage-content{
    max-width:720px;
}

.about-garage-content>p{
    margin:18px 0 28px;
    color:#94949e;
    font-size:14px;
    line-height:1.75;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.about-features div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d0d0d6;
    font-size:12px;
}

.about-features i{
    width:28px;
    color:#a855f7;
}


/* TAGS */

.about-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.about-tags span{
    padding:9px 15px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    background:#15151a;
    color:#aaaab3;
    font-size:11px;
}


/* FUTURE */

.about-future{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.06);
}

.about-future-content{
    max-width:760px;
    margin:0 auto;
}

.about-future-content>p{
    margin:18px auto;
    color:#92929c;
    font-size:14px;
    line-height:1.8;
}

.about-future-content strong{
    display:block;
    margin-top:28px;
    color:#fff;
    font-size:18px;
}


/* CTA */

.about-cta{
    width:90%;
    max-width:1200px;
    margin:0 auto 60px;
    padding:65px 25px;
    box-sizing:border-box;
    border:1px solid rgba(168,85,247,.2);
    border-radius:20px;
    background:
        radial-gradient(
            circle at center,
            rgba(168,85,247,.14),
            transparent 55%
        ),
        #131318;
    text-align:center;
}

.about-cta p{
    margin:12px 0 0;
    color:#8f8f99;
    font-size:13px;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:700px){

    .about-hero{
        min-height:auto;
        padding:70px 18px 60px;
    }

    .about-hero h1{
        font-size:40px;
        letter-spacing:-1px;
    }

    .about-hero-content>p{
        font-size:13px;
        line-height:1.7;
    }

    .about-hero-actions{
        flex-direction:column;
    }

    .about-primary-btn,
    .about-secondary-btn{
        width:100%;
        max-width:320px;
    }

    .about-section,
    .about-culture,
    .about-future{
        width:100%;
        padding:55px 18px;
    }

    .about-section-heading{
        margin-bottom:25px;
    }

    .about-section-heading h2,
    .about-garage h2,
    .about-future h2,
    .about-cta h2{
        font-size:27px;
    }

    .about-intro-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .about-quote-card{
        padding:22px;
    }

    .about-culture-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .about-culture-card{
        padding:22px;
    }

    .about-garage{
        width:calc(100% - 24px);
        margin:0 12px;
        padding:30px 20px;
        border-radius:16px;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:14px;
    }

    .about-tags{
        gap:7px;
    }

    .about-tags span{
        padding:8px 12px;
        font-size:10px;
    }

    .about-future-content strong{
        font-size:16px;
        line-height:1.5;
    }

    .about-cta{
        width:calc(100% - 24px);
        margin:0 12px 35px;
        padding:45px 18px;
        border-radius:16px;
    }

    .about-cta-actions{
        flex-direction:column;
    }

}.contact-page{
    width:100%;
    min-height:100vh;
    padding:70px 20px 80px;
    box-sizing:border-box;
    background:#0b0b0e;
    color:#fff;
}

.contact-hero{
    width:90%;
    max-width:1000px;
    margin:0 auto 45px;
    text-align:center;
}

.contact-hero>span,
.contact-info>span{
    display:block;
    margin-bottom:9px;
    color:#a855f7;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.5px;
}

.contact-hero h1{
    margin:0;
    color:#fff;
    font-size:42px;
    font-weight:900;
}

.contact-hero p{
    max-width:600px;
    margin:15px auto 0;
    color:#8e8e98;
    font-size:13px;
    line-height:1.7;
}

.contact-container{
    width:90%;
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:45px;
}

.contact-info{
    padding-top:20px;
}

.contact-info h2{
    margin:0;
    color:#fff;
    font-size:28px;
}

.contact-info>p{
    margin:15px 0 30px;
    color:#85858f;
    font-size:12px;
    line-height:1.7;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:22px;
}

.contact-info-item>i{
    width:36px;
    height:36px;
    flex:0 0 36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:rgba(168,85,247,.12);
    color:#a855f7;
}

.contact-info-item strong{
    display:block;
    margin-bottom:3px;
    color:#fff;
    font-size:12px;
}

.contact-info-item span{
    color:#85858f;
    font-size:11px;
    line-height:1.5;
}

.contact-form-card{
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background:#15151a;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:17px;
}

.contact-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.contact-field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.contact-field label{
    color:#b8b8c0;
    font-size:11px;
    font-weight:700;
}

.contact-field input,
.contact-field select,
.contact-field textarea{
    width:100%;
    padding:0 13px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.09);
    border-radius:9px;
    background:#0f0f14;
    color:#fff;
    font-family:inherit;
    font-size:12px;
    outline:none;
}

.contact-field input,
.contact-field select{
    height:44px;
}

.contact-field textarea{
    min-height:150px;
    padding-top:12px;
    padding-bottom:12px;
    resize:vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
    border-color:#a855f7;
}

.contact-captcha{
    margin-top:2px;
}

.contact-submit{
    width:100%;
    min-height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:0;
    border-radius:9px;
    background:#a855f7;
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}

.contact-success{
    margin-bottom:20px;
    padding:12px 14px;
    border:1px solid rgba(34,197,94,.2);
    border-radius:9px;
    background:rgba(34,197,94,.08);
    color:#86efac;
    font-size:11px;
}

.contact-errors{
    margin-bottom:20px;
    padding:12px 14px;
    border:1px solid rgba(239,68,68,.2);
    border-radius:9px;
    background:rgba(239,68,68,.08);
}

.contact-errors div{
    color:#fca5a5;
    font-size:11px;
    line-height:1.5;
}

.contact-honeypot{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
}/* =========================================
   MANUFACTURERS PAGE
========================================= */

.manufacturers-page{
    width:100%;
    min-height:100vh;
    background:#0b0b0e;
    color:#fff;
}


/* HERO */

.manufacturers-hero{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:70px 0 45px;
    box-sizing:border-box;
    text-align:center;
}

.manufacturers-eyebrow{
    display:block;
    margin-bottom:9px;
    color:#a855f7;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.7px;
}

.manufacturers-hero h1{
    margin:0;
    color:#fff;
    font-size:45px;
    font-weight:900;
    line-height:1.1;
}

.manufacturers-hero>p{
    max-width:620px;
    margin:14px auto 26px;
    color:#8c8c96;
    font-size:13px;
    line-height:1.7;
}


/* SEARCH */

.manufacturers-search{
    width:100%;
    max-width:600px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:9px;
}

.manufacturers-search-box{
    height:46px;
    position:relative;
    flex:1;
    display:flex;
    align-items:center;
}

.manufacturers-search-box>i{
    position:absolute;
    left:14px;
    color:#777781;
    font-size:12px;
    pointer-events:none;
}

.manufacturers-search input{
    width:100%;
    height:46px;
    padding:0 42px 0 38px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.09);
    border-radius:10px;
    background:#15151a;
    color:#fff;
    font-family:inherit;
    font-size:12px;
    outline:none;
}

.manufacturers-search input:focus{
    border-color:#a855f7;
}

.manufacturers-search input::placeholder{
    color:#6f6f79;
}

.manufacturers-search-clear{
    width:30px;
    height:30px;
    position:absolute;
    right:7px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777781;
    text-decoration:none;
}

.manufacturers-search button{
    height:46px;
    padding:0 20px;
    border:0;
    border-radius:10px;
    background:#a855f7;
    color:#fff;
    font-family:inherit;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
}


/* CONTENT */

.manufacturers-content{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding-bottom:80px;
}

.manufacturers-content-header{
    min-height:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:15px;
    color:#777781;
    font-size:11px;
}

.manufacturers-content-header span{
    color:#fff;
    font-weight:800;
}

.manufacturers-content-header p{
    margin:0;
}

.manufacturers-content-header strong{
    color:#aaaab4;
}


/* GRID */

.manufacturers-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}


/* CARD */

.manufacturer-card{
    min-width:0;
    display:flex;
    flex-direction:column;
    padding:20px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.07);
    border-radius:16px;
    background:
        radial-gradient(
            circle at top right,
            rgba(168,85,247,.08),
            transparent 38%
        ),
        #15151a;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.manufacturer-card:hover{
    transform:translateY(-3px);
    border-color:rgba(168,85,247,.35);
}


/* TOP */

.manufacturer-card-top{
    display:flex;
    align-items:center;
    gap:13px;
}

.manufacturer-card-logo{
    width:64px;
    height:64px;
    flex:0 0 64px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px;
    box-sizing:border-box;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:13px;
    background:#fff;
}

.manufacturer-card-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.manufacturer-card-logo span{
    color:#111;
    font-size:25px;
    font-weight:900;
}

.manufacturer-card-title{
    min-width:0;
}

.manufacturer-card-title h2{
    margin:0 0 5px;
    overflow:hidden;
    color:#fff;
    font-size:18px;
    font-weight:900;
    line-height:1.15;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.manufacturer-card-title p{
    display:flex;
    align-items:center;
    gap:5px;
    margin:0;
    color:#888892;
    font-size:10px;
}

.manufacturer-card-title p i{
    color:#a855f7;
}


/* STATS */

.manufacturer-card-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
    margin:18px 0 10px;
}

.manufacturer-card-stats>div{
    padding:10px 11px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:9px;
    background:#111116;
}

.manufacturer-card-stats span,
.manufacturer-parent span{
    display:block;
    margin-bottom:3px;
    color:#6f6f79;
    font-size:8px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.manufacturer-card-stats strong{
    color:#dddde3;
    font-size:11px;
}


/* PARENT */

.manufacturer-parent{
    margin-bottom:13px;
}

.manufacturer-parent strong{
    color:#b6b6be;
    font-size:10px;
    font-weight:600;
}


/* BIO */

.manufacturer-card-bio{
    flex:1;
    padding-top:13px;
    border-top:1px solid rgba(255,255,255,.06);
}

.manufacturer-card-bio p{
    margin:0;
    color:#8e8e98;
    font-size:11px;
    line-height:1.65;
}


/* CARD FOOTER */

.manufacturer-card-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:17px;
    padding-top:13px;
    border-top:1px solid rgba(255,255,255,.06);
    color:#73737d;
    font-size:9px;
}

.manufacturer-card-footer>span:first-child{
    display:flex;
    align-items:center;
    gap:5px;
}

.manufacturer-card-footer i{
    color:#a855f7;
}

.manufacturer-coming-soon{
    color:#5f5f68;
}


/* EMPTY */

.manufacturers-empty{
    padding:70px 20px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:16px;
    background:#15151a;
    text-align:center;
}

.manufacturers-empty>i{
    margin-bottom:14px;
    color:#a855f7;
    font-size:30px;
}

.manufacturers-empty h2{
    margin:0 0 7px;
    color:#fff;
    font-size:18px;
}

.manufacturers-empty p{
    margin:0 0 15px;
    color:#81818b;
    font-size:12px;
}

.manufacturers-empty a{
    color:#a855f7;
    font-size:11px;
    text-decoration:none;
}/* =========================================
   MODELS DIRECTORY
========================================= */

.models-page{
    width:100%;
    min-height:100vh;
    background:#0b0b0e;
    color:#fff;
}


/* =========================================
   HERO
========================================= */

.models-hero{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:65px 0 40px;
    box-sizing:border-box;
    text-align:center;
}

.models-eyebrow{
    display:block;
    margin-bottom:8px;
    color:#a855f7;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.6px;
}

.models-hero h1{
    margin:0;
    color:#fff;
    font-size:44px;
    font-weight:900;
    line-height:1.1;
}

.models-hero>p{
    max-width:590px;
    margin:13px auto 25px;
    color:#85858f;
    font-size:13px;
    line-height:1.7;
}


/* =========================================
   FILTERS
========================================= */

.models-filters{
    width:100%;
    max-width:800px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.models-search{
    height:45px;
    position:relative;
    flex:1;
}

.models-search i{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#707079;
    font-size:11px;
}

.models-search input{
    width:100%;
    height:45px;
    padding:0 14px 0 37px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.09);
    border-radius:10px;
    background:#15151a;
    color:#fff;
    font-family:inherit;
    font-size:11px;
    outline:none;
}

.models-search input:focus{
    border-color:#a855f7;
}

.models-search input::placeholder{
    color:#65656f;
}

.models-manufacturer-filter{
    width:210px;
    height:45px;
    padding:0 12px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:10px;
    background:#15151a;
    color:#c3c3cb;
    font-family:inherit;
    font-size:10px;
    outline:none;
}

.models-manufacturer-filter:focus{
    border-color:#a855f7;
}

.models-filters>button{
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:0 18px;
    border:0;
    border-radius:10px;
    background:#a855f7;
    color:#fff;
    font-family:inherit;
    font-size:10px;
    font-weight:800;
    cursor:pointer;
}

.models-filter-clear{
    height:45px;
    display:flex;
    align-items:center;
    padding:0 10px;
    color:#85858f;
    font-size:9px;
    text-decoration:none;
}


/* =========================================
   CONTENT
========================================= */

.models-content{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding-bottom:75px;
}

.models-results-header{
    min-height:32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
    color:#73737d;
    font-size:10px;
}

.models-results-header strong{
    color:#fff;
    font-size:11px;
}


/* =========================================
   GRID
========================================= */

.models-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}


/* =========================================
   CARD
========================================= */

.model-directory-card{
    min-width:0;
    display:flex;
    flex-direction:column;
    padding:18px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.07);
    border-radius:15px;
    background:
        radial-gradient(
            circle at top right,
            rgba(168,85,247,.07),
            transparent 40%
        ),
        #15151a;
    transition:
        border-color .2s ease,
        transform .2s ease;
}

.model-directory-card:hover{
    transform:translateY(-3px);
    border-color:rgba(168,85,247,.3);
}


/* TOP */

.model-directory-top{
    display:flex;
    align-items:center;
    gap:12px;
    color:inherit;
    text-decoration:none;
}

.model-directory-logo{
    width:58px;
    height:58px;
    flex:0 0 58px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px;
    box-sizing:border-box;
    overflow:hidden;
    border-radius:12px;
    background:#fff;
}

.model-directory-logo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}

.model-directory-logo span{
    color:#111;
    font-size:22px;
    font-weight:900;
}

.model-directory-title{
    min-width:0;
}

.model-directory-title>span{
    display:block;
    margin-bottom:3px;
    overflow:hidden;
    color:#a855f7;
    font-size:8px;
    font-weight:800;
    letter-spacing:.6px;
    text-overflow:ellipsis;
    text-transform:uppercase;
    white-space:nowrap;
}

.model-directory-title h2{
    margin:0 0 5px;
    overflow:hidden;
    color:#fff;
    font-size:17px;
    font-weight:900;
    line-height:1.15;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.model-directory-title small{
    display:flex;
    align-items:center;
    gap:5px;
    color:#777781;
    font-size:9px;
}

.model-directory-title small i{
    color:#a855f7;
}


/* BIO */

.model-directory-bio{
    flex:1;
    margin-top:16px;
    padding-top:13px;
    border-top:1px solid rgba(255,255,255,.06);
}

.model-directory-bio p{
    margin:0;
    color:#898993;
    font-size:10.5px;
    line-height:1.7;
}


/* FOOTER */

.model-directory-footer{
    margin-top:15px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.06);
}

.model-directory-footer a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#a855f7;
    font-size:9px;
    font-weight:700;
    text-decoration:none;
}


/* =========================================
   PAGINATION
========================================= */

.models-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-top:30px;
}

.models-pagination a{
    min-width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 8px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.08);
    border-radius:8px;
    background:#15151a;
    color:#92929c;
    font-size:10px;
    text-decoration:none;
}

.models-pagination a.active{
    border-color:#a855f7;
    background:#a855f7;
    color:#fff;
}


/* =========================================
   EMPTY
========================================= */

.models-empty{
    padding:65px 20px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:15px;
    background:#15151a;
    text-align:center;
}

.models-empty i{
    margin-bottom:13px;
    color:#a855f7;
    font-size:28px;
}

.models-empty h2{
    margin:0 0 7px;
    color:#fff;
    font-size:18px;
}

.models-empty p{
    margin:0 0 14px;
    color:#7f7f89;
    font-size:11px;
}

.models-empty a{
    color:#a855f7;
    font-size:10px;
    text-decoration:none;
}/* =========================================================
   SPECIFIC MODEL PAGE
   /manufacturers/chevrolet/camaro
========================================================= */

.model-page{
    width:100%;
    min-height:100vh;
    background:#0b0b0e;
    color:#fff;
}


/* =========================================================
   HERO
========================================================= */

.model-hero{
    width:100%;
    position:relative;
    overflow:hidden;
    border-bottom:1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(93,27,130,.32),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(168,85,247,.08),
            transparent 30%
        ),
        #0d0d11;
}

.model-hero-glow{
    width:420px;
    height:300px;
    position:absolute;
    left:7%;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:#a855f7;
    opacity:.08;
    filter:blur(140px);
    pointer-events:none;
}

.model-hero-inner{
    width:90%;
    max-width:1200px;
    min-height:270px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:30px;
    position:relative;
    z-index:2;
}


/* =========================================================
   MANUFACTURER LOGO
========================================================= */

.model-brand-logo{
    width:120px;
    height:120px;
    flex:0 0 120px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:17px;
    box-sizing:border-box;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    background:#fff;
    box-shadow:
        0 15px 40px rgba(0,0,0,.28);
}

.model-brand-logo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}

.model-brand-logo span{
    color:#111;
    font-size:45px;
    font-weight:900;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.model-hero-content{
    min-width:0;
}

.model-manufacturer-link{
    display:inline-flex;
    align-items:center;
    margin-bottom:7px;
    color:#a855f7;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.3px;
    text-decoration:none;
    text-transform:uppercase;
    transition:color .2s ease;
}

.model-manufacturer-link:hover{
    color:#c084fc;
}

.model-hero-content h1{
    margin:0 0 17px;
    color:#fff;
    font-size:50px;
    font-weight:900;
    line-height:1;
    letter-spacing:-1.5px;
}

.model-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.model-meta span{
    min-height:29px;
    display:flex;
    align-items:center;
    gap:7px;
    padding:0 11px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.07);
    border-radius:7px;
    background:rgba(255,255,255,.025);
    color:#8e8e99;
    font-size:9px;
    font-weight:600;
}

.model-meta i{
    color:#a855f7;
    font-size:9px;
}


/* =========================================================
   MAIN MODEL CONTENT
========================================================= */

.model-content{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:65px 0 70px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    align-items:start;
    gap:60px;
    box-sizing:border-box;
}

.model-main-column{
    min-width:0;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.model-section-heading{
    margin-bottom:25px;
}

.model-section-heading>span{
    display:block;
    margin-bottom:7px;
    color:#a855f7;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.model-section-heading h2{
    margin:0;
    color:#fff;
    font-size:28px;
    font-weight:900;
    line-height:1.2;
    letter-spacing:-.4px;
}


/* =========================================================
   MODEL BIO
========================================================= */

.model-bio{
    width:100%;
}

.model-bio p{
    margin:0 0 21px;
    color:#9898a2;
    font-size:13px;
    font-weight:400;
    line-height:1.85;
}

.model-bio p:last-child{
    margin-bottom:0;
}


/* =========================================================
   MODEL INFORMATION CARD
========================================================= */

.model-info-card{
    width:100%;
    height:max-content;
    position:sticky;
    top:25px;
    padding:20px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.07);
    border-radius:15px;
    background:
        radial-gradient(
            circle at top right,
            rgba(168,85,247,.06),
            transparent 40%
        ),
        #15151a;
}

.model-info-title{
    display:block;
    margin-bottom:4px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#fff;
    font-size:12px;
    font-weight:800;
}

.model-info-row{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:7px 0;
    box-sizing:border-box;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.model-info-row:last-child{
    border-bottom:0;
}

.model-info-row>span{
    color:#70707a;
    font-size:8px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.model-info-row strong,
.model-info-row a{
    max-width:55%;
    color:#c7c7ce;
    font-size:10px;
    font-weight:700;
    line-height:1.4;
    text-align:right;
    text-decoration:none;
}

.model-info-row a{
    color:#a855f7;
}

.model-info-row a:hover{
    color:#c084fc;
}


/* =========================================================
   COMMUNITY BUILDS
========================================================= */

.model-builds{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:0 0 75px;
    box-sizing:border-box;
}

.model-builds-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
}

.model-builds-header>div>span{
    display:block;
    margin-bottom:6px;
    color:#a855f7;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.model-builds-header h2{
    margin:0;
    color:#fff;
    font-size:28px;
    font-weight:900;
    line-height:1.2;
}


/* =========================================================
   BUILD GRID
========================================================= */

.model-build-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}


/* =========================================================
   BUILD CARD
========================================================= */

.model-build-card{
    min-width:0;
    display:block;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.07);
    border-radius:15px;
    background:#15151a;
    color:inherit;
    text-decoration:none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.model-build-card:hover{
    transform:translateY(-3px);
    border-color:rgba(168,85,247,.30);
    box-shadow:
        0 14px 35px rgba(0,0,0,.20);
}

.model-build-photo{
    width:100%;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#101014;
}

.model-build-photo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .35s ease;
}

.model-build-card:hover .model-build-photo img{
    transform:scale(1.035);
}

.model-build-info{
    padding:14px;
}

.model-build-nickname{
    display:block;
    margin-bottom:5px;
    overflow:hidden;
    color:#a855f7;
    font-size:8px;
    font-weight:800;
    letter-spacing:.4px;
    text-overflow:ellipsis;
    text-transform:uppercase;
    white-space:nowrap;
}

.model-build-info h3{
    margin:0 0 6px;
    overflow:hidden;
    color:#fff;
    font-size:13px;
    font-weight:800;
    line-height:1.3;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.model-build-info p{
    margin:0;
    overflow:hidden;
    color:#777781;
    font-size:9px;
    text-overflow:ellipsis;
    white-space:nowrap;
}


/* =========================================================
   NO BUILDS YET
========================================================= */

.model-no-builds{
    width:100%;
    padding:55px 25px;
    box-sizing:border-box;
    border:1px solid rgba(255,255,255,.07);
    border-radius:15px;
    background:
        radial-gradient(
            circle at center,
            rgba(168,85,247,.06),
            transparent 40%
        ),
        #15151a;
    text-align:center;
}

.model-no-builds>i{
    margin-bottom:15px;
    color:#a855f7;
    font-size:30px;
}

.model-no-builds h3{
    margin:0 0 7px;
    color:#fff;
    font-size:17px;
    font-weight:900;
}

.model-no-builds p{
    max-width:500px;
    margin:0 auto 17px;
    color:#81818b;
    font-size:11px;
    line-height:1.6;
}

.model-no-builds a{
    min-height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 16px;
    border-radius:8px;
    background:#a855f7;
    color:#fff;
    font-size:9px;
    font-weight:800;
    text-decoration:none;
    transition:
        transform .2s ease,
        background .2s ease;
}

.model-no-builds a:hover{
    transform:translateY(-1px);
    background:#9333ea;
}


/* =========================================================
   RELATED MODELS
========================================================= */

.related-models{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    padding:0 0 85px;
    box-sizing:border-box;
}

.related-model-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.related-model-card{
    min-width:0;
    min-height:90px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:16px 42px 16px 17px;
    box-sizing:border-box;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.07);
    border-radius:12px;
    background:
        radial-gradient(
            circle at top right,
            rgba(168,85,247,.055),
            transparent 45%
        ),
        #15151a;
    text-decoration:none;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.related-model-card:hover{
    transform:translateY(-2px);
    border-color:rgba(168,85,247,.3);
}

.related-model-card>span{
    display:block;
    margin-bottom:4px;
    overflow:hidden;
    color:#777781;
    font-size:8px;
    font-weight:700;
    letter-spacing:.5px;
    text-overflow:ellipsis;
    text-transform:uppercase;
    white-space:nowrap;
}

.related-model-card strong{
    display:block;
    overflow:hidden;
    color:#fff;
    font-size:14px;
    font-weight:800;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.related-model-card small{
    display:block;
    margin-top:6px;
    color:#777781;
    font-size:8.5px;
}

.related-model-card>i{
    position:absolute;
    right:17px;
    top:50%;
    transform:translateY(-50%);
    color:#a855f7;
    font-size:10px;
    transition:transform .2s ease;
}

.related-model-card:hover>i{
    transform:
        translateY(-50%)
        translateX(3px);
}