/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #111;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

/* Header */
.page-header {
    background-color: #1a1a1a;
    padding: 15px 30px;
    border-bottom: 1px solid #333;
}

.page-header .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.page-header .logo-link img {
    height: 40px;
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 0.2em;
}

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

/* License Styling */
.license-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 25px;
}

.license-card h2 {
    font-size: 1.6em;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.license-card a {
    color: #00aaff;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.license-card a:hover {
    text-decoration: underline;
}

.license-text {
    background-color: #111;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
    font-size: 0.9em;
    max-height: 250px;
    overflow-y: auto;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 20px 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-top: 40px;
}
