body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #020209;
    color: #fff;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95)), 
                url('https://watchanimeworld.in/wp-content/uploads/129659-final-1-scaled.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

.content { flex: 1; position: relative; z-index: 1; }
footer { 
    margin-top: auto; 
    background-color: #020209 !important; 
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.logo { max-width: 300px; margin-bottom: 2rem; }
.card { background-color: rgba(0,0,0,0.85) !important; border: 1px solid #28c2bd !important; }
.form-control { 
    background-color: #1a1a1a !important; 
    color: #28c2bd !important; 
    border: 1px solid #28c2bd !important;
}
.btn-primary { background-color: #28c2bd; border-color: #28c2bd; color: #020209; font-weight: 600; }
.btn-primary:hover { background-color: #20a09d; border-color: #20a09d; }
.btn-success { background-color: #28c2bd; border-color: #28c2bd; color: #020209; font-weight: 600; }
.btn-success:hover { background-color: #20a09d; border-color: #20a09d; }
.btn-outline-warning { color: #28c2bd; border-color: #28c2bd; }
.btn-outline-warning:hover { background-color: #28c2bd; color: #020209; }
.text-accent { color: #28c2bd !important; }
a { color: #28c2bd; text-decoration: none; }
a:hover { color: #20a09d; }
.form-check-input:checked { background-color: #28c2bd; border-color: #28c2bd; }
.form-check-input { 
    background-color: #1a1a1a; 
    border-color: #28c2bd; 
    width: 1.25em; 
    height: 1.25em;
}
.form-check-input:focus {
    border-color: #28c2bd;
    box-shadow: 0 0 0 0.25rem rgba(40, 194, 189, 0.25);
}
.form-check { display: flex; align-items: center; gap: 0.5rem; justify-content: space-between; }
.form-check-label { display: flex; align-items: center; flex-wrap: wrap; }

@media (max-width: 576px) {
    .label-break {
        display: block;
    }
}
.form-select { background-color: #1a1a1a !important; color: #28c2bd !important; border: 1px solid #28c2bd !important; }
.form-select option { background-color: #1a1a1a; color: #28c2bd; }

.info-icon {
    color: #28c2bd;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
}

.info-icon .tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    transition: opacity 0.3s;
    border: 1px solid #28c2bd;
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .info-icon .tooltip-text {
        width: 250px;
        left: auto;
        right: 0;
        margin-left: 0;
    }
    
    .info-icon .tooltip-text::after {
        left: auto;
        right: 10px;
        margin-left: 0;
    }
}

.info-icon .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #28c2bd transparent transparent transparent;
}

.info-icon.active .tooltip-text {
    visibility: visible;
    opacity: 1;
}
