/* Общий стиль для всех страниц LunaCraft */
body {
    margin: 0;
    font-family: 'Minecraft', Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
}

header {
    text-align: center;
    padding: 30px;
    background: #222;
}

h1 {
    font-size: 2.5em;
    color: #ffe400;
    text-shadow: 2px 2px #000;
}

p {
    font-size: 1.2em;
}

.form-center {
    width: 90%;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.input-field {
    width: 70%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    text-align: center;
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.shop-item {
    background: #2c2c2c;
    border: 1px solid #555;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    text-align: center;
}

.shop-item img {
    width: 100%;
    border-radius: 5px;
}

.shop-item h3 {
    margin: 10px 0 5px;
}

.shop-item p {
    margin: 5px 0;
}

.btn-main {
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.btn-main:hover {
    background: #45a049;
}

.buttons a.btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.buttons a.btn:hover {
    background: #45a049;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    margin-top: 50px;
}

.ip-box, .online-box {
    margin: 10px 0;
    cursor: pointer;
}

.payment-check img {
    margin-top: 15px;
}


.navbar .logo img {
    height: 40px; /* увеличенный логотип */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.navbar .logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
