@import url('./root.css');

/* Page Layout */
.page-about {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 1.5rem;
    color: var(--text-color, #e0e0e0);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted, #a0a0a0);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 204, 0, 0.2);
}

.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffcc00;
    border-bottom: 2px solid rgba(255, 204, 0, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Privacy Section Specifics */
.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.privacy-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color, #d0d0d0);
}

.privacy-section li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #ff6600; /* Mate orange/red */
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

/* Navigation (Basic styling if not covered by root.css) */

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 20%, rgba(255, 204, 0, 0.08), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.05), transparent 50%),
                #121212;
}

/* Links */
.page-about a {
    color: #ffcc00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.page-about a:hover {
    color: #ffdd44;
    border-bottom-color: #ffdd44;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links a {
        margin: 0 0.75rem;
    }
}