/* GLOBAL STYLES */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212; /* მუქი, თითქმის შავი ფონი */
    color: #e0e0e0; /* ღია ნაცრისფერი ტექსტი */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #202020;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 3px solid #FF5722; /* ნარინჯისფერი აქცენტი (ცეცხლის ფერი) */
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #f7b731; /* ოქროსფერი/ყვითელი აქცენტი */
    text-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}

h1 {
    font-size: 1.5em;
    font-weight: 400;
    margin-top: 5px;
    color: #b0b0b0;
}

main {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    margin-top: 30px;
}

section {
    background-color: #1a1a1a;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-left: 5px solid #FF5722;
}

h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    border-bottom: 2px dashed #333;
    padding-bottom: 10px;
    margin-top: 0;
}

/* SERVER INFO */
.connection-details {
    background-color: #0d0d0d;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.ip-address {
    font-family: monospace;
    font-size: 1.2em;
    color: #f7b731;
    background-color: #333;
    padding: 2px 5px;
    border-radius: 3px;
}

/* DOWNLOAD BUTTON */
.download-button {
    display: inline-block;
    background-color: #FF5722; /* ნარინჯისფერი */
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    padding: 15px 30px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    text-align: center;
    box-shadow: 0 5px #d43f14; /* 3D ეფექტი */
}

.download-button:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 7px #d43f14;
}

.download-note {
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* RULES */
.rules ul {
    list-style: none;
    padding-left: 0;
}

.rules li {
    padding: 8px 0;
    border-bottom: 1px dotted #333;
}

/* FOOTER */
footer {
    width: 100%;
    background-color: #111;
    text-align: center;
    padding: 15px 0;
    font-size: 0.8em;
    margin-top: 40px;
    color: #666;
}
