*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    body{
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
    }
    
    /* DIM BACKGROUND EFFECT (no images) */
    body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%, rgba(250,129,18,0.08), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.03), transparent 40%);
    z-index:-1;
    }
    
    /* ================= NAVBAR ================= */
    
    .header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 70px;
    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(20px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.08);
    }
    
    .logo-text{
    display:flex;
    flex-direction:column;
    }
    
    .logo-main{
    font-size:20px;
    font-weight:700;
    color:#FA8112;
    }
    
    .logo-sub{
    font-size:12px;
    color:#aaa;
    }

    .logo-container,
.logo-container:visited,
.logo-container:hover{
    text-decoration: none;
}
    
    .navbar{
    display:flex;
    gap:30px;
    }
    
    .navbar a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    position:relative;
    transition:0.3s;
    }
    
    .navbar a:hover,
    .navbar a.active{
    color:#FA8112;
    }
    
    /* HAMBURGER */
    .menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    }
    
    .menu-toggle span{
    width:25px;
    height:2px;
    background:#fff;
    }

    .back-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:8px;
    
        padding:12px 24px;
    
        background:transparent;
    
        border:2px solid #FA8112;
    
        color:#FA8112;
    
        text-decoration:none;
    
        font-size:15px;
    
        font-weight:600;
    
        border-radius:50px;
    
        transition:all .35s ease;
    }
    
    .back-btn:hover{
        background:#FA8112;
        color:#fff;
        transform:translateY(-3px);
        box-shadow:0 10px 25px rgba(250,129,18,.35);
    }
    
    .back-btn:active{
        transform:translateY(0);
    } 
    
    
    /* ================= PAGE HEADER ================= */
    
    .page-header{
    text-align:center;
    padding:130px 20px 40px;
    }
    
    .page-header h1{
    font-size:48px;
    color:#FA8112;
    }
    
    .page-header p{
    color:#aaa;
    margin-top:10px;
    }
    
    /* ================= MENU GRID ================= */
    
    .menu-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:40px;
    }
    
    .category{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:25px;
    backdrop-filter:blur(15px);
    }
    
    .category h2{
    color:#FA8112;
    margin-bottom:20px;
    border-bottom:1px solid rgba(250,129,18,0.3);
    padding-bottom:10px;
    }
    
    .item{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px dashed rgba(255,255,255,0.1);
    }
    
    .item:last-child{
    border-bottom:none;
    }
    
    .item span:last-child{
    color:#FA8112;
    font-weight:600;
    }
    
    /* ================= MOBILE ================= */
    
    @media(max-width:768px){
    
    .header{
    padding:0 20px;
    }
    
    .navbar{
    position:fixed;
    top:80px;
    right:-100%;
    width:250px;
    height:100vh;
    background:rgba(0,0,0,0.95);
    flex-direction:column;
    padding:40px;
    transition:0.4s;
    }
    
    .navbar.active{
    right:0;
    }
    
    .menu-toggle{
    display:flex;
    }
    
    .page-header h1{
    font-size:34px;
    }
    
    .menu-grid{
    padding:20px;
    grid-template-columns:1fr;
    }
    
    }

    /*Footer*/
    /* Footer Styles */
    .footer {
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 20px;
        margin-top: 80px;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        line-height: 1.8;
    }
    
    .footer-copyright a {
        color: #FA8112;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .footer-copyright a:hover {
        color: #ff9b3d;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #fff;
    }