
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: #0e0e0e;
    color: #fff;
}
header {
    background: #111;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo p {
    font-size: 20px;
    font-weight: bold;
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger {
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }


nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: #111;
    padding-top: 80px;
    transition: 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.buttons2 {
    display: flex;
    gap: 10px;
    width: 120px;
	margin: 20px auto;
    justify-content: center;
}
.btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}
.back-btn{
	background-color: #2ecc71;
    color: white;
	width: 70px;
}

nav.active { right: 0; }

nav a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #222;
    width: 100%;
}

nav a:hover {
    background: #1c1c1c;
}

nav a.active {
    background: #222;
}

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 999;
}

#overlay.active { display: block; }

.welcome {
    padding: 80px 25px;
    background: linear-gradient(135deg,#111,#1a1a1a);
    text-align: center;
}

.welcome h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.welcome button {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    background: #25D366;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.welcome button:hover {
    background: #1ebe57;
}

.botinfo {
    margin: 30px;
    padding: 25px;
    background: #111;
    border-radius: 10px;
}

.botinfo p {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.session-card {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.online { color: #25D366; }
.offline { color: #ff4d4d; }

.bottomdiv {
    text-align: center;
    padding: 20px;
    color: #777;
}

#loginModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

#loginModal .modal-content {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
}

#loginModal input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
}

#loginModal button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #25D366;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s;
}

#loginModal button:hover {
    background: #1ebe57;
}

#loginModal button.cancel {
    background: #ff4d4d;
}

#loginModal button.cancel:hover {
    background: #e04343;
}

#loginError {
    color: #ff4d4d;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.full-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin: 5px 0;
    border-radius: 6px;
    border: none;
    background: #25D366;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.full-btn:hover {
    background: #1ebe57;
}

.page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px; 
    max-width: 900px;
    margin: 0 auto;
}


.page-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 18px;
    line-height: 1.6;
}
