/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e8eaed;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content */
main {
    padding: 40px 0;
}

section {
    background: #2d2d2d;
    margin: 30px 0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #404040;
}

section h2 {
    color: #64b5f6;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

section h3 {
    color: #b0bec5;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.btn-download {
    background-color: #27ae60;
    color: white;
}

.btn-download:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Download grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.download-item {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #505050;
    text-align: center;
}

.download-item h3 {
    color: #64b5f6;
    margin-bottom: 10px;
}

.download-item p {
    color: #9e9e9e;
    margin-bottom: 15px;
}

/* Community section */
.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.community-item {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    border: 1px solid #505050;
    border-left: 4px solid #3498db;
}

.community-item ul {
    list-style: none;
    padding-left: 0;
}

.community-item ul li {
    margin: 8px 0;
}

.community-item a {
    color: #3498db;
    text-decoration: none;
}

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

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

footer h3 {
    color: #3498db;
    margin-bottom: 15px;
    margin-top: 25px;
}

footer h3:first-child {
    margin-top: 0;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

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

/* Dashboard links */
.dashboard-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dashboard-links .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        margin: 20px 0;
        padding: 20px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .download-grid,
    .community-links {
        grid-template-columns: 1fr;
    }
}