/* ===== General Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Arial, sans-serif; /* Rostex fallback */
    background: url('https://nomadics2.com/uploads/images/background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
}

/* ===== Logo ===== */
.logo {
    font-family: 'Rostex', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ee9200;
    text-align: center;
    margin-bottom: 20px;
}

/* ===== Back button ===== */
.backbtn {
    display: inline-block;
    padding: 12px 25px;
    margin-bottom: 20px;
    background: rgba(238,146,0,0.85);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.backbtn:hover {
    background: #ffb347;
    color: #000;
}

/* ===== Container ===== */
.container {
    max-width: 900px;
    margin: 20px auto 40px auto;
    padding: 30px;
    background: rgba(0,0,0,0.75);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ===== Form elements ===== */
input, select, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    border: none;
    background: rgba(50,50,50,0.75);
    color: #fff;
    font-size: 15px;
}

input::placeholder,
select,
option {
    color: #ddd;
    background: rgba(50,50,50,0.75);
}

input:focus, select:focus {
    outline: 2px solid #00bfff;
}

button {
    background: rgba(0,191,255,0.85);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    border: none;
    transition: 0.3s;
}

button:hover {
    background: rgba(0,153,204,1);
}

/* ===== Player Cards ===== */
.player-card {
    display: flex;
    gap: 10px;
    background: rgba(31,31,31,0.75);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.player-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.player-card img {
    width: 60px;
    height: 60px;
}

/* Extra cards hidden by default */
.extra-card {
    display: none;
}

/* ===== Payment Info Box ===== */
.info-box {
    background: rgba(50,50,50,0.75);
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.info-box div {
    margin-bottom: 6px;
}

.info-box .highlight {
    font-weight: 700;
}

.info-box .fee { color:#00ffff; font-weight:700; }
.info-box .bank { color:#3399ff; font-weight:700; }
.info-box .account { color:#ff9933; font-weight:700; }
.info-box .beneficiary { color:#66ccff; font-weight:700; }
.info-box .transaction { color:#ffb347; font-weight:700; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .logo {
    font-size: 1.5rem; 
    text-align: center;
    font-family: 'Rostex', Arial, sans-serif;
    font-weight: 700;
	background-attachment: scroll; /* mobile-д fixed хэрэглэхгүй */
    background-size: cover;
    background-position: center top;
  }
    .backbtn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .player-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem; font-family: 'Rostex', Arial, sans-serif;
    }
    .backbtn {
        font-size: 13px;
        padding: 8px 16px;
    }
}
