body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
    line-height: 1.6;
    background:
            linear-gradient(
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.4)
    ),
    url("bg.png");
    /*background-size: cover;*/
}

html {
    min-height: 100%;
}


.container {
    opacity: 0.90;
    width: 800px;
    margin: 80px auto;
    background: #1e1e1e;
    border: 1px solid #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.header {
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.75) 0%, rgba(26, 42, 58, 1) 100%), url("bgh.png");
    color: #ffffff;
    padding: 10px 15px;
    border-bottom: 1px solid #0d1a26;
}
.header h1 {
    margin: 0;
    font-size: 18px;
}
.content {
    display: flex;
}
.sidebar {
    width: 180px;
    background: #252525;
    border-right: 1px solid #333;
    padding: 10px 0;
}
.menu-item {
    padding: 8px 15px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    color: #cccccc;
}
.menu-item:hover {
    background: #333;
}
.menu-item.active {
    background: #2c3e50;
    border-left: 3px solid #4a7ec3;
    color: white;
}
.main {
    flex: 1;
    padding: 15px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #cccccc;
}
.form-group input[type="text"],
.form-group input[type="password"],
.form-group select {
    width: 250px;
    padding: 5px;
    border: 1px solid #444;
    border-radius: 3px;
    background-color: #333;
    color: #e0e0e0;
}
.form-group input[type="checkbox"] {
    margin-right: 5px;
}
.button {
    background: linear-gradient(to bottom, #2c3e50 0%, #1a2a3a 100%);
    border: 1px solid #0d1a26;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: underline rgba(255, 255, 255, 0.5);
}
.button:hover {
    background: linear-gradient(to bottom, #3c4e60 0%, #2a3a4a 100%);
}
.footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #333;
    background-color: #252525;
}
.status-bar {
    background: #252525;
    padding: 5px 15px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #888;
}

h2 {
    color: #cccccc;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-top: -5px;
}

span {
    color: #e0e0e0;
}
.page-content {
    display: none;
}
.page-content.active {
    display: block;
}
.game-screenshot {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 1px solid #444;
    margin: 10px 0;
}
.features-list {
    list-style-type: none;
    padding: 0;
}
.features-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #333;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}
.gallery-item {
    border: 1px solid #444;
    padding: 5px;
    background: #252525;
}
.gallery-item img {
    width: 100%;
    height: auto;
}
.gallery-caption {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
    color: #888;
}
.faq {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    h4 {
        margin-bottom: -5px;
        margin-top: -5px;
    }
}

.stole-link {
    color: #888;
    text-decoration: none;
}

textarea {
    resize: none;
}