/* MultiLocker Banner Styles with IP Fraud Check */
.multilocker-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    scroll-margin-top: 20px; /* Offset for fixed headers */
}

/* Completely disable any scroll behavior */
html {
    scroll-behavior: unset !important;
}

* {
    scroll-behavior: unset !important;
}

.banner-title {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.banner-subtitle {
    font-size: 1.2em;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.banner-split-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.banner-section {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.section-title {
    margin: 0 0 20px 0;
    font-size: 1.5em;
}

.section-description {
    margin: 0 0 25px 0;
    opacity: 0.9;
    font-size: 14px;
}

.btn-start {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-start:hover {
    transform: translateY(-2px);
}

.btn-offerwall {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-offerwall:hover {
    transform: translateY(-2px);
}

/* Validation Status Styles */
.validation-status {
    margin-top: 25px;
}

.status-container {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Access Restricted Styles */
.access-restricted {
    margin-top: 25px;
}

.restriction-box {
    background: rgba(255, 152, 0, 0.3);
    border: 2px solid rgba(255, 152, 0, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.restriction-title {
    color: #ff9800;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.restriction-text {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.restriction-info {
    opacity: 0.8;
    font-size: 12px;
    line-height: 1.3;
}

.locker-container {
    margin-top: 25px;
}

.locker-title {
    margin-bottom: 15px;
    color: #fff;
}

.locker-content {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    margin: 15px 0;
}

.locker-info {
    font-size: 12px;
    opacity: 0.8;
    margin: 10px 0 0 0;
}

.success-content {
    margin-top: 20px;
}

.success-box {
    background: rgba(40, 167, 69, 0.3);
    border: 2px solid rgba(40, 167, 69, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.success-title {
    color: #28a745;
    margin: 0 0 10px 0;
}

.success-text {
    margin: 0 0 15px 0;
    font-size: 14px;
}

.btn-success {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
}

.section-info {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.section-info p {
    margin: 0;
}

/* Error Container Styles */
.error-container {
    background: rgba(220, 53, 69, 0.3);
    border: 2px solid rgba(220, 53, 69, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    color: #fff;
    text-align: center;
}

.error-container h5 {
    color: #dc3545;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.error-container p {
    margin: 0 0 15px 0;
    font-size: 13px;
}

.retry-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.retry-button:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-size: 14px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading Animation for Content Check */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin: 5px 0;
}

.status-checking {
    background: rgba(255, 193, 7, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.6);
    color: #ffc107;
}

.status-success {
    background: rgba(40, 167, 69, 0.3);
    border: 1px solid rgba(40, 167, 69, 0.6);
    color: #28a745;
}

.status-error {
    background: rgba(220, 53, 69, 0.3);
    border: 1px solid rgba(220, 53, 69, 0.6);
    color: #dc3545;
}

.status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-split-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.3em;
    }
    
    .multilocker-banner {
        padding: 20px;
        margin: 15px 0;
    }
    
    .banner-section {
        padding: 20px;
    }
    
    .btn-start,
    .btn-offerwall {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .content-unavailable-box,
    .success-box,
    .error-message {
        padding: 15px;
    }
    
    .locker-content {
        padding: 20px;
    }
}

/* Additional Animation for Smooth Transitions */
.multilocker-banner * {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}