/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    padding: 40px 20px;
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(100,100,200,0.3);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #fff, #a0a0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 1.2rem;
    color: #b0b0d0;
    border-bottom: 1px solid #404080;
    display: inline-block;
    padding-bottom: 10px;
}

.intro {
    background: rgba(0,0,0,0.3);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 40px;
    border-left: 4px solid #6c63ff;
    font-size: 1.05rem;
    line-height: 1.5;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #a0a0ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid #6c63ff;
}

.site-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.site-card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(100,100,200,0.2);
}

.site-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(100,100,200,0.5);
    transform: translateX(5px);
}

.site-icon {
    font-size: 2rem;
}

.site-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #c0c0ff;
}

.site-info p {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 12px;
    line-height: 1.4;
}

.archive-date {
    font-size: 0.7rem;
    background: rgba(100,100,200,0.3);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.note {
    background: rgba(108,99,255,0.15);
    padding: 20px;
    border-radius: 16px;
    margin: 32px 0;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid rgba(108,99,255,0.5);
}

.note a {
    color: #a0a0ff;
    text-decoration: none;
}

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

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .container {
        padding: 24px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .site-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
}
