* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blocked-content {
    padding: 40px 30px;
    text-align: center;
}

.icon-container {
    margin-bottom: 20px;
}

.blocked-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    }
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.domain-info {
    margin-bottom: 20px;
}

.domain-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-family: 'Courier New', monospace;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}

.status {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.message {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: left;
}

.message p {
    color: #991b1b;
    font-size: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.info-item {
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.info-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.timestamp {
    margin-bottom: 20px;
    padding: 12px;
    background: #f3f4f6;
    border-radius: 8px;
}

.timestamp p {
    color: #6b7280;
    font-size: 0.9rem;
}

.timestamp span {
    font-weight: 600;
    color: #374151;
}

.footer {
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.footer p {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blocked-content {
        padding: 40px 25px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .domain-name {
        font-size: 1.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blocked-content {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .blocked-icon {
        width: 100px;
        height: 100px;
    }
    
    .message {
        padding: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .blocked-icon {
        animation: none;
    }
    
    .info-item {
        transition: none;
    }
}

/* Focus styles for keyboard navigation */
.info-item:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
    
    .container {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .title {
        color: #f1f5f9;
    }
    
    .domain-name {
        background: #334155;
        color: #e2e8f0;
    }
    
    .status {
        color: #cbd5e1;
    }
    
    .message {
        background: rgba(239, 68, 68, 0.1);
        border-left-color: #ef4444;
    }
    
    .message p {
        color: #fca5a5;
    }
    
    .info-item {
        background: #334155;
        border: 1px solid #475569;
    }
    
    .info-item h3 {
        color: #f1f5f9;
    }
    
    .info-item p {
        color: #cbd5e1;
    }
    
    .timestamp {
        background: #334155;
    }
    
    .timestamp p {
        color: #cbd5e1;
    }
    
    .timestamp span {
        color: #e2e8f0;
    }
    
    .footer {
        border-top-color: #475569;
    }
    
    .footer p {
        color: #94a3b8;
    }
}
