:root {
    --primary-color: #639970;
    --primary-dark: #4b7554;
    --primary-light: #88b692;
    --text-color: #333;
    --background-color: #f8f8f8;
    --secondary-color: #4c4c4c;
    --accent-color: #e9e9e9;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #000;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    color: white;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    gap: 30px;
}

.cta-button {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

h1 {
    font-size: 24px;
    font-weight: 600;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.add-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.add-button:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
    cursor: pointer;
    z-index: 9999;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #111;
    z-index: 95;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 100px 0 30px;
    overflow-y: auto;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 15px;
    color: white;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: rgba(99, 153, 112, 0.1);
    color: var(--primary-color);
}

.add-button-mobile {
    background-color: var(--primary-color);
    color: white !important;
    text-align: center;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
}

body.menu-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .mobile-nav {
    transform: translateX(0);
}

body.menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(9px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h2 {
    font-size: 54px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.primary {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    z-index: 1;
}

.button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 8px;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.3;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.button.primary:hover::before {
    opacity: 0.5;
    filter: blur(12px);
}

.button.secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dot-landscape {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.features {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: rgba(99, 153, 112, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(99, 153, 112, 0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover, .feature-card.touch-active {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(99, 153, 112, 0.5);
}

.feature-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 38px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 15px;
}

.support {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.support h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.support p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

footer {
    background-color: #000;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
    width: 100%;
    position: relative;
    margin-top: auto;
}

footer::before {
    content: '';
    position: absolute;
    left: -1000px;
    right: -1000px;
    top: 0;
    bottom: 0;
    background-color: #000;
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 30px;
}

.logo-small {
    height: 40px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .footer-links {
        gap: 15px;
        padding: 0 20px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        position: relative;
        padding: 20px 0;
    }
    
    .logo-container {
        flex: 0 0 auto;
        justify-content: flex-start;
        position: relative;
        z-index: 95;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo {
        height: 50px;
        margin-right: 0;
    }
    
    nav {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    body.menu-open .mobile-nav-overlay {
        opacity: 1;
        pointer-events: auto;
        display: block;
    }
    
    body.menu-open .mobile-nav {
        transform: translateX(0);
        display: block;
    }

    .dot-landscape {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .hero-content h2 {
        font-size: 40px;
    }

    body {
        min-height: 100vh;
    }
    
    main {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .button,
    .support .button {
        display: inline-block;
        width: auto;
        min-width: 120px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .features h2, .support h2 {
        font-size: 28px;
    }
}

.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-content {
    max-width: 600px;
    position: relative;
    padding: 2rem;
}

.error-code {
    font-size: 12rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 10px rgba(99, 153, 112, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.error-404 h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.error-404 p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.error-buttons {
    margin-top: 2rem;
}

.error-buttons .button {
    font-size: 1.1rem;
    padding: 0.8rem 1.6rem;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 8rem;
    }
    
    .error-404 h2 {
        font-size: 2rem;
    }

    .error-404 {
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-404 p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .error-buttons .button {
        display: inline-block;
        width: auto;
        min-width: 120px;
        max-width: 180px;
        margin: 0 5px 10px;
        padding: 0.8rem 1rem;
    }
}

.invite-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.invite-content {
    max-width: 600px;
    padding: 50px 20px;
    transition: all 0.3s ease;
}

.invite-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.invite-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #aaa;
}

.discord-logo {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.invite-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.invite-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 153, 112, 0.3);
}

@media (max-width: 768px) {
    .invite-content {
        padding: 30px 20px;
    }
    
    .invite-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .invite-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .invite-content p {
        font-size: 16px;
    }
}

.legal-page {
    padding: 40px 0 80px;
    color: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(99, 153, 112, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(99, 153, 112, 0.1);
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.legal-content {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #f0f0f0;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-content .last-updated {
    color: #aaa;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content strong {
    color: var(--primary-light);
    font-weight: 600;
}

.legal-footer {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.legal-footer p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

.legal-footer .button.secondary {
    background-color: transparent;
    color: white;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
}

.legal-footer .button.secondary:hover {
    background-color: rgba(99, 153, 112, 0.1);
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
    }
    
    .legal-container h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content ul, .legal-content ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-container h1 {
        font-size: 24px;
    }
    
    .legal-content h2 {
        font-size: 18px;
    }
}

main {
    flex: 1;
}

.updates-hero {
    padding: 60px 0 40px;
    text-align: center;
    color: white;
    position: relative;
}

.updates-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.updates-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.updates-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.updates-hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.updates-timeline {
    padding: 40px 0 80px;
    color: white;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: rgba(99, 153, 112, 0.3);
    border-radius: 2px;
}

.update-entry {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.update-date {
    width: 120px;
    padding-right: 30px;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    padding-top: 5px;
    flex-shrink: 0;
}

.update-content {
    flex-grow: 1;
    background-color: rgba(99, 153, 112, 0.05);
    border-radius: 12px;
    padding: 25px 30px;
    border: 1px solid rgba(99, 153, 112, 0.1);
    margin-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.update-content:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 153, 112, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.update-content::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 15px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 4px solid #000;
    border-radius: 50%;
    z-index: 1;
}

.update-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.update-content p {
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.6;
}

.update-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.update-content ul li {
    margin-bottom: 8px;
    color: #ccc;
}

.update-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-badge.feature {
    background-color: rgba(99, 153, 112, 0.2);
    color: var(--primary-light);
    border: 1px solid rgba(99, 153, 112, 0.3);
}

.update-badge.fix {
    background-color: rgba(255, 107, 107, 0.2);
    color: #ff8a8a;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.update-badge.improvement {
    background-color: rgba(66, 133, 244, 0.2);
    color: #85adff;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.update-badge.development {
    background-color: rgba(241, 244, 66, 0.2);
    color: #f1f442;
    border: 1px solid rgba(241, 244, 66, 0.3);
}

@media (max-width: 768px) {
    .updates-hero h1 {
        font-size: 32px;
    }
    
    .timeline-container::before {
        left: 80px;
    }
    
    .update-date {
        width: 80px;
        font-size: 12px;
    }
    
    .update-content {
        margin-left: 20px;
    }
    
    .update-content::before {
        left: -25px;
    }
}

@media (max-width: 576px) {
    .update-entry {
        flex-direction: column;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .update-date {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        margin-bottom: 10px;
    }
    
    .update-content {
        margin-left: 0;
    }
    
    .update-content::before {
        left: -35px;
    }
    
    .updates-hero {
        padding: 40px 0 30px;
    }
    
    .updates-icon {
        font-size: 38px;
        margin-bottom: 20px;
    }
    
    .updates-hero h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .updates-hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .updates-timeline {
        padding: 30px 0 60px;
    }
    
    .timeline-container::before {
        left: 15px;
    }
    
    .update-entry {
        margin-bottom: 40px;
    }
    
    .update-date {
        padding-left: 40px;
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .update-content {
        padding: 20px;
        margin-left: 0;
    }
    
    .update-content::before {
        left: -25px;
        top: 12px;
        width: 16px;
        height: 16px;
    }
    
    .update-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .update-content p, .update-content li {
        font-size: 15px;
    }
    
    .update-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .careers-simple {
        padding: 50px 0;
    }
    
    .careers-simple-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .careers-simple-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 5px;
    }
    
    .job-listings-simple {
        gap: 10px;
    }
    
    .job-item-simple {
        padding: 18px 15px;
        border-radius: 8px;
        background-color: rgba(99, 153, 112, 0.05);
        border: 1px solid rgba(99, 153, 112, 0.1);
    }
    
    .job-info h2 {
        font-size: 18px;
    }
    
    .job-description {
        margin-top: 3px;
        margin-bottom: 12px;
    }
    
    .job-item-simple .button.secondary {
        width: 100%;
        text-align: center;
    }
    
    .volunteer-notice {
        margin-top: 25px;
        padding: 15px 10px;
        border-top: 1px solid rgba(99, 153, 112, 0.1);
    }
}

@media (max-width: 480px) {
    .update-content {
        margin-left: 15px;
    }
    
    .update-content::before {
        left: -23px;
    }
    
    .update-date {
        padding-left: 35px;
    }
    
    .careers-simple-title {
        font-size: 26px;
    }
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.transparency-card {
    background-color: rgba(99, 153, 112, 0.07);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 153, 112, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.transparency-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 153, 112, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.transparency-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(99, 153, 112, 0.1);
    color: var(--primary-color);
}

.transparency-icon i {
    font-size: 28px;
}

.transparency-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.transparency-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 15px;
}

.transparency-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.centered-info {
    margin-top: 30px;
    text-align: center;
}

.additional-info a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.additional-info a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .transparency-grid {
        grid-template-columns: 1fr;
    }

    .transparency-card {
        padding: 25px 20px;
    }
}

.docs-hero {
    padding: 60px 0 40px;
    text-align: center;
    color: white;
    position: relative;
}

.docs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.docs-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(99, 153, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.docs-icon i {
    font-size: 36px;
}

.docs-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.docs-hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.docs-content {
    padding: 40px 0 80px;
    color: white;
}

.docs-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.docs-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 30px;
    height: fit-content;
}

.docs-nav {
    background-color: rgba(99, 153, 112, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(99, 153, 112, 0.1);
}

.docs-nav h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.docs-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.docs-nav ul li a {
    color: #ddd;
    font-size: 15px;
    transition: all 0.2s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.docs-nav ul li a:hover, .docs-nav ul li a.active {
    background-color: rgba(99, 153, 112, 0.15);
    color: var(--primary-color);
}

.docs-main {
    flex-grow: 1;
}

.docs-section {
    margin-bottom: 60px;
    scroll-margin-top: 30px;
}

.docs-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.docs-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.docs-card {
    background-color: rgba(99, 153, 112, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(99, 153, 112, 0.1);
}

.docs-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.docs-card h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--primary-light);
}

.docs-card p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 15px;
}

.docs-card ul, .docs-card ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.docs-card ul li, .docs-card ol li {
    margin-bottom: 10px;
    color: #ccc;
}

.docs-code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    color: #ddd;
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
    overflow-x: auto;
}

code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2px 5px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.docs-tip {
    background-color: rgba(99, 153, 112, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.docs-tip i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
}

.docs-tip p {
    margin: 0;
    color: #ddd;
}

.docs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
}

.docs-table th, .docs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.docs-table th {
    background-color: rgba(99, 153, 112, 0.1);
    color: var(--primary-light);
    font-weight: 600;
}

.docs-table tr:last-child td {
    border-bottom: none;
}

.docs-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
}

.docs-faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
}

.docs-faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.docs-faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.docs-faq-item p {
    color: #ddd;
}

@media (max-width: 992px) {
    .docs-container {
        flex-direction: column;
    }

    .docs-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .docs-nav {
        margin-bottom: 30px;
    }
    
    .docs-nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .docs-nav ul li {
        flex-grow: 1;
    }
    
    .docs-nav ul li a {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .docs-hero h1 {
        font-size: 32px;
    }
    
    .docs-card {
        padding: 25px 20px;
    }
    
    .docs-section h2 {
        font-size: 24px;
    }
    
    .docs-card h3 {
        font-size: 20px;
    }
    
    .docs-table th, 
    .docs-table td {
        padding: 10px;
    }
    
    code {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .docs-hero h1 {
        font-size: 28px;
    }
    
    .docs-nav ul {
        flex-direction: column;
    }
    
    .docs-code {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .docs-table {
        display: block;
        overflow-x: auto;
    }
}

.careers-hero {
    padding: 60px 0 40px;
    text-align: center;
    color: white;
    position: relative;
}

.careers-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(99, 153, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.careers-icon i {
    font-size: 36px;
}

.careers-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.careers-hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.careers-content {
    padding: 40px 0 80px;
    color: white;
}

.careers-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.careers-intro, .careers-values, .open-positions, .general-applications, .careers-contact {
    margin-bottom: 60px;
}

.careers-intro h2, .careers-values h2, .open-positions h2, .general-applications h2, .careers-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.careers-intro p, .general-applications p, .careers-contact p {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
    max-width: 800px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background-color: rgba(99, 153, 112, 0.05);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(99, 153, 112, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 153, 112, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(99, 153, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-icon i {
    font-size: 24px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: #aaa;
    line-height: 1.6;
}

.job-listings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.job-card {
    background-color: rgba(99, 153, 112, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 153, 112, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 153, 112, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.job-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(99, 153, 112, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    font-size: 22px;
    color: white;
    margin: 0;
}

.job-type {
    background-color: rgba(99, 153, 112, 0.2);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.job-details {
    padding: 25px;
}

.job-details p {
    margin-bottom: 20px;
    color: #ddd;
}

.job-requirements {
    margin-bottom: 25px;
}

.job-requirements h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.job-requirements ul {
    list-style-type: disc;
    padding-left: 20px;
}

.job-requirements li {
    margin-bottom: 10px;
    color: #bbb;
}

.job-apply {
    display: inline-block;
    margin-top: 10px;
}

.general-applications {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(99, 153, 112, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 153, 112, 0.1);
    margin-top: 50px;
}

.general-applications .button.secondary {
    margin-top: 20px;
    border-color: var(--primary-color);
}

.careers-contact {
    text-align: center;
    margin-top: 60px;
}

.careers-contact a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.careers-contact a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 32px;
    }
    
    .careers-intro h2, .careers-values h2, .open-positions h2, .general-applications h2, .careers-contact h2 {
        font-size: 26px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-type {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .careers-hero h1 {
        font-size: 28px;
    }
    
    .careers-intro h2, .careers-values h2, .open-positions h2, .general-applications h2, .careers-contact h2 {
        font-size: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.job-description {
    color: #888;
    font-size: 15px;
    margin-top: 5px;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .job-description {
        font-size: 14px;
    }
}

.simple-job-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.job-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(99, 153, 112, 0.2);
}

.job-item:last-child {
    border-bottom: none;
}

.job-title {
    font-size: 22px;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.job-title:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .job-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .job-title {
        font-size: 18px;
    }
}

.careers-simple {
    padding: 80px 0;
    color: white;
    background-color: #000;
}

.careers-simple-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.careers-simple-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-simple-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 80px;
    max-width: 700px;
}

.job-listings-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(99, 153, 112, 0.2);
}

.job-item-simple:last-child {
    border-bottom: none;
}

.job-info h2 {
    font-size: 22px;
    color: white;
    margin: 0 0 5px;
    font-weight: 600;
}

.job-location {
    color: #888;
    font-size: 16px;
    margin: 0;
}

.apply-now-btn {
    background-color: #222;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #333;
}

.apply-now-btn:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .careers-simple {
        padding: 60px 0;
    }
    
    .careers-simple-title {
        font-size: 36px;
    }
    
    .careers-simple-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .job-item-simple {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }
    
    .apply-now-btn {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .careers-simple-title {
        font-size: 30px;
    }
    
    .careers-simple-subtitle {
        font-size: 15px;
    }
    
    .job-info h2 {
        font-size: 20px;
    }
    
    .careers-simple {
        padding: 50px 0;
    }
    
    .careers-simple-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .careers-simple-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 5px;
    }
    
    .job-listings-simple {
        gap: 10px;
    }
    
    .job-item-simple {
        padding: 18px 15px;
        border-radius: 8px;
        background-color: rgba(99, 153, 112, 0.05);
        border: 1px solid rgba(99, 153, 112, 0.1);
    }
    
    .job-info h2 {
        font-size: 18px;
    }
    
    .job-description {
        margin-top: 3px;
        margin-bottom: 12px;
    }
    
    .job-item-simple .button.secondary {
        width: 100%;
        text-align: center;
    }
    
    .volunteer-notice {
        margin-top: 25px;
        padding: 15px 10px;
        border-top: 1px solid rgba(99, 153, 112, 0.1);
    }
}

.volunteer-notice {
    margin-top: 30px;
    color: #888;
    font-size: 15px;
    text-align: center;
    padding-top: 15px;
}

@media (max-width: 576px) {
    .volunteer-notice {
        font-size: 14px;
        margin-top: 20px;
        padding-top: 10px;
    }
}

body.menu-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.login-box {
    background-color: #111;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
}

.login-box h2 {
    margin-bottom: 15px;
    color: white;
}

.login-box p {
    margin-bottom: 20px;
    color: #ccc;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-input {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #222;
    color: white;
    font-family: var(--font-family);
    font-size: 16px;
    width: 100%;
}

.login-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-button {
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: var(--primary-dark);
}

.error-message {
    color: #ff5555;
    margin-top: 15px;
    min-height: 20px;
}

.unauthorized-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    color: white;
    padding: 20px;
}

.unauthorized-container h2 {
    margin-bottom: 15px;
    color: white;
}

.unauthorized-container p {
    margin-bottom: 20px;
    color: #ccc;
}

.login-link {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.login-link:hover {
    background-color: var(--primary-dark);
}

.guide-container {
    padding: 40px 0;
    color: white;
}

.guide-content {
    background-color: #111;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.guide-content h1 {
    margin-bottom: 30px;
    font-size: 28px;
    color: white;
}

.guide-section {
    margin-bottom: 30px;
}

.guide-section h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
}

.guide-section p {
    margin-bottom: 15px;
    color: #eee;
}