/* AdBlock Skip Manager Notice Styles */

.adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.adblock-modal {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    animation: slideIn 0.3s ease-out;
    color: white;
}

.modal-content h2 {
    margin: 0 0 20px 0;
    font-size: 1.8em;
    font-weight: 700;
    color: white;
}

.modal-content p {
    margin: 0 0 30px 0;
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.detection-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detection-info p {
    margin: 0 0 15px 0;
    font-weight: 600;
}

.detection-info ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.detection-info li {
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.detection-info li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 8px;
}

.option-buttons {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.info-text {
    margin-top: 20px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.info-text p {
    margin: 5px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .adblock-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-content h2 {
        font-size: 1.5em;
    }
    
    .modal-content p {
        font-size: 1em;
    }
    
    .option-buttons {
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .adblock-modal {
        padding: 25px 15px;
        margin: 15px;
    }
    
    .modal-content h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .modal-content p {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Dark theme compatibility */
.dark-theme .adblock-modal,
body.dark .adblock-modal {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .adblock-overlay {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .adblock-modal {
        background: #1a202c;
        border: 2px solid #ff6b35;
    }
    
    .btn-primary {
        background: #ff6b35;
        border: 2px solid #ff6b35;
    }
    
    .btn-secondary {
        background: transparent;
        border: 2px solid #white;
        color: white;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .adblock-overlay,
    .adblock-modal,
    .btn-primary,
    .btn-secondary,
    .close-btn {
        animation: none !important;
        transition: none !important;
    }
}