*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Segoe UI,sans-serif;

}



body{

background:#0a0a0a;

color:#fff;

}



nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 40px;

background:#111;

border-bottom:1px solid #222;

}



.logo{

font-size:28px;

font-weight:bold;

color:#8f5cff;

}



nav ul{

display:flex;

list-style:none;

gap:20px;

}



nav a{

color:#ccc;

text-decoration:none;

transition:.3s;

}



nav a:hover{

color:#8f5cff;

}



.container{

max-width:1200px;

margin:auto;

padding:30px;

}



.card{

background:#111;

border:1px solid #222;

padding:20px;

margin-bottom:20px;

border-radius:8px;

}



input,

textarea{

width:100%;

padding:12px;

background:#1a1a1a;

border:1px solid #333;

color:white;

margin-top:10px;

margin-bottom:15px;

}



button{

background:#8f5cff;

border:none;

padding:12px 20px;

color:white;

cursor:pointer;

border-radius:5px;

}



button:hover{

opacity:.9;

}



footer{

text-align:center;

padding:20px;

border-top:1px solid #222;

margin-top:50px;

color:#777;

}



.paste{

background:#111;

border:1px solid #222;

padding:15px;

margin-bottom:15px;

border-radius:8px;

}



.hero{

text-align:center;

padding:80px 20px;

}



.hero h1{

font-size:60px;

margin-bottom:10px;

}



.hero p{

color:#999;

font-size:18px;

}

.hall-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:20px;

    margin-top:25px;

}



.hall-card{

    background:#111;

    border:1px solid #222;

    border-radius:12px;

    overflow:hidden;

    transition:.3s;

}



.hall-card:hover{

    transform:translateY(-4px);

    border-color:#8f5cff;

}



.hall-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

}



.hall-card h2{

    padding:15px;

    color:#8f5cff;

}



.hall-card p{

    padding:0 15px 15px;

    color:#ccc;

    line-height:1.6;

}
.section-title {
    margin: 40px auto 20px;
    text-align: center;
    max-width: 900px;
}

.section-title h2 {
    color: #fff;
    font-size: 28px;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #8b0000;
}

.divider {
    margin: 50px auto;
    max-width: 900px;
    border: none;
    border-top: 1px solid #333;
}

.pinned {
    border-left: 4px solid gold;
    background: rgba(255, 215, 0, 0.05);
}

.empty {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}
.subtitle{
    color:#999;
    margin-top:10px;
    margin-bottom:15px;
}

.search-form{
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.search-form input{
    flex:1;
}

.results-info{
    color:#888;
    margin-top:10px;
}

.users-list{
    margin-top:20px;
}

.user-row{
    background:#111;
    border:1px solid #222;
    border-radius:8px;
    padding:15px;
    margin-bottom:10px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.user-row:hover{
    border-color:#8f5cff;
}

.user-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.avatar-placeholder{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#8f5cff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;
}

.username{
    font-size:18px;
    font-weight:600;
}

.user-right{
    color:#888;
}

.rank{
    display:inline-block;
    margin-top:4px;
    padding:3px 8px;
    border-radius:4px;
    font-size:12px;
    font-weight:bold;
}
table th{
    padding:10px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

table td{
    padding:10px;
}

table tr:hover{
    background:#111;
}
.profile {
    max-width: 900px;
    margin: auto;
    color: white;
}

.profile-header {
    text-align: center;
    padding: 20px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    border-bottom: 1px solid #333;
    padding: 10px;
}

.comment {
    background: #111;
    padding: 10px;
    margin: 10px 0;
}
.profile {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    color: #fff;
}

/* HEADER CARD */
.profile-header {
    text-align: center;
    padding: 35px 20px;
    margin-bottom: 30px;
    border: 1px solid #222;
    border-radius: 10px;
    background: #0f0f0f;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #8f5cff;
}

.profile-header h2 {
    margin: 10px 0;
    font-size: 22px;
}

.bio {
    color: #aaa;
    margin: 10px auto;
    max-width: 500px;
    line-height: 1.5;
}

.meta {
    margin-top: 10px;
    color: #777;
    font-size: 13px;
}

.social {
    margin-top: 15px;
    color: #ccc;
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin-top: 12px;
    margin-right: 8px;
    padding: 8px 14px;
    background: #8f5cff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

/* SECTIONS */
h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}

/* TABLE */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table th,
.table td {
    padding: 12px;
    border-bottom: 1px solid #222;
}

.table th {
    color: #888;
}

/* COMMENTS */
.comment {
    background: #111;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #1c1c1c;
}

textarea {
    width: 100%;
    height: 80px;
    background: #111;
    border: 1px solid #222;
    color: white;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
}

button {
    margin-top: 10px;
    padding: 8px 14px;
    background: #8f5cff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.85;
}
.rank-godfather{background:#ff0000;color:#fff;}
.rank-godmother{background:#ff1493;color:#fff;}
.rank-admin{background:#ff0000 ;color:#ff0000;}
.rank-manager{background:#00aaff;color:#fff;}
.rank-mod{background:#00cc66;color:#fff;}
.rank-council{background:#9933ff;color:#fff;}
.rank-rich{background:#ffd700;color:#000;}
.rank-criminal{background:#555;color:#fff;}
.rank-vip{background:#00ffff;color:#000;}
.rank-user{background:#333;color:#fff;}
