/*     SKRITAVLAST.COM Style Sheet
    --------------------------------------------------------------
	Style name:             skritavlast (the default skritaflat 3.3.15 style)
	Based on style:         @skritavlast (the default skritaflat 3.3.15 style)
	Original author:	HarveyWNvm ( http://www.skritavlast.com/ )
	Modified by:		skritavlast.com Limited ( https://www.skritavlast.com/ )
    -------------------------------------------------------------- 
*
/* ============================================================
   GLOBAL BACKGROUND (IDENTICAL TO banned.php)
============================================================ */
body {
    min-height: 100vh;
    margin: 0;

    background-image: url("https://i.imgur.com/L1lUbdA.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-family: "Inter", sans-serif;
    color: #fff;

    position: relative;
    overflow-x: hidden;
}

/* dark overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,10,25,0.92), rgba(10,5,20,0.9));
    backdrop-filter: blur(4px);
    z-index: 0;
}

/* scan lines */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 4px
    );
}


/* ============================================================
   NAVBAR — NORMAL, FULL WIDTH
============================================================ */
nav.navbar {
    width: 100% !important;
    margin: 0 !important;
    z-index: 5;
    position: relative;
}


/* ============================================================
   CHAT WRAPPER — CENTERED + SPACING BELOW NAVBAR
============================================================ */
.chat-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 60px auto 0 auto; /* 👈 SPACING BELOW NAVBAR */
    position: relative;
    z-index: 2;
}


/* ============================================================
   CHAT BOX — VALORANT GLASS PANEL
============================================================ */
.chat-box {
    height: 60vh;
    padding: 25px;

    background: rgba(15, 20, 35, 0.82);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(18px);

    box-shadow:
        0 0 30px rgba(0,0,0,0.65),
        inset 0 0 25px rgba(0,0,0,0.45);

    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

/* red valorant line (top) */
.chat-box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff4655, #c83240);
    box-shadow: 0 0 14px rgba(255,70,85,0.55);
    border-radius: 20px 20px 0 0;
    z-index: 3;
}


/* ============================================================
   SCROLLBAR — RED ACCENT
============================================================ */
.chat-box::-webkit-scrollbar {
    width: 8px;
}
.chat-box::-webkit-scrollbar-thumb {
    background: rgba(255, 70, 85, 0.7);
    border-radius: 10px;
}


/* ============================================================
   MESSAGES
============================================================ */
.message {
    background: rgba(255,255,255,0.08);
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 14px;

    border-left: 4px solid #ff4655;
    box-shadow:
        0 0 12px rgba(255,70,85,0.26),
        inset 0 0 12px rgba(0,0,0,0.24);

    color: #fff;
}

.message-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.86rem;
    margin-bottom: 6px;
}

.message-header strong {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(255,60,70,0.55);
}

.message-header .text-muted {
    color: #ffb2b8 !important;
    opacity: 0.9 !important;
    text-shadow: 0 0 2px rgba(255,140,150,0.4);
}


/* ============================================================
   MEDIA IN CHAT
============================================================ */
.message-content img,
.chat-img {
    max-width: 280px;
    border-radius: 12px;
    margin-top: 6px;
}

.message-content video,
.chat-video {
    max-width: 320px;
    border-radius: 12px;
    margin-top: 6px;
}
