body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;

    background-image: url("assets/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark overlay for readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}


/* Header Branding */
.brand-header {
    text-align: center;
    padding: 25px 15px;
}

.logo {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
}

.brand-name {
    color: #00ffcc;
    margin: 5px 0;
    font-size: 26px;
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
}

/* Main Container */
.container {
    max-width: 750px;
    margin: auto;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

h1 {
    text-align: center;
    color: #00ffcc;
    font-size: 22px;
}

.terms-box {
    background: #1c1c1c;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
}

.checkbox {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
}

.buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    flex: 1;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.accept {
    background: #00c853;
}

.reject {
    background: #d50000;
}

.btn:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #aaa;
}

/* Desktop */
@media (min-width: 768px) {
    h1 {
        font-size: 26px;
    }

    .terms-box {
        font-size: 15px;
    }
}
