.tuning-page {

    padding: 24px;
}

.tuning-header {

    margin-bottom: 24px;
}

.tuning-title {

    font-size: 42px;

    font-weight: 900;

    color:
        var(--text-color);
}

.tuning-subtitle {

    margin-top: 8px;

    color:
        var(--text-muted);
}

.tuning-layout {

    display: grid;

    grid-template-columns:
        1fr 360px;

    gap: 24px;
}

.tuning-preview {

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 500px;

    border-radius: 28px;

    background:
        var(--card-background);

    border:
        1px solid var(--card-border);
}

.tuning-sidebar {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.tuning-card {

    padding: 24px;

    border-radius: 24px;

    background:
        var(--card-background);

    border:
        1px solid var(--card-border);
}

.tuning-card-title {

    margin-bottom: 18px;

    color:
        var(--text-color);

    font-size: 18px;

    font-weight: 900;
}

.tuning-color-picker {

    width: 100%;

    height: 80px;

    border: none;

    cursor: pointer;

    border-radius: 16px;
}

.tuning-save-button {

    width: 100%;

    height: 56px;

    margin-top: 18px;

    border: none;

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            #FF3434,
            #8F0000
        );

    color: white;

    font-weight: 900;

    cursor: pointer;
}

@media (max-width:768px) {

    .tuning-layout {

        grid-template-columns:
            1fr;
    }

    .tuning-preview {

        min-height: 280px;
    }
}