/* Import main styles */
@import url('../css/styles.css');

/* XTB Header like in image */
.xtb-header {
    background: transparent;
    padding: 30px 0;
    margin-top: 70px;
}

.xtb-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.xtb-header-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.xtb-header h1 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

/* Broker Navigation */
.broker-nav {
    background: rgba(16, 10, 31, 0.95);

    position: sticky;
    top: 70px;
    z-index: 100;

    padding: 10px ;
}

.broker-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding:  0px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    align-items: flex-end;

}

.broker-nav-container::-webkit-scrollbar {
    display: none;
}

.broker-nav-link {
    color: #888;
    text-decoration: none;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px ;

    white-space: nowrap;
    min-width: fit-content;
    position: relative;
    border: 2px solid rgba(60, 38, 110, 0.3)



}

.broker-nav-link:hover {
    background: rgba(60, 38, 110, 0.1);

    border-color: rgba(60, 38, 110, 0.4);
}

.broker-nav-link.active {
    background: rgba(60, 38, 110, 0.15);
    color: white;
    font-weight: 600;
    border-color: #3c266e;

    position: relative;
    z-index: 1;
}

.broker-nav-link.active::after {
    content: '';
    position: absolute;

    left: 0;
    right: 0;
    height: 1px;
    background: rgba(16, 10, 31, 0.95);
}

/* Broker Sections */
.broker-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(60, 38, 110, 0.3);
}

.broker-section p,
.broker-section li,
.broker-section span,
.broker-section div {
    color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(60, 38, 110, 0.3);
}

.section-header h2 {
    color: white;
    font-size: 24px;
    margin: 0;
}

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

.rating-score {
    background: linear-gradient(135deg, #3c266e, #5a3f8f);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
}

/* Rating color coding */
.rating-score.rating-excellent {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.rating-score.rating-good {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.rating-score.rating-poor {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* Broker Overview Card */
.broker-overview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(60, 38, 110, 0.4);
    margin-bottom: 25px;
}

.broker-overview-card p,
.broker-overview-card li,
.broker-overview-card span,
.broker-overview-card div,
.overview-content p {
    color: #ccc;
}

.broker-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.broker-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.broker-info h3 {
    color: white;
    font-size: 24px;
    margin: 0 0 5px 0;
}

.broker-info p {
    color: #ccc;
    margin: 0;
    font-size: 16px;
}

.overview-content p {
    color: white;
    line-height: 1.6;
    font-size: 16px;
}

/* Pros and Cons */
.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Ensure payment section has proper spacing */
#einzahlung .pros-cons-container {
    gap: 30px !important;
    margin-bottom: 30px;
}

.pros-section, .cons-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(60, 38, 110, 0.3);
}

/* Additional spacing for payment section boxes */
#einzahlung .pros-section,
#einzahlung .cons-section {
    margin: 0;
}

.pros-section h3 {
    color: #10b981;
    margin-bottom: 20px;
    font-size: 20px;
}

.cons-section h3 {
    color: #ef4444;
    margin-bottom: 20px;
    font-size: 20px;
}

