/* Base styles */
body {
    background: #1c1f26;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2em;
}

/* Navigation */
.list-of-apps {
    text-align: center;
    margin-bottom: 6em;
}

.list-of-apps a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0 1em;
}

.list-of-apps a:hover {
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 4em 2em;
    color: rgba(255,255,255,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.footer a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.credit {
    font-size: 1em;
    margin: 0;
}

.contact {
    font-size: 1em;
}

.heart {
    display: inline-block;
    margin: 0 0.2em;
    font-size: 1em;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5em;
    }
    
    .footer {
        flex-direction: column;
        gap: 1.5em;
        text-align: center;
    }
} 