:root{
    --background-color:#000000;
    --primary-color:#ffffff;
    --secondary-color:#131313;
    --button-color:#ffee02;
    --font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",
}

*{box-sizing: border-box;}

body{
    margin:0;
    font-family:var(--font-family);
    color:var(--primary-color);
    background:#1a1a1a url('https://res.cloudinary.com/dnpmuuz3s/image/upload/v1759314588/1af48f96-b9c0-4faa-9dd5-cb6b5dd599ea_fblmlh.jpg') center/cover fixed no-repeat;
}
.top-bar{
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  width: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}


.top-bar .title{
    font-size: 16px;
    font-weight: 700;
}

html, body {
  overflow: visible;   
}


.menu-toggle{
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
.menu-icon-box{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #474747;
    border-radius: 10px;
    cursor: pointer;
}

.menu-icon{
    display: flex;
    flex-direction: column;
    gap:6px;
}
.menu-icon .bar{
    height: 5px;
    width: 35px;
    background: #e45353;
    border-radius: 25px;
}
#menu-toggle:checked~.sidebar{transform: translateX(0)}
.sidebar{
    height: 100%;
    width:250px;
    position: fixed;
    top:0;
    left: 0;
    z-index: 1100;
    background-color: #111;
    padding-top: 60px;
    transform: translateX(-250px);
    transition: transform .3s ease;
    border-right: 2px solid #e45353;
}

.sidebar a,.sidebar .close-btn{display:block;text-decoration:none;transition:.3s}
.sidebar a{
    padding: 14px 8px 14px 32px;
    font-size: 1rem;
    color: #818181;
}

.sidebar a:hover{
    color: #f1f1f1;
    background-color: #222;
}

.sidebar .close-btn{
    position: absolute;
    top:8px;
    right: 16px;
    font-size: 36px;
    color: #e45353;
    cursor: pointer;
    line-height: 1
}

.sidebar hr{
    border: 0;
    border-top: 1px solid #333;
    margin: 10px 0;
}

.img-wrap{
  position: relative;
  width: calc(100% - 24px);
  max-width: 1024px;
  margin: 12px auto 0;
  background: #000;
  border-radius: 12px;
  overflow: hidden;           
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.img-wrap .mainimg img{
  display: block;
  width: 100%;
  height: auto;                    
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.main-container,
.img-wrap {
  overflow: visible;
}


.main-container{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    width: 100%;
    height: auto;
    border-radius: 30px;
    opacity: 0.70;
    padding: 20px;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
}
.main-container h1{
    margin:0;
    font-size: 2rem;
    line-height: 1.2;
    color: #ffffff;
}
.main-container p{
    margin:0;
    opacity: .9;
    font-size: 1rem;
    color: #fff4f4;
}
.main-container h2{
    margin:0;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #fffdfd;
    margin-top: 20px;
}
.main-container .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e45353;
    color: #fff;
    padding: .5rem .85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    width: max-content;
    margin-top: 20px;
    transition: transform .2s ease,background .3s ease;
}
 .btn:hover{
    background: #f1f1f1;
    color: #000000;
    transform: scale(1.1);
 }