:root {
    /* نظام الألوان المحدث - حسب المتطلبات الجديدة */
    --safe-color: #22C55E;      /* أخضر للمعتمد */
    --warning-color: #F59E0B;   /* أصفر للتحذير/غير معتمد */
    --unsafe-color: #EF4444;    /* أحمر للخطير/القائمة السوداء */
    --info-color: #3B82F6;      /* أزرق للمعلومات */
    
    --dark-bg: #0D1117;
    --darker-bg: #161B22;
    --accent-color: #238636;
    --text-color: #F0F6FC;
    --border-color: #30363D;
    --primary-color: #0969DA;
    
    /* ألوان إضافية */
    --pending-color: var(--warning-color);
    --blacklist-color: var(--unsafe-color);
    --approved-color: var(--safe-color);
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at center, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: var(--darker-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* شعار الموقع المحدث */
.logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.subtitle {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* قسم الرعايات في الأعلى */
.top-sponsors-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--info-color);
    border-radius: 10px;
    animation: slideIn 0.5s ease-out;
}

.top-sponsors-section .sponsors-header {
    text-align: center;
    margin-bottom: 1rem;
}

.top-sponsors-section .sponsors-header h3 {
    color: var(--info-color);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.top-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.top-sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.top-sponsor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--info-color);
}

.top-sponsor-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.top-sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-sponsor-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

/* تبويبات الفحص */
.check-tabs {
    display: flex;
    background: rgba(22, 27, 34, 0.8);
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.check-tabs .tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--text-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.check-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.check-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.3);
}

.check-tabs .tab-btn i {
    font-size: 1rem;
}

.input-group {
    display: flex;
    margin-bottom: 1rem;
}

input[type="text"], input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--accent-color);
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(9, 105, 218, 0.2);
}

button {
    padding: 12px 20px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    border-radius:5px 0  0  5px;
    margin-right: -2px;
}

button:hover {
    background-color: #1a4b8c;
}

/* رسالة خطأ الرابط - مع تأخير */
.url-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--unsafe-color);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 1rem;
    color: var(--unsafe-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: shake 0.5s ease-in-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.url-error.show {
    opacity: 1;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* نظام الألوان الجديد للنتائج */
.result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 5px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

/* آمن ومعتمد - أخضر */
.safe, .approved {
    background-color: rgba(34, 197, 94, 0.2);
    border: 2px solid var(--safe-color);
    color: var(--safe-color);
}

/* تحذير/غير معتمد - أصفر */
.warning, .unverified {
    background-color: rgba(245, 158, 11, 0.2);
    border: 2px solid var(--warning-color);
    color: var(--warning-color);
}

/* خطير/قائمة سوداء - أحمر */
.unsafe, .blacklisted, .dangerous {
    background-color: rgba(239, 68, 68, 0.2);
    border: 2px solid var(--unsafe-color);
    color: var(--unsafe-color);
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.status-icon {
    font-size: 2rem;
    margin-left: 10px;
}

.details {
    text-align: right;
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.safe .shield { color: var(--safe-color); }
.warning .shield, .unverified .shield { color: var(--warning-color); }
.unsafe .shield, .blacklisted .shield, .dangerous .shield { color: var(--unsafe-color); }

/* أزرار الإجراءات */
.action-buttons, .visitor-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
}

.add-approved-btn {
    background-color: var(--safe-color);
    color: white;
}

.report-unsafe-btn {
    background-color: var(--unsafe-color);
    color: white;
}

.share-btn {
    background-color: var(--info-color);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* قسم البحث عن تسرب البيانات */
.data-breach-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--info-color);
    border-radius: 10px;
}

.data-breach-section h3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breach-input-group {
    display: flex;
    margin-top: 1rem;
}

.breach-input-group input {
    border-radius: 5px 0 0 5px;
}

.breach-input-group button {
    border-radius:5px 0  0 5px;
    background-color: var(--info-color);
    margin-left: -2px;
}

.breach-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.breach-result.safe {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid var(--safe-color);
    color: var(--safe-color);
}

.breach-result.danger {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--unsafe-color);
    color: var(--unsafe-color);
}

.breach-result.loading {
    background-color: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--info-color);
    color: var(--info-color);
}

.breach-result.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--unsafe-color);
    color: var(--unsafe-color);
}

/* تصميم نتائج فحص التسرب */
.breach-safe h4, .breach-found h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breach-list {
    margin: 1rem 0;
}

.breach-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--unsafe-color);
}

