/* Neue Montreal Font Family */
@font-face {
    font-family: 'Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Inter Font Family */
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Fira Mono Font Family */
@font-face {
    font-family: 'Fira Mono';
    src: url('../assets/fonts/FiraMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Mono';
    src: url('../assets/fonts/FiraMono-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Mono';
    src: url('../assets/fonts/FiraMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------------------- */

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

body {
    background: #EFEFEF;
    font-family: 'Neue Montreal', sans-serif;
    color: #333;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.header {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid  rgba(0, 0, 0, 0.30);
    
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-section {
    display: flex;
    gap: 10px;
}

.main-title {
    color: #1A1A18;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 64px */
    letter-spacing: -0.64px;
}

.subtitle {
    color: #1A1A18;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    text-decoration: none;
}

.subtitle a {
    text-decoration: none;
    color: #1A1A18;
}
.subtitle a:visited {
    color: #1A1A18;
}

.header-logo {
    display: flex;
    align-items: center;
}

.bl-logo {
    width: 48.14px;
    height: 46.526px;
    aspect-ratio: 48.14/46.53;
}

.content {
    display: flex;
    /* margin-top: 120px; */
    gap: 20px;
    /* min-height: 600px; */
}

.chart-section {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.chart-container {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    flex: 1;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instructions {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.instructions h3 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

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

.instructions li {
    color: #666;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
    font-size: 12px;
}

.instructions li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .content {
        flex-direction: column;
        padding: 15px;
    }

    .chart-section {
        flex: none;
    }

    .header {
        padding: 30px 20px 20px 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .bl-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 15px 15px 15px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 12px;
    }

    .bl-logo {
        width: 48.14px;
        height: 46.526px;
        aspect-ratio: 48.14/46.53;
    }

    .content {
        padding: 8px;
        gap: 15px;
    }

    .chart-container {
        /* min-height: 400px; */
        padding: 8px;
    }
}

/* Requirements Section Styles - Clean Minimalist Design */
.requirements-section {
    background: #fff;
    margin: 20px 0;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.requirement-card-header {
    margin-bottom: 40px;
}

.requirements-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
    transition: box-shadow 0.2s ease;
}

.requirement-card ul {
    list-style-type: none;
    list-style: none;
}

.requirement-card li {
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    margin-top: 10px;
    padding-top: 10px;
    margin-bottom: 20px;
    color: #000;
    font-family: "Neue Montreal";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.requirement-card h3 {
    color: #1A1A18;
    font-family: 'Neue Montreal', monospace;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 33px */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.h3-arrow {
    width: 26px;
    height: 26px;

}


.requirement-card h4 {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin: 12px 0 6px 0;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-card strong {
    color: #333;
    font-weight: 600;
}

.requirement-card a {
    color: #1F79FF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.requirement-card a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.install-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-methods code {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 10px;
    width: 100%;
    color: #000;
    font-family: "Fira Mono";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    font-size: 11px;
    display: block;
    margin: 6px 0;
}


.usage-example h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.usage-example pre {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    overflow-x: auto;
    margin: 0;
    border: 1px solid #e9ecef;
}

.usage-example code {
    color: #495057;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 12px;
    line-height: 1.4;
}

/* Responsive adjustments for requirements section */
@media (max-width: 768px) {
    .requirements-section {
        padding: 15px;
        margin: 15px 0;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .requirement-card {
        padding: 12px;
    }

    .requirements-content h2 {
        font-size: 18px;
    }
}