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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #121212;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

header {
    background: #121212;
    color: #ffffff;
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

header h1 {
    font-size: 2em;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 0.95em;
    opacity: 0.6;
    font-weight: 300;
}

main {
    padding: 40px 20px;
}

.links-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    margin-top: 30px;
    background: #2a2a2a;
}

.link-card {
    background: #121212;
    border: none;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: #e0e0e0;
    transition: background 0.2s ease;
}

.link-card:hover {
    background: #1a1a1a;
    transform: none;
    box-shadow: none;
}

.icon {
    font-size: 2em;
    margin-bottom: 15px;
    opacity: 0.7;
}

.link-card h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1em;
    font-weight: 400;
}

.link-card p {
    color: #888;
    font-size: 0.85em;
    font-weight: 300;
}

.content-page {
    padding: 40px 20px;
}

.content-page h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 400;
}

.content-page h3 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 400;
}

.content-page p {
    margin-bottom: 15px;
    color: #b0b0b0;
    font-weight: 300;
}

.content-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-page li {
    margin-bottom: 8px;
    color: #b0b0b0;
    font-weight: 300;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s ease;
    border: 1px solid #2a2a2a;
    font-size: 0.9em;
}

.back-link:hover {
    background: #2a2a2a;
}

.contact-info {
    background: #1a1a1a;
    border-left: 2px solid #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0;
}

.contact-info h3 {
    margin-top: 0;
    color: #ffffff;
    font-weight: 400;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1em;
}

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

footer {
    background: #121212;
    text-align: center;
    padding: 30px 20px;
    color: #666;
    border-top: 1px solid #2a2a2a;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }
    
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    .content-page {
        padding: 30px 15px;
    }
    
    body {
        padding: 0;
    }
}