.pros-section ul, .cons-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list,
.payment-list,
.platform-list,
.product-list,
.interest-feature-list,
.investment-plans-list,
.leverage-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list li,
.payment-list li,
.platform-list li,
.product-list li,
.interest-feature-list li,
.investment-plans-list li,
.leverage-warning-list li {
    color: white;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.fee-list li::before,
.payment-list li::before,
.platform-list li::before,
.product-list li::before,
.interest-feature-list li::before,
.investment-plans-list li::before,
.leverage-warning-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.pros-section li, .cons-section li {
    color: white;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.pros-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons-section li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(16, 10, 31, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    z-index: 1000;
}

.bottom-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.broker-info-small {
    display: none;
}

.bottom-bar-logo {
    display: none;
}

.broker-name {
    display: none;
}

.visit-broker-btn {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.visit-broker-btn:hover {
    background: linear-gradient(135deg, #9b59b6, #a569bd);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

/* Add bottom padding to main content to avoid overlap */
main {
    padding-bottom: 80px;
}

/* Warning Notice */
.warning-notice {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;

}

.warning-title {
    color: #fbbf24;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.warning-text {
    color: #ccc;
    margin: 0;
}

/* Fees Section */
.fees-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.fees-overview p,
.fees-overview li,
.fees-overview span,
.fees-overview div {
    color: #ccc;
}

.fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
}

/* Forex/Index Comparison */
.forex-comparison,
.index-comparison {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(60, 38, 110, 0.4);
    margin-bottom: 25px;
}

.comparison-title {
    color: white;
    margin-bottom: 20px;
}

.comparison-highlight {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.comparison-highlight p,
.comparison-highlight span {
    color: #ccc;
}

.comparison-subtitle {
    color: #10b981;
    margin-bottom: 15px;
}

.broker-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    text-align: center;
}

.broker-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.broker-winner {
    padding: 10px;
    background: rgba(60, 38, 110, 0.2);
    border-radius: 6px;
}

.broker-name {
    color: white;
    font-weight: 600;
}

.broker-spread {
    font-size: 18px;
    color: #ccc;
}

.broker-spread.winner {
    color: #10b981;
    font-weight: bold;
}

.broker-spread.best {
    color: #ef4444;
}

.broker-spread.worse {
    color: #ef4444;
}

.broker-note {
    color: #ccc;
    font-size: 12px;
}

.comparison-note {
    color: #ccc;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.spread-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spread-category {
    color: #ccc;
    margin-bottom: 10px;
}

.spread-list {
    color: #ccc;
    margin: 0;
}

/* Stock CFD Comparison */
.stock-cfd-comparison {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(60, 38, 110, 0.4);
    margin-bottom: 25px;
}

.comparison-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.comparison-content p,
.comparison-content li,
.comparison-content span,
.comparison-content div,
.comparison-highlight p,
.comparison-highlight span {
    color: #ccc;
}

.cost-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cost-title {
    color: #ccc;
    margin-bottom: 10px;
}

.cost-rating {
    color: #10b981;
    margin-bottom: 10px;
}

.cost-list {
    color: #ccc;
    margin: 0;
}

.cost-assessment {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}

/* Fees Overview */
.fees-overview {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(60, 38, 110, 0.4);
    margin-bottom: 20px;
}

.fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
}

.fee-category {
    max-width: 300px;
    text-align: left;
}

.fee-title-negative {
    color: #ef4444;
    margin-bottom: 10px;
}

.fee-title-positive {
    color: #10b981;
    margin-bottom: 10px;
}

.fee-list {
    color: #ccc;
    margin: 0;
}

.success-summary {
    margin-top: 20px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;

}

.summary-title {
    color: #10b981;
    margin: 0;
    font-weight: 600;
}

.summary-text {
    color: #ccc;
    margin: 5px 0 0 0;
}

/* Regulatory Table Styles */
.regulatory-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(60, 38, 110, 0.4);
    margin-bottom: 25px;
}

.regulatory-title {
    color: white;
    margin-bottom: 20px;
}

.table-wrapper {
    overflow-x: auto;
}

.regulatory-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.table-header {
    background: rgba(60, 38, 110, 0.3);
}

.table-cell-header {
    padding: 12px;
    color: white;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-cell {
    padding: 12px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.protection-amount {
    color: #10b981;
    font-weight: 600;
}

.no-protection {
    color: #ef4444;
    font-weight: 600;
}

.table-footnote {
    color: #ccc;
    margin-top: 15px;
    font-size: 14px;
}

/* Payment Methods Styles */
.payment-methods {
    margin-bottom: 25px;
}

.section-subtitle {
    color: white;
    margin-bottom: 20px;
}

.currency-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.currency-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.currency-badge {
    background: rgba(60, 38, 110, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
}

.currency-note {
    color: #ccc;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-column {
    /* No background needed here */
}

.payment-title-positive {
    color: #10b981;
    margin-bottom: 10px;
}

.payment-title-negative {
    color: #ef4444;
    margin-bottom: 10px;
}

.payment-title-neutral {
    color: #ccc;
    margin-bottom: 10px;
}

.payment-list {
    color: #ccc;
    margin: 0;
}

.conclusion-box {
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;

}

.conclusion-title {
    color: #10b981;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.conclusion-text {
    color: #ccc;
    margin: 0;
}

/* Platform Styles */
.platform-intro {
    margin-bottom: 25px;
}

.platform-section {
    margin-bottom: 25px;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.platform-column {
    /* No background needed here */
}

.platform-feature-title {
    color: #10b981;
    margin-bottom: 10px;
}

.platform-list {
    color: #ccc;
    margin: 0;
}

.analysis-tools-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.analysis-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.analysis-tool-card {
    text-align: center;
}

.tool-stat-box {
    background: rgba(60, 38, 110, 0.3);
    padding: 15px;
    border-radius: 8px;
}

.tool-stat-number {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
}

.tool-stat-label {
    color: #ccc;
    font-size: 14px;
}

/* Mobile Toggle Buttons for Pros/Cons */
.mobile-toggle-container {
    display: none;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(60, 38, 110, 0.3);
    margin: 20px 0;
}

.mobile-toggle-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
}

.mobile-toggle-btn {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    color: #ccc;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle-btn.active {
    background: rgba(60, 38, 110, 0.3);
    color: white;
}

.mobile-toggle-btn.pros-btn.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.mobile-toggle-btn.cons-btn.active {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;

}

.mobile-content {
    display: none;
}

.mobile-content.active {
    display: block;
}

/* Mobile content styling to match desktop */
.mobile-content h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.mobile-content p,
.mobile-content div,
.mobile-content span {
    color: white !important;
}

.mobile-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-content li {
    color: white !important;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    list-style: none;
}

/* Pros styling in mobile */
.mobile-content .pros-section li::before,
.mobile-toggle-container .mobile-content:first-of-type li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Cons styling in mobile */
.mobile-content .cons-section li::before,
.mobile-toggle-container .mobile-content:last-of-type li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Mobile content checkmarks - always show */
.mobile-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* When cons section is active, show X marks */
.mobile-toggle-btn.cons-btn.active ~ .mobile-content.active li::before {
    content: "✗";
    color: #ef4444;
}

/* Desktop checkmarks - clean and simple */
.pros-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons-section li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Hide h3 headings in mobile content */
.mobile-content h3 {
    display: none !important;
}

/* Spreads CTA Button */
.spreads-cta-container {
    text-align: center;
}

.spreads-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3c266e, #5a3f8f);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

.spreads-cta-btn:hover {
    background: linear-gradient(135deg, #5a3f8f, #6b4ba0);
    transform: translateY(-1px);
}

/* Centered fees grid */
.fees-grid-centered {
    justify-content: center;
}

/* Spread section */
.spread-description {
    color: #ccc;
    margin-bottom: 20px;
}

/* Spread highlights */
.spread-highlights {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.spread-examples-title {
    color: #10b981;
    margin-bottom: 15px;
}

.spread-examples-list {
    color: #ccc;
    margin: 0;
    list-style: none;
    padding: 0;
}

.spread-examples-list li {
    margin-bottom: 8px;
}

.spread-variation-note {
    color: #ccc;
    margin-bottom: 20px;
    font-style: italic;
}

/* No results message */
.no-results-message {
    display: none;
    text-align: center;
    color: white;
    margin-top: 20px;
    grid-column: 1 / 4;
}

/* Risk warning section */
.risk-warning-section {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

.risk-warning-title {
    margin-bottom: 15px;
}

.risk-warning-text {
    line-height: 1.5;
}

/* Affiliate disclaimer */
.affiliate-disclaimer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title-section {
        padding: 20px 0;
        margin-top: 65px;
    }
    /* XTB Header like in image */
    .xtb-header {

        margin-top: 8px;
    }
    .page-title-section h1 {
        font-size: 24px;

    }

    .broker-nav {
        top: 65px;
    }

    .broker-nav-container {
        padding: 0 15px;
    }

    .broker-nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .broker-section {
        margin: 20px 0;
        padding: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .rating-score {
        font-size: 16px;
        padding: 6px 12px;
    }

    /* Hide desktop pros-cons on mobile */
    .pros-cons-container {
        display: none;
    }

    /* Show mobile toggle version */
    .mobile-toggle-container {
        display: block;
    }

    .broker-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .broker-logo {
        width: 50px;
        height: 50px;
    }

    .broker-info h3 {
        font-size: 20px;
    }

    /* Mobile styles for other two-column layouts */
    .fees-pros-cons,
    .payment-grid,
    .platform-grid,
    .cost-details,
    .spread-details {
        display: none;
    }

    /* Keep fees-grid visible on mobile but stack vertically */
    .fees-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .fee-category {
        max-width: 100% !important;
        text-align: left !important;
    }

    /* Show mobile version for these too */
    .fees-pros-cons.mobile-toggle-container,
    .payment-grid.mobile-toggle-container,
    .platform-grid.mobile-toggle-container,
    .cost-details.mobile-toggle-container,
    .spread-details.mobile-toggle-container,
    .fees-grid.mobile-toggle-container {
        display: block;
    }
}

/* Security Section */
.security-intro {
    margin-bottom: 25px;
}

/* Product Diversity Styles */
.products-stats {
    margin-bottom: 25px;
}

.products-stats-content {
    text-align: center;
    padding: 20px;
}

.products-stats-number {
    color: #10b981;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.products-stats-title {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.products-stats-subtitle {
    color: #ccc;
    font-size: 14px;
}

/* Available Products */
.available-products {
    margin-bottom: 25px;
}

.available-products-title {
    color: white;
    margin-bottom: 20px;
}

.available-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: rgba(16, 185, 129, 0.1);
    padding: 20px;
    border-radius: 8px;

}

.product-card-title {
    color: #10b981;
    margin-bottom: 15px;
}

.product-list {
    color: #ccc;
    margin: 0;
    list-style: none;
    padding: 0;
}

.product-list li {
    margin-bottom: 8px;
}

.product-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.product-note p {
    color: #ccc;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

/* Unavailable Products */
.unavailable-products-title {
    color: #ef4444;
    margin-bottom: 20px;
}

.unavailable-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.unavailable-product-item {
    background: rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 8px;

}

.unavailable-product-name {
    color: #ef4444;
    font-weight: 600;
}

.product-conclusion {
    margin-top: 20px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;

}

.product-conclusion-title {
    color: #fbbf24;
    margin: 0;
    font-weight: 600;
}

.product-conclusion-text {
    color: #ccc;
    margin: 5px 0 0 0;
}

/* Trading Section */
.leverage-section {
    margin-bottom: 25px;
}

.leverage-title {
    color: white;
    margin-bottom: 20px;
}

.leverage-warning {
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    padding: 20px;

}

.leverage-warning-title {
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 10px;
}

.leverage-warning-list {
    color: #ccc;
    margin: 0;
}

/* Markets Overview */
.markets-overview {
    margin-bottom: 25px;
}

.markets-title {
    color: white;
    margin-bottom: 20px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.market-stat-card {
    background: rgba(60, 38, 110, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.market-stat-number {
    color: #10b981;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.market-stat-label {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.market-stat-description {
    color: #ccc;
    font-size: 14px;
}

/* Additional Features */
.additional-features-title {
    color: white;
    margin-bottom: 20px;
}

.interest-feature {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;

}

.interest-feature-title {
    color: #10b981;
    margin-bottom: 15px;
}

.interest-rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.interest-rate-item {
    text-align: center;
}

.interest-rate-value {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
}

.interest-rate-currency {
    color: #ccc;
    font-size: 14px;
}

.interest-feature-list {
    color: #ccc;
    margin-top: 15px;
    margin-bottom: 0;
}

.investment-plans-feature {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 20px;

}

.investment-plans-title {
    color: #10b981;
    margin-bottom: 15px;
}

.investment-plans-list {
    color: #ccc;
    margin: 0;
}

/* Account type spacing */
.account-type-spacing {
    margin-bottom: 25px;
}

@media (max-width: 450px) {
    .page-title-section h1 {
        font-size: 20px;
    }

    .broker-nav {
        top: 65px;
    }

    .broker-nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }

    .fixed-bottom-bar {
        padding: 10px 15px;
    }

    .broker-name {
        font-size: 14px;
    }

    .visit-broker-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .bottom-bar-logo {
        width: 25px;
        height: 25px;
    }
}