* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #0d0d0d;
    color: #f5d78e;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000;
    padding: 20px 40px;
    position: relative;
}

.banner {
    width: 60%;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.auth-buttons {
    position: absolute;
    top: 20px;
    right: 40px;
}

.auth-buttons button {
    background: linear-gradient(45deg, #caa64b, #f5d78e);
    border: none;
    padding: 10px 18px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.auth-buttons button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #caa64b;
}

/* MAIN */

main {
    padding: 60px 20px;
    text-align: center;
}

main h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f5d78e;
}

main p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 0 30px #caa64b;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: #f5d78e;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #caa64b;
    background: #000;
    color: #f5d78e;
    border-radius: 8px;
}

.modal-content button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #caa64b, #f5d78e);
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.close {
    text-align: right;
    cursor: pointer;
    color: #caa64b;
    font-size: 18px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #777;
    margin-top: 60px;
}

/* ===== PREMIUM BLACK GOLD THEME EXTENSIONS ===== */
body{
background:#000;
color:#fff;
}

.gold-card{
background:#0b0b0b;
border:1px solid #d4af37;
border-radius:12px;
padding:20px;
box-shadow:0 0 15px rgba(212,175,55,0.2);
}

.gold-btn{
background:linear-gradient(45deg,#d4af37,#f5d78e);
color:black;
border:none;
padding:10px 18px;
border-radius:25px;
font-weight:bold;
cursor:pointer;
}

.gold-btn:hover{
transform:scale(1.05);
box-shadow:0 0 12px gold;
}

.topbar-icons{
display:flex;
gap:20px;
justify-content:center;
font-size:22px;
margin-bottom:15px;
}

.counter{
color:red;
font-size:12px;
margin-left:4px;
}



/* ==== PROFILE GRID ==== */

.profile-grid{
display:grid;
grid-template-columns:repeat(auto-fill,200px);
gap:20px;
justify-content:center;
}

.profile-card{
background:#0b0b0b;
border:1px solid #d4af37;
border-radius:12px;
padding:15px;
text-align:center;
}

.profile-card img{
width:120px;
height:120px;
border-radius:50%;
border:3px solid gold;
object-fit:cover;
}



/* ===== MOBILE APP STYLE ===== */

.mobile-container{
max-width:480px;
margin:auto;
}

.mobile-card{
background:#0b0b0b;
border:1px solid #d4af37;
border-radius:12px;
padding:15px;
margin-bottom:15px;
}

.mobile-header{
display:flex;
align-items:center;
gap:12px;
}

.mobile-header img{
width:60px;
height:60px;
border-radius:50%;
border:2px solid gold;
object-fit:cover;
}

.mobile-btn{
background:linear-gradient(45deg,#d4af37,#f5d78e);
border:none;
padding:10px 14px;
border-radius:20px;
font-weight:bold;
cursor:pointer;
}

.chat-box{
height:350px;
overflow:auto;
border:1px solid #333;
padding:10px;
background:#000;
}

.chat-msg{
margin-bottom:8px;
}

.chat-input{
display:flex;
gap:10px;
margin-top:10px;
}

.chat-input input{
flex:1;
padding:8px;
}

@media (max-width:700px){

.container{
flex-direction:column;
}

.sidebar{
width:100%;
}

.photos img{
width:100%;
height:auto;
}

}

