:root{
    --primary:#FFB001;
    --secondary:#F36D26;
    --background-dark:#000000;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    background:#000;
    color:white;
    font-family:'Oswald',sans-serif;
}
nav{
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 100px;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 176, 1, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
}
nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 176, 1, 0.1) 25%,
        rgba(243, 109, 38, 0.1) 75%,
        transparent 100%);
    pointer-events: none;
    z-index: -1;
}
nav::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 25%,
        var(--secondary) 75%,
        transparent 100%);
    z-index: 1;
}
nav .logo {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
nav .logo:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
}
nav .logo img{
    height: 5rem;
    max-height: 5rem;
    filter: drop-shadow(0 8px 16px rgba(255, 176, 1, 0.3));
    transition: all 0.3s ease;
}
nav .logo:hover img {
    filter: drop-shadow(0 12px 24px rgba(255, 176, 1, 0.5));
    transform: scale(1.05);
}
nav .nav-items{
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 0 0 40px;
}
nav .nav-items li{
    list-style: none;
    padding: 0 35px;
}
nav .nav-items li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}
nav .nav-items li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 176, 1, 0.1),
        rgba(243, 109, 38, 0.1));
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}
nav .nav-items li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    border-radius: 1px;
}
nav .nav-items li a:hover{
    color: var(--primary);
    transform: perspective(1000px) rotateX(-5deg) translateY(-2px);
    text-shadow: 0 4px 8px rgba(255, 176, 1, 0.3);
}
nav .nav-items li a:hover::before {
    opacity: 1;
    transform: scale(1.05);
}
nav .nav-items li a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 176, 1, 0.5);
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
    width: 40px;
    text-align: center;
    margin: 0 50px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: none;
    position: relative;
    z-index: 2;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
nav .menu-icon:hover,
nav .cancel-icon:hover,
nav .search-icon:hover {
    color: var(--primary);
    transform: perspective(1000px) rotateX(-5deg) translateY(-2px);
    background: rgba(255, 176, 1, 0.1);
    box-shadow: 0 4px 12px rgba(255, 176, 1, 0.3);
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
    display: none;
}
@media (min-width: 1141px) {
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0 20px;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
  }
  
  nav .logo{
    flex: 0;
    text-align: left;
  }
  
  nav .logo img{
    height: 50px;
  }
  
  nav .nav-items{
    position: fixed;
    z-index: 999;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  nav .nav-items.active{
    transform: translateX(0);
  }
  
  nav .nav-items li{
    margin: 1rem 0;
    list-style: none;
  }
  
  nav .nav-items li a{
    font-size: 1.8rem;
    padding: 1rem 2rem;
    display: block;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  nav .nav-items li a:hover{
    background: rgba(255, 176, 1, 0.1);
    color: #FFB001;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding-top: 10px;
  }
  
  nav .menu-icon{
    display: flex !important;
    position: relative;
    z-index: 1001;
    margin: 0 0 0 auto;
    top: auto;
    right: auto;
    left: auto;
  }

  nav .menu-icon span{
    display: block !important;
  }

  nav .menu-icon span.hide{
    display: none !important;
  }

  nav .cancel-icon.show{
    display: flex !important;
    position: relative;
    z-index: 1001;
    margin: 0 0 0 10px;
  }

  .page {
    padding-top: 90px;
  }

  nav .cancel-icon span{
    display: block !important;
  }
}
/* HERO */
.hero{
    width:100%;
    max-width:none;
    margin:0 auto;
    padding:0 0 10px 0;
}
/* STATS BANNER */
.stats-banner-inline{
    background:linear-gradient(90deg, rgba(0,0,0,0.95), rgba(26,26,26,0.8));
    padding:15px 0;
    border-top:2px solid var(--primary);
    border-bottom:2px solid var(--primary);
    position:relative;
    overflow:hidden;
}
.stats-banner-inline::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity:0.5;
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    padding: 0 2rem;
}
.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 176, 1, 0.3);
}
.divider-text {
    padding: 0 2rem;
    font-size: 2.5rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}
