* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #000000;
    border-bottom: 1px solid #333333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-size: 20px;
    color: #ff8c00;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff8c00;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background-color: #000000;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 72px;
    color: #ff8c00;
    margin-bottom: 15px;
    letter-spacing: 6px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ff8c00;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e67e00;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background-color: transparent;
    color: #ff8c00;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #ff8c00;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #ff8c00;
    color: #000000;
}

.hero-badge {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #ff8c00;
    color: #000000;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.scroll-indicator {
    margin-top: 60px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.section-title {
    font-size: 42px;
    color: #ff8c00;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: 3px;
    font-weight: 900;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: #ff8c00;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.feature-card p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

.philosophy {
    padding: 100px 0;
    background-color: #000000;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-statement {
    font-size: 32px;
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 30px;
}

.philosophy-content p {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat {
    padding: 30px;
    background-color: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    color: #ff8c00;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    color: #cccccc;
    font-size: 16px;
}

.cta {
    padding: 100px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    color: #ff8c00;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
}

.btn-large {
    padding: 20px 60px;
    font-size: 20px;
}

.footer {
    background-color: #000000;
    border-top: 1px solid #333333;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ff8c00;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ff8c00;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.docs-hero {
    padding: 160px 0 80px;
    background-color: #0a0a0a;
    text-align: center;
}

.docs-title {
    font-size: 56px;
    color: #ff8c00;
    margin-bottom: 15px;
    font-weight: 900;
}

.docs-subtitle {
    font-size: 20px;
    color: #cccccc;
}

.docs-content {
    padding: 80px 0;
    background-color: #000000;
}

.doc-section {
    margin-bottom: 60px;
}

.doc-section h2 {
    color: #ff8c00;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.doc-section h3 {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.doc-section p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.doc-section ol,
.doc-section ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.doc-section li {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.shortcut-table {
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.shortcut-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid #333333;
    background-color: #0a0a0a;
}

.shortcut-row:last-child {
    border-bottom: none;
}

.shortcut-row:nth-child(even) {
    background-color: #000000;
}

.shortcut-key {
    color: #ff8c00;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
}

.shortcut-action {
    color: #cccccc;
}

.content-page {
    padding: 160px 0 80px;
    background-color: #000000;
}

.page-title {
    font-size: 56px;
    color: #ff8c00;
    margin-bottom: 50px;
    font-weight: 900;
    text-align: center;
}

.content-body {
    max-width: 900px;
    margin: 0 auto;
}

.content-body h2 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 700;
}

.content-body p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-body ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.content-body li {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.6;
}

.privacy-statement {
    font-size: 32px;
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 30px;
}

.last-updated {
    color: #666666;
    font-size: 14px;
    margin-top: 50px;
    font-style: italic;
}

.license-type {
    font-size: 32px;
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 15px;
}

.license-copyright {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.license-summary {
    margin-top: 50px;
    padding: 30px;
    background-color: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 8px;
}

.license-summary h2 {
    margin-top: 0;
}

/* Screenshot Carousel Styles */
.screenshots {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.screenshot-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-container {
    position: relative;
    border: 2px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #000000;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-image {
    max-width: 100%;
    max-height: 600px;
    display: block;
    transition: opacity 0.3s ease;
}

.screenshot-image.active {
    opacity: 1;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.carousel-btn {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #FFFFFF;
}

.carousel-btn:hover {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #000000;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333333;
    cursor: pointer;
    transition: all 0.2s;
}

.indicator.active {
    background-color: #ff8c00;
    transform: scale(1.2);
}

.screenshot-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border: 2px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #666666;
    font-size: 12px;
    text-align: center;
}

.thumbnail.active {
    border-color: #ff8c00;
    transform: scale(1.05);
}

.thumbnail:hover {
    border-color: #ff8c00;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder {
    background-color: #111111;
    border: 2px dashed #333333;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff8c00;
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e67e00;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-stats {
        grid-template-columns: 1fr 1fr;
    }

    .docs-title,
    .page-title {
        font-size: 42px;
    }

    .shortcut-row {
        flex-direction: column;
        gap: 5px;
    }

    .screenshot-container {
        min-height: 300px;
    }

    .screenshot-thumbnails {
        flex-wrap: wrap;
    }

    .thumbnail {
        width: 100px;
        height: 70px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}
