/* CSS 变量定义 */
:root {
    --background: #ffffff;
    --muted: #f8f9fa;
    --text: #333333;
    --text-muted: #666666;
    --border: #e9ecef;
    --primary: #007bff;
    --primary-hover: #0056b3;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fcf7f8;
    background: oklch(98% .005 85);
}

/* Header 样式 */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fcf7f8;
    background: oklch(98% .005 85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: brightness(1.1);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-list a:hover {
    color: var(--primary);
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 主容器 */
.container {
    display: flex;
    min-height: calc(100vh - 80px);
    width: 100%;
    background: #ffffff;
}

/* 左侧边栏 */
.sidebar {
    position: sticky;
    top: 80px;
    left: 0;
    width: 250px;
    background-color: white;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 100;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-content {
    padding: 2rem 1.5rem;
}

.sidebar h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.sidebar-nav ul {
    list-style: none;
    margin-bottom: 2rem;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.875rem;
    line-height: 1.4;
}

.sidebar-nav a:hover {
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    color: var(--primary);
}

.nav-link.active {
    background-color: color-mix(in oklab, var(--primary) 15%, transparent);
    color: var(--primary);
    font-weight: 600;
}

.sidebar-widget {
    background-color: var(--muted);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.sidebar-widget h4 {
    margin-bottom: 1rem;
    color: var(--text);
}

.sidebar-widget p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.action-btn:hover {
    background: var(--primary);
    opacity: 0.9;
    transform: translateY(-1px);
}

/* 右侧内容区域 */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-items: center;
    padding: 0 2rem;
    background: #ffffff;
}

/* 主要内容区域 */
.main-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    padding: 0.25rem 0;
}

.breadcrumb-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 500;
}

/* Yoast SEO Breadcrumb Compatibility */
.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    padding: 0.25rem 0;
}

.breadcrumb-list li a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "»";
    margin: 0 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb-list li:last-child {
    color: var(--text);
    font-weight: 500;
}

/* Content Container */
.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.sub-container:first-child {
    /* 第一个子项目：无背景色，无边框样式 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* First Row - Logo and Company Info */
.sub-container-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 60px;
}

.logo-section {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
}

.company-logo-img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.company-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    height: 60px;
}

.company-name-text {
    font-size: 2rem;
    font-weight: 700;
    color: #1D2229;
    margin: 0;
}

.company-tags {
    display: flex;
    gap: 0.5rem;
}

.city-tag {
    background-color: #008B1D;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.years-tag {
    background-color: #F0532B;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Second Row - Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.btn-open-account {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-open-account:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-visit-website {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-visit-website:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-visit-website::after {
    content: "↗";
    font-size: 0.8rem;
}

.sub-container li:last-child {
    border-bottom: none;
}

.sub-container:last-child {
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.05) 0%, 
        rgba(40, 167, 69, 0.05) 50%, 
        rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Pros and Cons Section */
.pros-cons-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.pros-cons-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.pros-cons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros-column,
.cons-column {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pros-column {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.cons-column {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(220, 53, 69, 0.1) 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.pros-title,
.cons-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pros-title {
    color: #28a745;
}

.cons-title {
    color: #dc3545;
}

.pros-list ul,
.cons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text);
    position: relative;
    padding-left: 1.5rem;
}

.pros-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

/* Basic Information Section */
.basic-info-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.basic-info-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.basic-info-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.info-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.125rem;
    color: var(--text);
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.reviews-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.reviews-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
}

.reviews-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
    color: var(--text);
}

.reviews-nav-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.reviews-prev {
    left: -20px;
}

.reviews-next {
    right: -20px;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1.5rem;
}

.reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition);
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.review-card {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all var(--transition);
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-rating .star {
    color: #ffc107;
    font-size: 1rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
}

/* Overview and General Information Section */
.overview-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.overview-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.overview-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.overview-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.overview-text {
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* FXTRADING.com Safe? Regulation Analysis Section */
.regulation-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.regulation-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.regulation-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regulation-overview {
    margin-bottom: 2rem;
}

.safety-status {
    margin-bottom: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.status-indicator.safe {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-color: rgba(40, 167, 69, 0.2);
}

.status-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.status-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.regulation-details p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.regulation-details p:last-child {
    margin-bottom: 0;
}

.regulation-analysis {
    margin-bottom: 2rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.analysis-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.analysis-item.positive {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-color: rgba(40, 167, 69, 0.2);
}

.analysis-item.neutral {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.2);
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.analysis-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.analysis-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.analysis-content p {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.analysis-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.regulation-summary {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
}

.summary-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.summary-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.summary-recommendation {
    text-align: center;
}

.recommendation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-recommendation p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Customer Support Section */
.customer-support-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.customer-support-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.customer-support-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-status {
    display: flex;
    align-items: center;
}

.status-indicator.support {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.status-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 0.75rem;
}

.status-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.status-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.support-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.detail-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.detail-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 0.5rem;
}

.detail-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.detail-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Account Types and Trading Conditions Section */
.account-types-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.account-types-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.account-types-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.account-types-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.account-status {
    display: flex;
    align-items: center;
}

.status-indicator.premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.status-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.status-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.status-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.detail-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bff 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.detail-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.account-analysis {
    margin-bottom: 2rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.analysis-item {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.analysis-item.positive {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(25, 135, 84, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.2);
}

.analysis-item.neutral {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.05) 0%, rgba(73, 80, 87, 0.05) 100%);
    border-color: rgba(108, 117, 125, 0.2);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.analysis-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.analysis-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.analysis-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.analysis-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.score-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-value {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.account-summary {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.summary-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.5rem 0;
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.summary-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.summary-recommendation {
    text-align: center;
}

.recommendation-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.badge-text {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.summary-recommendation p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* Trading Platforms and Apps Section */
.trading-platforms-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.trading-platforms-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.trading-platforms-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platforms-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.platform-status {
    display: flex;
    align-items: center;
}

.status-indicator.platforms {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.status-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.status-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.status-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.platform-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.detail-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bff 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.detail-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.platform-analysis {
    margin-bottom: 2rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.analysis-item {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.analysis-item.positive {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(25, 135, 84, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.2);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.analysis-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.analysis-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.analysis-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.analysis-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.score-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-value {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.platform-summary {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.summary-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.5rem 0;
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.summary-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.summary-recommendation {
    text-align: center;
}

.recommendation-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.badge-text {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.summary-recommendation p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* Deposit and Withdrawal Section */
.deposit-withdrawal-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.deposit-withdrawal-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.deposit-withdrawal-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-status {
    display: flex;
    align-items: center;
}

.status-indicator.payment {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(220, 53, 69, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
}

.status-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107 0%, #dc3545 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.status-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.status-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.detail-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bff 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.detail-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-analysis {
    margin-bottom: 2rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.analysis-item {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.analysis-item.positive {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(25, 135, 84, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.2);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.analysis-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.analysis-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.analysis-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.analysis-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.score-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-value {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.payment-summary {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
}

.summary-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.5rem 0;
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.summary-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.summary-recommendation {
    text-align: center;
}

.recommendation-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.badge-text {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.summary-recommendation p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* Customer Support Section */
.customer-support-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.customer-support-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.customer-support-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-status {
    display: flex;
    align-items: center;
}

.status-indicator.support {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.status-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.status-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.status-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.support-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.detail-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bff 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.detail-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Frequently Asked Questions Section */
.faq-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.faq-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.04);
}

.faq-question[aria-expanded="true"] {
    background: rgba(0, 0, 0, 0.06);
}

.question-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.01);
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

/* Page Title Section */
.page-title-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
}

.page-description p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Related Forex Brokers Section */
.related-brokers-section {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.related-brokers-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--text);
}

.related-brokers-content {
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
}

.brokers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.broker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.broker-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.broker-logo {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 30px;
}

.broker-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.25rem;
}

.broker-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.2;
}

/* Rating Elements */
.rating-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.rating-score {
    font-size: 7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff 0%, #28a745 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.rating-scale {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.rating-stars {
    margin-bottom: 0.75rem;
}

.star {
    color: #dc3545;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.rating-footer {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 2rem;
}

.content-section > p {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Company Info Section */
.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #faf8f5;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    align-items: center;
}

/* Left Side - Company Logo and Info */
.company-info-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-chart {
    display: flex;
    align-items: end;
    gap: 3px;
    background: #000;
    border-radius: 8px;
    padding: 8px 12px;
    height: 40px;
}

.chart-bar {
    width: 8px;
    border-radius: 2px;
}

.chart-bar.blue {
    height: 20px;
    background: #007bff;
}

.chart-bar.orange {
    height: 28px;
    background: #ff6b35;
}

.chart-bar.green {
    height: 32px;
    background: #28a745;
}

.logo-text {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.regulatory-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

/* Right Side - Rating Card */
.company-info-right {
    display: flex;
    justify-content: center;
}

.rating-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 150px;
}

.rating-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff 0%, #28a745 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.rating-scale {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.rating-stars {
    margin-bottom: 0.75rem;
}

.star {
    color: #dc3545;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.rating-footer {
    font-size: 0.8rem;
    color: #666;
}

/* New Content Container */
.new-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-sub-container h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.content-sub-container p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.content-sub-container ul {
    list-style: none;
    padding: 0;
}

.content-sub-container li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    padding-left: 1.5rem;
}

.content-sub-container li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.content-sub-container li:last-child {
    border-bottom: none;
}

/* 内容网格 */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.content-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.06);
}

.content-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.content-card p {
    color: var(--text-muted);
}

/* 文本内容 */
.text-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.text-content h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.text-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* 响应式设计 */

/* Extra Small devices (phones, less than 768px) */

/* Extra Small devices (phones, less than 768px) */
@media (max-width: 767.98px) {
    .header-content {
        padding: 1rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .breadcrumb {
        margin-bottom: 1.5rem;
        padding: 0.75rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-separator {
        margin: 0 0.375rem;
    }
    
    /* Yoast SEO Breadcrumb Mobile Compatibility */
    .breadcrumb-list li:not(:last-child)::after {
        margin: 0 0.375rem;
    }
    
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .sidebar.open {
        left: 0;
    }
    
    .main-wrapper {
        width: 100%;
        padding: 0 1rem;
    }
    
    .main-content {
        width: 95%;
        margin: 0 auto;
        padding: 1rem;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .sub-container-row {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        height: auto;
    }
    
    .logo-section {
        height: auto;
        flex-shrink: 0;
    }
    
    .company-logo-img {
        width: 80px;
        height: 40px;
        object-fit: contain;
        border-radius: 6px;
    }
    
    .company-info-section {
        height: auto;
        gap: 0.5rem;
        flex: 1;
    }
    
    .company-name-text {
        font-size: 1.25rem;
    }
    
    .company-tags {
        flex-wrap: wrap;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-open-account,
    .btn-visit-website {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .company-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .rating-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .rating-score {
        font-size: 5.6rem;
    }
    
    .new-content-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .text-content {
        padding: 1.5rem;
    }
    
    .pros-cons-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .pros-cons-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pros-cons-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pros-column,
    .cons-column {
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .pros-title,
    .cons-title {
        font-size: 1.125rem;
    }
    
    .basic-info-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .basic-info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .basic-info-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.875rem;
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .reviews-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .reviews-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .reviews-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .reviews-container {
        gap: 0.5rem;
    }
    
    .reviews-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .reviews-prev {
        left: -16px;
    }
    
    .reviews-next {
        right: -16px;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 250px;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .reviewer-name {
        font-size: 0.9rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .overview-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .overview-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .overview-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .overview-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .overview-text {
        margin-bottom: 1.5rem;
    }
    
    .overview-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .regulation-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .regulation-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .regulation-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .status-indicator {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
    }
    
    .status-text h3 {
        font-size: 1.125rem;
    }
    
    .regulation-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analysis-item {
        padding: 1rem;
    }
    
    .analysis-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .analysis-icon {
        font-size: 1.25rem;
    }
    
    .analysis-header h4 {
        font-size: 0.9rem;
    }
    
    .analysis-content p {
        font-size: 0.8rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summary-card h4 {
        font-size: 1.125rem;
    }
    
    .summary-text p {
        font-size: 0.9rem;
    }
    
    .account-types-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .account-types-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .account-types-content {
        padding: 1.5rem;
    }
    
    .account-types-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .status-indicator.premium {
        padding: 1rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .status-text h3 {
        font-size: 1.125rem;
    }
    
    .status-text p {
        font-size: 0.85rem;
    }
    
    .account-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        padding: 0.75rem;
    }
    
    .detail-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .detail-content h4 {
        font-size: 0.9rem;
    }
    
    .detail-content p {
        font-size: 0.8rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analysis-item {
        padding: 1rem;
    }
    
    .analysis-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .analysis-header h4 {
        font-size: 0.9rem;
    }
    
    .analysis-content p {
        font-size: 0.85rem;
    }
    
    .analysis-score {
        padding: 0.5rem;
    }
    
    .score-label,
    .score-value {
        font-size: 0.8rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-card h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-text p {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .summary-recommendation p {
        font-size: 0.8rem;
    }
    
    .trading-platforms-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .trading-platforms-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .trading-platforms-content {
        padding: 1.5rem;
    }
    
    .platforms-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .status-indicator.platforms {
        padding: 1rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .status-text h3 {
        font-size: 1.125rem;
    }
    
    .status-text p {
        font-size: 0.85rem;
    }
    
    .platform-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        padding: 0.75rem;
    }
    
    .detail-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .detail-content h4 {
        font-size: 0.9rem;
    }
    
    .detail-content p {
        font-size: 0.8rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analysis-item {
        padding: 1rem;
    }
    
    .analysis-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .analysis-header h4 {
        font-size: 0.9rem;
    }
    
    .analysis-content p {
        font-size: 0.85rem;
    }
    
    .analysis-score {
        padding: 0.5rem;
    }
    
    .score-label,
    .score-value {
        font-size: 0.8rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-card h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-text p {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .summary-recommendation p {
        font-size: 0.8rem;
    }
    
    .deposit-withdrawal-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .deposit-withdrawal-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .deposit-withdrawal-content {
        padding: 1.5rem;
    }
    
    .payment-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .status-indicator.payment {
        padding: 1rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .status-text h3 {
        font-size: 1.125rem;
    }
    
    .status-text p {
        font-size: 0.85rem;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        padding: 0.75rem;
    }
    
    .detail-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .detail-content h4 {
        font-size: 0.9rem;
    }
    
    .detail-content p {
        font-size: 0.8rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analysis-item {
        padding: 1rem;
    }
    
    .analysis-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .analysis-header h4 {
        font-size: 0.9rem;
    }
    
    .analysis-content p {
        font-size: 0.85rem;
    }
    
    .analysis-score {
        padding: 0.5rem;
    }
    
    .score-label,
    .score-value {
        font-size: 0.8rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-card h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-text p {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .summary-recommendation p {
        font-size: 0.8rem;
    }
    
    .faq-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .faq-list {
        gap: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .question-text {
        font-size: 0.9rem;
        margin-right: 0.75rem;
    }
    
    .faq-icon {
        font-size: 1.125rem;
    }
    
    .faq-answer.active {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
        padding-top: 0.75rem;
    }
    
    .page-title-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-description p {
        font-size: 1rem;
    }
    
    .related-brokers-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    }
    
    .related-brokers-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .related-brokers-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .brokers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .broker-item {
        padding: 1rem 0.75rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .broker-logo {
        width: 50px;
        height: 25px;
        margin-bottom: 0.5rem;
    }
    
    .broker-name {
        font-size: 0.8rem;
    }
    
    /* Customer Support Mobile Styles */
    .customer-support-section {
        padding: 0.75rem 1.5rem;
        margin-top: 0.75rem;
    }
    
    .customer-support-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .customer-support-content {
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .support-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .status-indicator.support {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .status-text h3 {
        font-size: 1.125rem;
    }
    
    .status-text p {
        font-size: 0.85rem;
    }
    
    .support-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .detail-icon {
        font-size: 1rem;
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .detail-content h4 {
        font-size: 0.85rem;
    }
    
    .detail-content p {
        font-size: 0.75rem;
    }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .sidebar {
        width: 200px;
    }
    
    .sidebar-content {
        padding: 1.5rem 1rem;
    }
    
    .main-wrapper {
        padding: 0 1.5rem;
    }
    
    .main-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .company-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .new-content-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 0.625rem);
        min-width: 300px;
    }
    
    .overview-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brokers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-content {
        padding: 1rem 2rem;
    }
    
    .sidebar {
        width: 220px;
    }
    
    .sidebar-content {
        padding: 2rem 1.25rem;
    }
    
    .main-wrapper {
        padding: 0 2rem;
    }
    
    .main-content {
        width: 85%;
        padding: 2rem;
    }
    
    .content-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .company-info {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .new-content-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1919.98px) {
    .header-content {
        padding: 1rem 2rem;
    }
    
    .sidebar {
        width: 250px;
    }
    
    .sidebar-content {
        padding: 2rem 1.5rem;
    }
    
    .main-wrapper {
        padding: 0 2rem;
    }
    
    .main-content {
        width: 80%;
        padding: 2rem;
    }
    
    .content-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Large devices (extra large desktops, 1920px and up) */
@media (min-width: 1920px) {
    .header-content {
        padding: 1rem 3rem;
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .container {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .sidebar {
        width: 280px;
    }
    
    .sidebar-content {
        padding: 2.5rem 2rem;
    }
    
    .main-wrapper {
        padding: 0 3rem;
    }
    
    .main-content {
        width: 80%;
        padding: 3rem;
    }
    
    .content-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* 移动端遮罩层 */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* 滚动条样式 */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--muted);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* 打印样式 */
@media print {
    .header,
    .sidebar,
    .footer {
        display: none;
    }
    
    .container {
        flex-direction: column;
    }
    
    .main-content {
        background: white;
        padding: 0;
    }
    
}

/* Risk Disclosure Warning Styles */
.risk-disclosure-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 12px;
    margin: 2rem 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.risk-disclosure-section::before {
    content: "⚠️";
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    z-index: 1;
}

.risk-disclosure-title {
    background: #f39c12;
    color: white;
    padding: 1rem 1.5rem 1rem 3.5rem;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.risk-disclosure-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent #e67e22 transparent;
}

.risk-disclosure-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 10px 10px;
}

.risk-disclosure-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    position: relative;
    padding-left: 1rem;
}

.risk-disclosure-content p::before {
    content: "⚠️";
    position: absolute;
    left: -0.5rem;
    top: 0;
    font-size: 1.2rem;
}

/* Dark mode support for risk disclosure */
@media (prefers-color-scheme: dark) {
    .risk-disclosure-section {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        border-color: #e67e22;
    }
    
    .risk-disclosure-content {
        background: rgba(44, 62, 80, 0.9);
    }
    
    .risk-disclosure-content p {
        color: #ecf0f1;
    }
}

/* Mobile responsive for risk disclosure */
@media (max-width: 768px) {
    .risk-disclosure-section {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .risk-disclosure-title {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .risk-disclosure-content {
        padding: 1rem;
    }
    
    .risk-disclosure-content p {
        font-size: 0.9rem;
        text-align: left;
    }
}