/* ---------- GLOBAL ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.7;
    padding: 0 15px;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    background-color: #1c1c1c;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 12px;
}

/* ---------- HEADER ---------- */
header {
    background-color: #111;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

nav a:hover,
nav a.active {
    text-decoration: underline;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    opacity: 0.45;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    padding: 20px;
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.5;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;
    background: rgba(255, 42, 42, 0.8);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.hero .btn:hover {
    background-color: #e02424;
}

/* ---------- MAIN ---------- */
main {
    padding: 40px 0;
}

.info h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.info ul {
    list-style: none;
}

.info li {
    margin: 10px 0;
}

/* ---------- DISTRIBUTION FORM ---------- */
.distribution-form {
    max-width: 520px;
    margin: 40px auto;
    padding: 25px;
    background-color: #111;
    border-radius: 8px;
}

.distribution-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.distribution-form label {
    display: block;
    margin: 14px 0 6px;
    font-size: 14px;
    color: #ccc;
}

.distribution-form input,
.distribution-form textarea,
.distribution-form select {
    width: 100%;
    padding: 12px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
}

.distribution-form input:focus,
.distribution-form textarea:focus,
.distribution-form select:focus {
    outline: none;
    border-color: #ff2a2a;
}

.distribution-form textarea {
    min-height: 120px;
    resize: vertical;
}

.distribution-form button {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    background-color: #ff2a2a;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.distribution-form button:hover {
    background-color: #e02424;
}

/* ---------- LOGIN PAGE ---------- */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000;
    font-family: Arial, sans-serif;
}

.login-container {
    background: #111;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.login-container h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.login-form label {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 4px;
    background: #222;
    color: white;
}

.login-form input::placeholder {
    color: #888;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background: white;
    color: black;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.login-form button:hover {
    background: #ddd;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
}

.login-footer a {
    color: white;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* ---------- INFOBOX ---------- */
.infobox {
    float: right;
    width: 300px;
    background-color: #000;
    color: #f5f5f5;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin-left: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.infobox img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.infobox p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.infobox a {
    color: #1db954;
}

.infobox a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid #333;
    background-color: #000;
    border-radius: 0 0 12px 12px;
}

/* ---------- PAYMENTS ---------- */
.payments {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.payments h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
}

.payment-icons span i {
    color: #ff3f3f;
    margin-right: 6px;
    font-size: 18px;
}

/* ---------- LINKS ---------- */
a {
    color: #1db954;
}

a:hover {
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media screen and (max-width: 768px) {
    .infobox {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    nav a {
        display: block;
        margin: 10px 0;
    }
    
    .container {
        padding: 20px;
    }
    
    .distribution-form {
        padding: 20px;
        margin: 20px auto;
    }
}
