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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff7ec;
    padding: 20px;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

h1 .install-cmd {
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.6;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

h1 .install-cmd:hover {
    opacity: 0.9;
}

.copy-tooltip {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.copy-tooltip.show {
    opacity: 1;
}

h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.95em;
}

.subtitle {
    color: #888;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.quick-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quick-links.bottom-links {
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.quick-link-box {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.quick-link-box:hover {
    background-color: #fffcf5;
    color: #000;
}

.quick-link-box code {
    background-color: transparent;
    color: inherit;
    padding: 0;
}

.carousel-line {
    display: flex;
    align-items: center;
}

.carousel-line .label {
    margin-right: 1rem;
    white-space: nowrap;
    font-weight: 700;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s ease;
}

.carousel-item {
    white-space: nowrap;
    color: #888;
}

.content {
    margin-top: 2rem;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    color: #555;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.detail-box {
    border: 2px solid #000;
    padding: 1.5rem;
    background-color: #fffcf5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-box a {
    color: #000;
}

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

    h2 {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .carousel {
        gap: 1.5rem;
    }

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

    .content p {
        font-size: 1rem;
    }
}

