/* styles/about.css */

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Connection Status Indicator (specific to about page if needed, otherwise move to header.css) */
.connection-status {
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 8px 16px;
    border: 2px solid #541767;
    border-radius: 20px;
    cursor: not-allowed;
    font-family: 'Comic Neue', cursive;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #fff;
}

.connection-status.connected {
    background-color: #00ff7f;
    color: #121212;
    animation: pulse 1.5s infinite;
}

.connection-status.disconnected {
    background-color: #ff4d4d;
    color: #fff;
    animation: none;
}

.connection-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(255, 157, 0, 0.3);
}

/* Pulse animation for connected state */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

main {
    padding: 2em;
    background-color: #121212;
    color: #fff;
    flex: 1;
}

.about-content {
    background-color: #1a1a1a;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: #ff9d00;
    text-align: center;
    margin-bottom: 1em;
    font-family: 'Comic Neue', cursive;
    font-size: 2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #fff;
}

footer {
    background: linear-gradient(90deg, #541767 0%, #022253 100%);
    color: #fff;
    text-align: center;
    padding: 1em 0;
    width: 100%;
}

.footer-links {
    margin-top: 0.5em;
}

.footer-links a {
    color: #ff9d00;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e68c00;
    text-decoration: underline;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    main {
        padding: 1em;
    }

    .about-content {
        padding: 1.5em;
    }

    .about-content h2 {
        font-size: 1.8em;
    }

    .about-content p {
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .about-content {
        padding: 1em;
    }

    .about-content h2 {
        font-size: 1.5em;
    }

    .about-content p {
        font-size: 0.9em;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
    }
}