.zones .divider-text {
    color: #ffffff;
}
.stats-container{
    width:min(1600px,90%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:40px;
    text-align:center;
    position:relative;
    z-index:1;
}
.stat-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:10px;
    border-radius:8px;
    transition:all 0.3s ease;
    position:relative;
}
.stat-item::before{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:2px;
    background:var(--primary);
    transition:width 0.3s ease;
}
.stat-item:hover{
    background:rgba(255,176,1,0.05);
    transform:translateY(-3px);
}
.stat-item:hover::before{
    width:60%;
}
.stat-item .number{
    font-size:2.2rem;
    font-weight:700;
    color:var(--primary);
    margin-bottom:6px;
    letter-spacing:1px;
}
.stat-item .label{
    font-size:0.75rem;
    color:#999;
    letter-spacing:1.5px;
    text-transform:uppercase;
    font-weight:600;
}
.hero-render{
    width:100%;
    height:60vh;
    object-fit:cover;
    object-position:center center;
    display:block;
}
.hero-text{
    text-align:center;
    max-width:1000px;
    margin:40px auto 0;
}
.tag{
    color:var(--primary);
    font-size:1.4rem;
    letter-spacing:2px;
}
.hero h1{
    margin-top:20px;
    font-size:7rem;
    line-height:1;
}
.gradient{
    display:block;
    background:linear-gradient(
        180deg,
        #ffcb58,
        #FFB001,
        #F36D26);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hero p{
    margin-top:30px;
    color:#d0d0d0;
    font-size:1.8rem;
}
/* AREE */
.zones{
    width:min(1600px,90%);
    margin:auto;
    margin-top:0;
    padding:0 0 80px;
    background:#000;
    position:relative;
    z-index:2;
}
.zones h2{
    text-align:center;
    font-size:4rem;
}
.cards{
    margin-top:50px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.card{
    background:linear-gradient(135deg, rgba(30,30,30,0.8), rgba(26,26,26,0.6));
    border:1px solid rgba(255,176,1,0.2);
    border-radius:16px;
    padding:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:all 0.3s ease;
}
.card:hover{
    border-color:rgba(255,176,1,0.5);
    background:linear-gradient(135deg, rgba(30,30,30,0.9), rgba(26,26,26,0.7));
}
.card-number{
    font-size:3.5rem;
    font-weight:700;
    padding:30px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(
        180deg,
        #ffcb58,
        #FFB001,
        #F36D26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border-bottom:2px solid rgba(255,176,1,0.2);
}
.card-content{
    display:flex;
    flex-direction:column;
    flex:1;
    gap:0;
}
.card-text{
    flex:1;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.card-text-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
}
.card-text-header h3{
    font-size:1.8rem;
    margin:0;
    color:white;
    flex:1;
}
.card-toggle{
    display:none;
    border:none;
    background:transparent;
    color:var(--primary);
    cursor:pointer;
    padding:0;
    margin:0;
    align-self:flex-end;
}
.card-toggle svg{
    transition:transform 0.3s ease;
}
.card-body{
    display:block;
}
.card.expanded .card-toggle svg{
    transform:rotate(180deg);
}
.card-partner{
    color:var(--primary);
    font-size:0.85rem;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;
    margin:0 0 12px 0;
}
.card-description{
    color:#aaa;
    font-size:1rem;
    line-height:1.5;
    margin:0 0 15px 0;
}
.card-btn{
    align-self:center;
    background:transparent;
    border:2px solid var(--primary);
    color:var(--primary);
    padding:10px 24px;
    font-size:0.8rem;
    font-weight:600;
    letter-spacing:1px;
    cursor:pointer;
    border-radius:4px;
    transition:all 0.3s ease;
    text-transform:uppercase;
    font-family:'Oswald',sans-serif;
    text-decoration:none;
}
.card-btn:hover{
    background:var(--primary);
    color:#000;
}
.card-image{
    width:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.card-toggle{
    display:none;
    border:none;
    background:transparent;
    color:var(--primary);
    cursor:pointer;
    padding:0;
    margin:0;
    align-self:flex-end;
}

.card-toggle svg{
    transition:transform 0.3s ease;
}

.card-body{
    display:block;
}

.card.expanded .card-toggle svg{
    transform:rotate(180deg);
}
/* VIEWER */
.viewer-section{
    width:min(1600px,94%);
    max-width:1200px;
    margin:0 auto;
    padding:36px 0 18px;
}
.viewer-section h2{
    text-align:center;
    font-size:clamp(2.8rem, 5vw, 4rem);
    margin:0 auto 14px;
    max-width:720px;
    line-height:1.05;
}
.model-shell {
    width:100%;
    margin:0 auto;
    max-width:1200px;
    border-radius:24px;
    padding:12px;
    background:rgba(255,153,0,0.04);
    border:1px solid rgba(255,153,0,0.18);
    box-shadow: inset 0 0 0 1px rgba(255,153,0,0.04), 0 16px 40px rgba(0,0,0,0.18);
}

.viewer-container{
    width:100%;
    margin:0 auto;
    height:62vh;
    min-height:420px;
    max-height:760px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 28px 100px rgba(0,0,0,0.32);
    background:#090909;
}
.viewer-container model-viewer{
    width:100%;
    height:100%;
    display:block;
}
.viewer-loader{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.65);
    z-index:2;
    transition:opacity 0.3s ease;
}
.viewer-loader.loaded{
    opacity:0;
}
.viewer-loader-box{
    width:min(500px,90%);
    padding:24px 28px;
    border:1px solid rgba(255,255,255,0.18);
    border-radius:18px;
    background:rgba(0,0,0,0.75);
    text-align:center;
}
.viewer-loader-text{
    font-size:1.2rem;
    margin-bottom:16px;
    color:#fff;
}
.viewer-loader-track{
    width:100%;
    height:14px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    overflow:hidden;
}
.viewer-loader-fill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg, #FFB001, #F36D26);
    transition:width 0.2s ease;
}
/* HOTSPOTS */
.hotspot{
    position:absolute;
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary);
    border:2px solid rgba(255,255,255,0.3);
    cursor:pointer;
    font-size:18px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s ease;
    box-shadow:0 0 14px rgba(255,176,1,0.4);
}
.hotspot:hover{
    background:var(--secondary);
    transform:scale(1.1);
    box-shadow:0 0 30px rgba(243,109,38,0.7);
}
.hotspot::after{
    content:'ℹ';
}
/* HOTSPOT MODAL */
.hotspot-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.hotspot-modal-content{
    background:#111;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:40px;
    max-width:600px;
    width:90%;
    position:relative;
    animation:slideIn 0.3s ease;
}
@keyframes slideIn{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hotspot-modal-close{
    position:absolute;
    top:20px;
    right:20px;
    background:none;
    border:none;
    font-size:2rem;
    color:var(--primary);
    cursor:pointer;
    transition:color 0.2s ease;
}
.hotspot-modal-close:hover{
    color:var(--secondary);
}
.hotspot-modal-content h3{
    color:var(--primary);
    font-size:2rem;
    margin-bottom:15px;
}
.hotspot-modal-content p{
    color:#ccc;
    font-size:1.1rem;
    line-height:1.6;
}
.hotspot-modal-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:24px;
    padding:14px 28px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--primary), var(--secondary));
    color:#000;
    font-size:0.95rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    text-decoration:none;
    transition:transform 0.2s ease, opacity 0.2s ease;
}
.hotspot-modal-btn:hover{
    transform:translateY(-2px);
    opacity:0.95;
}
/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
        line-height: 1.05;
        margin-top: 20px;
    }

    .hero-text {
        max-width: 92%;
        margin: 1.75rem auto 0;
        padding: 0 0.75rem;
    }

    .hero p {
        font-size: 1.25rem;
        line-height: 1.8;
        margin-top: 20px;
    }

    .hero-render {
        height: 34vh;
        max-height: 320px;
        border-radius: 24px;
    }

    .stats-banner-inline {
        width: min(96%, 1200px);
        margin: 0 auto;
        padding: 12px 0;
        overflow: hidden;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
    }

    .stats-container::-webkit-scrollbar {
        display: none;
    }

    .stat-item {
        min-width: 0;
        flex: none;
        scroll-snap-align: none;
    }

    .viewer-section {
        padding: 2.2rem 0 1rem;
    }

    .hotspot {
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-width: 1.5px;
    }

    .viewer-section h2,
    .zones h2 {
        font-size: 3rem;
    }

    .viewer-container {
        height: 48vh;
        min-height: 320px;
        border-radius: 24px;
    }

    .zones {
        padding: 0 0 60px;
    }

    .section-divider {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .divider-text {
        font-size: 2.1rem;
        padding: 0 1rem;
    }

    .cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 30px;
    }

    .card {
        border-radius: 22px;
        border: 1px solid rgba(255, 176, 1, 0.16);
        background: rgba(10, 10, 10, 0.94);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
        transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .card:hover {
        transform: translateY(-2px);
    }

    .card-number {
        font-size: 2.4rem;
        padding: 22px 18px 18px;
        margin-bottom: 0;
    }

    .card-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin: 0 18px 0 auto;
        border-radius: 50%;
        background: rgba(255, 176, 1, 0.14);
        color: var(--primary);
        border: 1px solid rgba(255, 176, 1, 0.25);
        transition: transform 0.25s ease, background 0.25s ease;
    }

    .card-toggle:hover {
        transform: scale(1.05);
        background: rgba(255, 176, 1, 0.2);
    }

    .card-toggle svg {
        width: 20px;
        height: 20px;
    }

    .card-body {
        display: none;
    }

    .card.expanded {
        border-color: rgba(255, 176, 1, 0.4);
        background: rgba(15, 15, 15, 0.98);
    }

    .card.expanded .card-body {
        display: block;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 176, 1, 0.18);
    }

    .card.expanded .card-toggle svg {
        transform: rotate(180deg);
    }

    .card-text {
        padding: 24px 20px 22px;
    }

    .card-description {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .card-btn {
        min-width: 100%;
    }

    .card-image {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 3.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .hero-render {
        height: 30vh;
        max-height: 300px;
    }

    .viewer-section h2 {
        font-size: 2.6rem;
    }

    .divider-text {
        font-size: 1.95rem;
    }

    .card-number {
        font-size: 2.2rem;
    }

    .card-text {
        padding: 22px 18px 20px;
    }

    .card-image {
        min-height: 200px;
    }

    .card-btn {
        padding: 14px 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-render {
        height: 28vh;
        max-height: 280px;
    }

    .viewer-container {
        height: 42vh;
    }

    .divider-text {
        font-size: 1.8rem;
    }

    .card-number {
        font-size: 1.9rem;
    }

    .card-text {
        padding: 20px 16px 20px;
    }

    .card-image {
        min-height: 180px;
    }

    .card-btn {
        padding: 13px 20px;
    }

    nav .nav-items li a {
        padding: 0.95rem 1rem;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-render {
        height: 26vh;
    }

    .divider-text {
        font-size: 1.7rem;
    }

    .card-number {
        font-size: 1.75rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .card-image {
        min-height: 170px;
    }
}

@media (max-width: 390px) {
    body {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .viewer-container {
        height: 40vh;
    }

    .card-number {
        font-size: 1.6rem;
    }

    .card-btn {
        padding: 12px 18px;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .card-text {
        padding: 18px 16px 18px;
    }

    .card-image {
        min-height: 160px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .divider-text {
        font-size: 1.6rem;
    }

    .card-number {
        font-size: 1.55rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }

    nav {
        padding: 0 0.75rem;
    }

    .hero-text {
        padding: 0 0.75rem;
    }

    .stats-container {
        gap: 10px;
    }

    .card-text {
        padding: 16px 14px 16px;
    }

    .card-btn {
        padding: 12px 16px;
    }

    .footer-content {
        padding: 0 0.75rem;
    }
}
/* Custom scrollbar - global */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 176, 1, 0.6) rgba(255, 255, 255, 0.06);
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255,176,1,0.85), rgba(243,109,38,0.85));
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.4);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255,196,77,0.95), rgba(247,134,86,0.95));
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 1.8rem 0 0.6rem;
    border-top: 1px solid rgba(255, 176, 1, 0.2);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFB001, #F36D26, transparent);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.footer-links {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.45rem;
}
.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    line-height: 1;
}
.footer-link:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}
.footer-text {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.2;
}
.footer-text p {
    margin: 0;
}
/* Made with En3mx */
.made-with {
    display: flex;
    align-items: center;
}
