

body{
margin:0;
background:#000;
font-family:Arial,sans-serif;
display:flex;
color:white;
}
.logo-container{
text-align:center;
padding-top:20px;
margin-bottom:30px;
}

.logo{
width:120px;
height:auto;
display:block;
margin:auto;
margin-bottom:10px;
}

.site-title{
margin-top:10px;
font-size:clamp(30px,5vw,50px);
color:white;
}

.site-tagline{
color:#ccc;
font-size:18px;
}

/* Menu Button */
.main{
width:100%;
max-width:100%;
padding:20px;
box-sizing:border-box;
}

.container{
width:100%;
max-width:100%;
margin:0 auto;
box-sizing:border-box;
}

.menu-btn{
position:fixed;
top:15px;
left:15px;
padding:12px 18px;
background:#8b5cf6;
color:white;
border:none;
border-radius:10px;
font-size:18px;
font-weight:bold;
cursor:pointer;
z-index:1100;
box-shadow:0 0 15px rgba(139,92,246,.5);
}

.menu-btn:hover{
background:#7c3aed;
}

/* Sidebar */

.sidebar{
position:fixed;
top:0;
left:-280px;
width:260px;
height:100vh;
background:#050816;
padding:20px;
overflow-y:auto;
transition:0.4s ease;
z-index:1000;
border-right:2px solid #00ff66;
}

.sidebar.active{
left:0;
}

/* Close Button */

.close-btn{
width:100%;
padding:12px;
background:#ef4444;
color:white;
border:none;
border-radius:10px;
font-size:16px;
font-weight:bold;
cursor:pointer;
margin-bottom:20px;
}

.close-btn:hover{
background:#dc2626;
}

/* Menu Links */

.menu{
display:block;
padding:15px;
margin:10px 0;
background:#111827;
color:white;
text-decoration:none;
border-radius:12px;
font-size:18px;
font-weight:bold;
transition:0.3s;
border:1px solid #00ff66;
}

.menu:hover{
background:#00ff66;
color:black;
transform:translateX(5px);
}

/* Overlay */

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
z-index:999;
}

.overlay.active{
display:block;
}

/* Mobile */

@media(max-width:768px){

.sidebar{
width:250px;
}

.menu{
font-size:16px;
padding:12px;
}

.menu-btn{
font-size:16px;
padding:10px 15px;
}

}

.main{
width:100%;
max-width:100%;
padding:20px;
box-sizing:border-box;
}
.topbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.quote-card,
.puzzle-card{
background:linear-gradient(135deg,#1e293b,#7c3aed);
padding:30px;
border-radius:25px;
margin:20px 0;
text-align:center;
}

.cards{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
padding:30px;
border-radius:20px;
background:linear-gradient(
135deg,
#06b6d4,
#8b5cf6
);
text-align:center;
font-size:22px;
font-weight:bold;
}

html,body{
margin:0;
padding:0;
min-height:100vh;
width:100%;
overflow-x:hidden;
background:black;
color:white;
}

body{
display:flex;
flex-direction:column;
}

.main{
flex:1;
}

.footer{
width:100%;
text-align:center;
padding:25px;
background:#111827;
color:white;
margin-top:50px;
border-top:2px solid #00ff66;
clear:both;
}

.footer h3{
color:gold;
margin-bottom:10px;
}

