
/* VST Styling */
.vst-guide-container {
    margin: 20px auto;
    background: #2a2a4a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 65px;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vst-guide-header {
    background: #4a2b7a;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    min-height: 65px;
    display: flex;
    align-items: center;
}

.vst-guide-header h3 {
    margin: 0;
    padding-right: 40px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ast-global-color-2, #ffd700);
    line-height: 1.2;
}

.vst-guide-content {
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

.vst-step {
    margin-bottom: 1.2rem;
    padding: 0.4rem;
    background: #332b4a;
    border-radius: 8px;
    border: 2px solid #6b21a8;
    border-left: 6px solid #6b21a8;
}

.vst-step-number {
	font-size: 26px !important;
}

.vst-step-text{
	font-size: 20px !important;
}

.vst-note{
	font-size: 20px !important;
}

/* Expanded states */
.vst-guide-container.expanded {
    max-height: 2000px;
}

.vst-guide-container.expanded .vst-guide-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    height: auto;
    overflow: visible;
}

.vst-guide-header:after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    width: 40px;
    height: 40px;
    display: flex;
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.vst-guide-container.expanded .vst-guide-header:after {
    transform: translateY(-50%) rotate(180deg);
}

.vst-step h3 {
    font-size: 1.1rem;
	margin-bottom: 3px;
}

.vst-step p {
    margin-bottom: 0;
}

.vst-guide-header h2 {
    font-size: 1.7rem;
}

.vst-highlight {
    color: var(--ast-global-color-2, #ffd700);
    font-weight: 600;
}

.vst-button-container {
    text-align: center;
    margin-top: 0.7rem;
		font-size: 20px !important;
}

.vst-download-button {
    display: inline-block;
    background: #6b21a8;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.vst-download-button:hover {
    background: #5a1b96;
    border-color: var(--ast-global-color-2, #ffd700);
    transform: translateY(-2px);
}

.vst-repo-link {
    color: var(--ast-global-color-2, #ffd700);
    text-decoration: none;
    transition: color 0.2s;
}

.vst-repo-link:hover {
    color: #b39200;
}

.vst-note {
    font-style: italic;
    color: #e1e1e6;
    margin-top: 1rem;
    font-size: 1.1rem;
    background: #231f35;
    padding: 1rem;
    border-radius: 6px;
}

@media screen and (max-width: 1024px) {	
    .vst-guide-container {
        max-height: 80px;
    }

    .vst-guide-container.expanded {
        max-height: 2000px !important;
    }

    .vst-guide-header {
        min-height: 80px;
    }

    .vst-guide-header h3 {
        font-size: 1.3rem;
    }

    .vst-guide-content {
        padding: 1rem 0.5rem !important;
    }

    .vst-step {
        padding: 0.3rem !important;
        margin-bottom: 1rem !important;
    }
	
    /* Hide outer group on mobile */
	.vst-outer-container {
		margin: -10px !important;
		padding: 10px !important;
		border: none !important;
		background: none !important;
		border-radius: none !important;
	}
	
	.vst-step-number {
		font-size: 24px !important;
	}

	.vst-step-text{
		font-size: 18px !important;
	}

	.vst-note{
		font-size: 18px !important;
	}
	.vst-button-container {
			font-size: 18px !important;
	}
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .vst-guide-container {
        max-height: 90px;
    }

    .vst-guide-header {
        min-height: 90px;
        padding: 0.8rem;
    }

    .vst-guide-header h3 {
        font-size: 1.2rem;
    }
	
	.setup-sliding-label {font-size: 
		18px !important;
	} 
	
	.setup-text {
			font-size: 16px;
	}
	
	.vst-step-number {
		font-size: 22px !important;
	}

	.vst-step-text{
		font-size: 16px !important;
	}

	.vst-note{
		font-size: 16px !important;
	}	
	.vst-button-container {
			font-size: 14px !important;
	}
}