* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e2f, #2c2c4a);
    min-height: 100vh;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(100, 120, 255, 0.5);
    position: relative;
}

.page-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.link-card a {
    color: #e0e0ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
}

.link-card a:hover {
    color: #667eea;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    .link-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}