/* Base styles */
:root {
    --primary-color: #4B0082;
    --secondary-color: #8A2BE2;
    --accent-color: #00BFFF;
    --background-color: #0a0a0a;
    --card-bg-color: #1a1a1a;
    --text-color: #FFFFFF;
    --text-muted: #AAAAAA;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header styles */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-size: 24px;
    color: var(--accent-color);
}

.navigation {
    display: flex;
    gap: 20px;
}

.navigation a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.navigation a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navigation a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Content styles */
.content {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.page-title h2 {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.effective-date {
    color: var(--text-muted);
    font-size: 14px;
}

.section {
    margin-bottom: 25px;
}

.section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.section .intro {
    font-size: 18px;
    margin-bottom: 20px;
}

.section p {
    margin-bottom: 15px;
}

.section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.section ul li {
    margin-bottom: 8px;
}

/* Footer styles */
.footer {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo {
        margin: 0 auto;
    }

    .navigation {
        width: 100%;
        justify-content: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin: 0 auto;
    }
}

/* Hero section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #3CB0FD;
    text-decoration: none;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #000;
    text-decoration: none;
}

.btn-large {
    padding: 14px 30px;
    font-size: 1.1rem;
}

/* Section styling */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Dark section */
.dark {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
}

/* Command sections */
.command-section {
    margin-bottom: 30px;
}

.command-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.command-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.command-item {
    background-color: var(--card-bg-color);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.command-name {
    font-family: 'Courier New', monospace;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.command-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 30px;
}

/* Stats section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 50px 20px;
    margin: 30px 0;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-column p {
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .command-list {
        grid-template-columns: 1fr;
    }

    .stats-section {
        flex-direction: column;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}