.elementor-571 .elementor-element.elementor-element-a4eddc5{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:49px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-571 .elementor-element.elementor-element-294652b{--display:flex;}.elementor-571 .elementor-element.elementor-element-aba407c{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:91px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-571 .elementor-element.elementor-element-c44802c{--display:flex;}.elementor-571 .elementor-element.elementor-element-5cd8cee{--display:flex;}.elementor-571 .elementor-element.elementor-element-39a81fb{--display:flex;}.elementor-571 .elementor-element.elementor-element-c2c6883{--display:flex;}.elementor-571 .elementor-element.elementor-element-e7cbd5e{--display:flex;}.elementor-571 .elementor-element.elementor-element-637b1df{--display:flex;}.elementor-571 .elementor-element.elementor-element-a85adb2{--display:flex;}.elementor-571 .elementor-element.elementor-element-75257ca{--display:flex;}.elementor-571 .elementor-element.elementor-element-c18c688{--display:flex;}.elementor-571 .elementor-element.elementor-element-d2a594d{--display:flex;}.elementor-571 .elementor-element.elementor-element-9b0b0c8{--display:flex;}.elementor-571 .elementor-element.elementor-element-8836401{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4ce2e2b *//* Container 3 - PDF Download Button */
.container-3-download {
    text-align: center;
    padding: 25px 20px;
    margin-bottom: 30px;
}

.custom-download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #b59458 0%, #9b7d4a 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #b59458;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(181, 148, 88, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Shine effect on hover */
.custom-download-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.custom-download-button:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.custom-download-button:hover {
    background: linear-gradient(135deg, #008c9e 0%, #006d7a 100%);
    border-color: #008c9e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 140, 158, 0.4);
    color: white !important; /* Ensures text stays white */
}

.custom-download-button:hover .download-icon {
    stroke: white !important; /* Ensures icon stays white */
}

.download-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    position: relative;
    z-index: 1;
    animation: bounce 2s infinite;
}

/* Ensure text and icon stay on top */
.custom-download-button span,
.custom-download-button svg {
    position: relative;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.custom-download-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(181, 148, 88, 0.4);
}

/* Alternative style - if you prefer gold glow on hover instead of color change */
.custom-download-button.gold-glow:hover {
    background: linear-gradient(135deg, #d4a76a 0%, #b59458 100%);
    border-color: #d4a76a;
    box-shadow: 
        0 10px 30px rgba(181, 148, 88, 0.5),
        0 0 40px rgba(181, 148, 88, 0.3);
    color: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-download-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1650ce4 *//* Master Container */
.vann-master-container {
    font-family: 'Poppins', -apple-system, sans-serif;
    color: #212529;
    line-height: 1.7;
}

/* Container 1 - Header */
.container-1-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 20px;
}

.container-1-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin: 20px 0 10px;
    color: white;
}

.container-1-header h2 {
    color: #b59458;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.date-header {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Container 2 - Contact Bar */
.container-2-contact {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Container 3 - Highlights */
.container-3-highlights {
    background: white;
    padding: 30px;
    border-left: 5px solid #b59458;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
}

.container-3-highlights h2 {
    color: #2c3e50;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Chart Styles */
.sp500-chart-container,
.credit-spreads-chart-container {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.chart-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
}

.chart-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.price-change.positive {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
}

.sp500-chart, .credit-chart {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Container 4+ - Content Sections */
.container-4-stocks,
.container-5-perspective,
.container-8-economic,
.container-9-special {
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

h2 {
    color: #2c3e50;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #b59458;
}

h3 {
    color: #34495e;
    font-size: 1.6rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, #008c9e 0%, #006d7a 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.quote-box p {
    color: white;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* SP500 Data Box */
.sp500-data-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Performance Section */
.performance-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.performance-section p {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.performance-section p:hover {
    border-color: #b59458;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Container 12 - Disclaimer */
.container-12-disclaimer {
    background: #2c3e50;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.container-12-disclaimer p {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* Lists */
ul, ol {
    padding-left: 25px;
    line-height: 1.8;
}

li {
    margin-bottom: 10px;
}

/* Strong Text */
strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .performance-section { grid-template-columns: 1fr; }
    .chart-header { flex-direction: column; gap: 15px; }
}/* End custom CSS */