/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: #f9fafb;
    color: #111827;
    padding: 20px;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Title */
h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111827;
}

h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 600;
    color: #374151;
}

h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #4b5563;
}

/* Status Box - Large and prominent */
.status-box {
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
    border: 3px solid;
}

.status-box.up {
    background: #d1fae5;
    border-color: #059669;
}

.status-box.down {
    background: #fee2e2;
    border-color: #dc2626;
}

.status-box.blocked {
    background: #f3f4f6;
    border-color: #6b7280;
}

.status-box h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.status-box p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
}

.status-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.status-details span {
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    text-align: center;
    margin: 25px 0;
}

.btn-share {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

.btn-share.twitter {
    background: #1da1f2;
}

.btn-share.twitter:hover {
    background: #1a8cd8;
}

.btn-share.facebook {
    background: #4267B2;
}

.btn-share.facebook:hover {
    background: #365899;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stat-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-card h3 {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 10px;
    font-weight: 500;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin: 10px 0;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

/* Form */
input[type="text"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

button:hover {
    background: #1d4ed8;
}

/* Report Form */
.report-form {
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-top: 10px;
    font-family: inherit;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

select {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin-top: 10px;
    font-size: 16px;
    background: white;
}

select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* SEO Content */
.seo-content {
    margin-top: 40px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 10px;
    color: #374151;
    font-size: 15px;
}

.seo-content h2 {
    color: #111827;
    margin-top: 0;
}

.seo-content h3 {
    color: #1f2937;
    margin-top: 20px;
}

.seo-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.seo-content li {
    margin: 8px 0;
}

/* Check Another */
.check-another {
    margin-top: 40px;
    padding: 25px;
    background: #eff6ff;
    border-radius: 10px;
    border: 1px solid #bfdbfe;
}

.check-another h3 {
    margin-top: 0;
    color: #1e40af;
}

/* Trending section */
.trending {
    margin: 30px 0;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

.item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.item a:hover {
    text-decoration: underline;
}

.item span {
    color: #6b7280;
    font-size: 14px;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 30px;
    font-size: 14px;
    text-align: center;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

.footer a {
    color: #2563eb;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .status-box h2 {
        font-size: 22px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-share {
        display: block;
        margin: 10px 0;
    }
}