/* Quantum Glyphs CSS Styles */
body {
    background-color: #0d1b2a;
    color: #e0e1dd;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

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

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    color: #f72585;
    font-size: 36px;
    margin-bottom: 10px;
}

.header p {
    color: #4cc9f0;
    font-size: 18px;
}

.nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.nav a {
    color: #4cc9f0;
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: #1b263b;
}

.nav-tabs a.highlight {
    background-color: #7209b7;
    color: white;
    position: relative;
}

.nav-tabs a.highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #f72585;
    border-radius: 50%;
}

.glyph-section {
    margin-bottom: 60px;
    border-bottom: 1px solid #415a77;
    padding-bottom: 40px;
}

.glyph-section h2 {
    color: #7209b7;
    font-size: 28px;
    margin-bottom: 20px;
}

.glyph-section h3 {
    color: #4cc9f0;
    font-size: 22px;
    margin-bottom: 15px;
}

.description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.extended-glyph {
    margin-bottom: 30px;
    text-align: center;
}

.glyph-info {
    background-color: #1b263b;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.glyph-info p {
    margin: 10px 0;
    line-height: 1.5;
}

.glyph-info strong {
    color: #4cc9f0;
}

.glyph-info code {
    background-color: #415a77;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    color: #778da9;
    font-size: 14px;
}

.footer a {
    color: #4cc9f0;
    text-decoration: none;
}

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

/* Report Links Styling */
.report-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.report-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 300px;
    background: linear-gradient(135deg, #7209b7, #4cc9f0);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.report-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.report-button .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.report-button .text {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.report-button .description {
    font-size: 0.9em;
    text-align: center;
    opacity: 0.9;
}
