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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #95a6f4 0%, #3c39f1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    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);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    /* background: linear-gradient(135deg, #95a6f4 0%, #3c39f1 100%); */
    background: linear-gradient(135deg, #717172 0%, #22222c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.sites-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.site-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    display: block;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.site-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.site-description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

.site-url {
    color: #667eea;
    font-size: 0.9em;
    margin-top: 10px;
    opacity: 0.8;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9em;
}

.github-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.github-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .site-card {
        padding: 20px;
    }
}
