/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'VT323', monospace;
    min-height:100vh;
    color:white;

    overflow-x:hidden;
    overflow-y:auto;

    background:
    radial-gradient(circle at top,
    #6b41d8 0%,
    #4a248d 35%,
    #281250 70%,
    #140826 100%);
}

/* STARS */

body::before{
    content:"";

    position:fixed;
    inset:0;

    background-image:
    radial-gradient(white 1px, transparent 1px);

    background-size:80px 80px;

    opacity:.15;

    pointer-events:none;
    z-index:-1;
}

/* ===== LAYOUT ===== */

.container{
    display:flex;
    min-height:100vh;
}

/* ===== SIDEBAR ===== */

.sidebar{
    width:190px;

    padding:25px 18px;

    border-right:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

    backdrop-filter:blur(10px);
}

.logo h1{
    font-size:2.8rem;
    line-height:.9;

    margin-bottom:35px;
}

/* ===== NAV ===== */

.sidebar nav{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sidebar nav a{
    text-decoration:none;
    color:white;

    padding:14px 16px;

    border-radius:16px;

    font-size:1.15rem;

    transition:.3s;
}

.sidebar nav a:hover{
    background:rgba(255,255,255,.08);
}

.sidebar nav .active{
    background:
    linear-gradient(
    135deg,
    #ff7ef7,
    #b44cff
    );

    box-shadow:
    0 0 25px rgba(255,120,255,.35);
}

/* ===== SIDEBAR CARD ===== */

.sidebar-card{
    margin-top:30px;

    padding:18px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;
}

.sidebar-card p{
    font-size:1.1rem;
    line-height:1.4;
}

.cat{
    font-size:2.5rem;
    margin-top:10px;
}

/* ===== SIGN IN ===== */

.signin-btn{
    margin-top:20px;

    width:100%;

    border:none;

    border-radius:16px;

    padding:14px;

    cursor:pointer;

    background:
    linear-gradient(
    135deg,
    #ff89f8,
    #bb53ff
    );

    color:white;

    font-size:1rem;

    font-family:'VT323', monospace;
}

/* ===== MAIN ===== */

.main-content{
    flex:1;
    padding:20px 30px;
}

/* ===== HEADER ===== */

header{
    position:relative;

    text-align:center;

    margin-bottom:20px;
}

.title-section h1{
    font-size:3.2rem;
}

.title-section p{
    font-size:1.1rem;
    color:#f0b4ff;
}

.account-btn{
    position:absolute;

    right:0;
    top:5px;

    border:none;

    padding:10px 16px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:1rem;

    cursor:pointer;

    font-family:'VT323', monospace;
}

/* ===== SEARCH ===== */

.search-section{
    display:flex;
    justify-content:center;

    margin-bottom:25px;
}

.search-section input{
    width:85%;

    padding:14px 20px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    color:white;

    font-size:1.4rem;

    outline:none;
}

.search-section input::placeholder{
    color:#d6b9ff;
}

/* ===== GRID ===== */

.room-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:22px;
}

/* ===== ROOM CARD ===== */

.room-card{
    overflow:hidden;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.1);

    transition:.3s;
}

.room-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 0 25px rgba(255,120,255,.3);
}

.room-card img{
    width:100%;
    height:180px;

    object-fit:cover;

    display:block;
}

.card-content{
    padding:14px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.card-content h3{
    font-size:1.7rem;
}

.card-content p{
    font-size:1rem;
    color:#d5c4ff;
}

.card-content button{
    border:none;

    border-radius:12px;

    padding:10px 18px;

    background:
    linear-gradient(
    135deg,
    #ff7ef6,
    #b44cff
    );

    color:white;

    cursor:pointer;

    font-size:1rem;

    font-family:'VT323', monospace;
}

/* ===== SURPRISE BUTTON ===== */

.surprise-container{
    display:flex;
    justify-content:center;
}

.surprise-btn{
    margin-top:30px;

    border:none;

    border-radius:18px;

    padding:14px 50px;

    cursor:pointer;

    background:
    linear-gradient(
    135deg,
    #ff8df7,
    #c25bff
    );

    color:white;

    font-size:1.4rem;

    font-family:'VT323', monospace;

    box-shadow:
    0 0 20px rgba(255,120,255,.3);
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    .container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .title-section h1{
        font-size:2.2rem;
    }

    .account-btn{
        position:static;
        margin-top:10px;
    }
}


.bg-glow{
  position:fixed;
  inset:0;
  z-index:-2;
  overflow:hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.8) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.7) 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.6) 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.8) 1px, transparent 1px),
    #080812;

  background-size:
    120px 120px,
    180px 180px,
    150px 150px,
    200px 200px;
}

.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.8;
  animation:float 12s infinite ease-in-out;
}

.blob1{
  width:500px;
  height:500px;
  background:#ff6ec7;
  top:-100px;
  left:-100px;
}

.blob2{
  width:600px;
  height:600px;
  background:#7df9ff;
  right:-150px;
  top:20%;
  animation-delay:2s;
}

.blob3{
  width:450px;
  height:450px;
  background:#ffd166;
  bottom:-100px;
  left:30%;
  animation-delay:4s;
}

.blob4{
  width:400px;
  height:400px;
  background:#b388ff;
  bottom:10%;
  right:10%;
  animation-delay:6s;
}

@keyframes float{
  0%{
    transform:translate(0,0) scale(1);
  }

  50%{
    transform:translate(80px,-60px) scale(1.15);
  }

  100%{
    transform:translate(0,0) scale(1);
  }
}
.create-room-card{
    min-height:280px;

    border:3px dashed rgba(255,255,255,.25);

    border-radius:20px;

    background:rgba(255,255,255,.03);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    transition:.3s;
}

.create-room-card:hover{
    transform:translateY(-6px);

    border-color:#ff8df7;

    box-shadow:
    0 0 30px rgba(255,120,255,.3);
}

.plus-icon{
    width:80px;
    height:80px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff8df7,
    #c25bff
    );

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:3rem;

    margin-bottom:20px;
}

.create-room-card h2{
    font-size:2rem;
}

.create-room-card p{
    color:#d6b9ff;
    font-size:1.1rem;
}
.builder-layout{
    display:flex;
    gap:30px;
    margin-top:30px;
}

.room-preview{
    flex:1;
}

#room-wall{
    height:600px;

    border-radius:20px;

    border:2px solid rgba(255,255,255,.15);

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.4s;
}

.builder-panel{
    width:250px;

    background:rgba(255,255,255,.05);

    border-radius:20px;

    padding:20px;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.builder-panel button{
    border:none;

    padding:14px;

    border-radius:12px;

    background:#b44cff;

    color:white;

    cursor:pointer;

    font-family:'VT323', monospace;

    font-size:1.2rem;
}

.purple-grid{
    background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    #571083;

    background-size:25px 25px;
}

.dreamcore{
    background:
    linear-gradient(
    135deg,
    #ff9de2,
    #c4a7ff,
    #8fe3ff
    );
}

.clouds{
    background:
    linear-gradient(
    to bottom,
    #d6f0ff,
    #f6f8ff
    );
}

.kawaii{
    background:
    linear-gradient(
    135deg,
    #ffb7f3,
    #ffd8f8
    );
}

.cyber{
    background:
    linear-gradient(
    135deg,
    #00e5ff,
    #0f172a
    );
}