.breach-item strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.breach-recommendation, .safety-tips, .additional-help {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.breach-recommendation h5, .safety-tips h5, .additional-help h5 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breach-recommendation ul, .safety-tips ul, .additional-help ul {
    margin: 0.5rem 0;
    padding-right: 1.5rem;
}

.risk-assessment {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.risk-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.risk-fill {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.loading i {
    animation: spin 1s linear infinite;
}

/* عدادات الصفحة الرئيسية */
.main-counters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.main-counter {
    background: rgba(15, 52, 96, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 150px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.main-counter-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 5px 0;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.main-counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.main-counter-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* خطوات التحقق */
.verification-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    display: none;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--darker-bg);
    border: 2px solid var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px rgba(35, 134, 54, 0.5);
    animation: pulse-active 2s infinite;
}

.step.completed .step-icon {
    background-color: var(--safe-color);
    color: white;
    border-color: var(--safe-color);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.step.failed .step-icon {
    background-color: var(--warning-color);
    color: white;
    border-color: var(--warning-color);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

@keyframes pulse-active {
    0%, 100% { box-shadow: 0 0 15px rgba(35, 134, 54, 0.5); }
    50% { box-shadow: 0 0 25px rgba(35, 134, 54, 0.8); }
}

.step-label {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--border-color);
    z-index: 1;
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--safe-color), var(--primary-color));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.verification-details {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(15, 52, 96, 0.2);
    border-radius: 8px;
    display: none;
    border: 1px solid var(--border-color);
}

.verification-details p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.verification-details i {
    margin-left: 8px;
    width: 20px;
}

/* شرح قاعدة البيانات */
.database-info {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(13, 17, 23, 0.9));
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

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

.info-header {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-header i {
    font-size: 2rem;
    opacity: 0.9;
}

.info-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-content {
    padding: 1.5rem;
}

.info-content p {
    margin: 1rem 0;
    line-height: 1.6;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-content p strong {
    color: var(--accent-color);
    font-weight: 600;
    min-width: 80px;
}

/* أمثلة الروابط */
.url-examples {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.example-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.example-link-display {
    color: var(--accent-color);
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(35, 134, 54, 0.1);
    border: 1px solid rgba(35, 134, 54, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.example-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
}

/* قسم الرعايات */
.sponsors-section {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--darker-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sponsors-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sponsors-header h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsor-card.clickable {
    cursor: pointer;
}

.sponsor-card:hover, .sponsor-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.sponsor-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Footer مُحسن وأصغر */
.site-footer {
    width: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0a0f2e 100%);
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    position: relative;
}

.compact-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-main {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.developer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.developer-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 0.5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.7rem;
}

/* معلومات المشرفين */
.admin-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--info-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.admin-link {
    color: var(--info-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* النماذج المنبثقة */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--darker-bg);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    animation: modalFadeIn 0.3s;
}

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

.close-btn {
    color: #aaa;
    float: left;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: white;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 90%;
    padding: 10px 15px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

.auth-btn, .submit-btn, .report-btn, .cancel-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.submit-btn {
    background-color: var(--safe-color);
}

.report-btn {
    background-color: var(--unsafe-color);
}

.cancel-btn {
    background-color: var(--border-color);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions .action-btn {
    flex: 1;
    justify-content: center;
}

.error-message {
    color: var(--unsafe-color);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 5px;
    display: none;
}

/* الشرائح للرعايات (موبايل) */
.sponsors-slider {
    display: none;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1rem;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 52, 96, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { right: 10px; }
.next-btn { left: 10px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* تحسينات للاستجابة */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1.5rem;
    }

    .top-sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .sponsors-section {
        width: 95%;
        padding: 1rem;
    }

    .sponsors-grid {
        display: none;
    }

    .sponsors-slider {
        display: block;
    }

    .main-counters {
        flex-direction: column;
        gap: 15px;
    }

    .verification-steps {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }

    .step {
        width: 60px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .progress-line {
        top: 20px;
    }

    .compact-footer .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .footer-info {
        align-items: center;
    }

    .input-group, .breach-input-group {
        flex-direction: row;
    }

    .action-buttons, .visitor-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 2rem;
    }

    .verification-steps {
        gap: 0.25rem;
    }

    .step {
        width: 50px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .progress-line {
        top: 17px;
        left: 25px;
        right: 25px;
        height: 2px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* تأثيرات إضافية */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* تحسينات إضافية للإمكانية الوصول */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* تأثيرات الإضاءة للعدادات */
.main-counter::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
    opacity: 0.5;
}

@keyframes shine {
    0% { transform: rotate(30deg) translate(-30%, -30%); }
    100% { transform: rotate(30deg) translate(30%, 30%); }
}

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

/* تحسينات للـ Focus */
button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* حالات التحميل */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.loading i {
    animation: spin 1s linear infinite;
}

select#reportReason option {
    color: black;
}
select#reportReason option:checked {
    color: white;
}

/* شارات إضافية */
.gov-badge {
    background: linear-gradient(135deg, var(--info-color), #1d4ed8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.dev-badge {
    background: linear-gradient(135deg, var(--warning-color), #d97706) !important;
}

/* تحسين الرعايات */
.sponsor-card.image-only {
    padding: 0.5rem;
}

.sponsor-logo.full-image {
    width: 100%;
    height: 120px;
    margin-bottom: 0;
}

.sponsor-link-text, .sponsor-info {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}