/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
}

/* Container removed - content now flows directly */

/* Header Styles */
.header {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Header Top Section - Logo, Search, Buttons */
.header-top {
    background-color: #323947;
    padding: 0.6rem 0;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-basis: 200px;
    flex-shrink: 0;
    min-width: 200px;
}

.logo img {
    width: 160px;
    height: 40px;
}

.slogan span {
    color: hsla(0, 0%, 100%, .3);
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
    white-space: nowrap;
}

/* Header Right Section - Container for Search and Buttons */
.header-right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* Search Section */
.search-section {
    flex-basis: 300px;
    flex-grow: 0;
    flex-shrink: 1;
    max-width: 350px;
    min-width: 350px;
    margin-right: 0;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 1rem 2.5rem 1rem 0.8rem;
    border: 2px solid #555555;
    border-radius: 20px;
    background-color: #ffffff;
    color: #333333;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #FED732;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    transition: color 0.3s ease;
    background: #b28936;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    height: 42px;
    min-width: 42px;
    padding: 0 2px;
    text-align: center;
    white-space: nowrap;
}

.search-btn:hover {
    color: #FED732;
}

/* Wikifx Search Box Styles */
.textbox.real-width {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.textbox.real-width input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #555555;
    border-radius: 20px;
    background-color: #ffffff;
    color: #333333;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
    max-length: 30;
}

.textbox.real-width input:focus {
    border-color: #FED732;
}

.textbox.real-width .iconfont.icon-sousuo {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #b28936;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.textbox.real-width .iconfont.icon-sousuo:hover {
    background: #FED732;
    color: #433E2A;
    transform: translateY(-50%) scale(1.05);
}

.textbox.real-width .iconfont.icon-sousuo svg {
    width: 22px;
    height: 22px;
}

/* Buttons Section */
.buttons-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-basis: auto;
    flex-shrink: 0;
    justify-content: flex-end;
    min-width: auto;
    margin-left: 0;
}

.user-btn {
    background-color: #323A47;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 40px;
}

.language-btn {
    background-color: #323A47;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.download-btn {
    background-color: #FED732;
    border: 2px solid #FED732;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-btn:hover {
    background-color: #FED732;
    color: #433E2A;
    border-color: #FED732;
    transform: translateY(-2px);
}

.language-btn:hover {
    background-color: #FED732;
    color: #433E2A;
    border-color: #FED732;
    transform: translateY(-2px);
}

.download-btn:hover {
    background-color: #433E2A;
    color: #FED732;
    transform: translateY(-2px);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 1000;
    display: none;
}

.language-dropdown:hover .language-menu {
    display: block;
}

.language-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.language-menu a:hover {
    background-color: #f5f5f5;
}

/* Header Bottom Section - Main Navigation */
.header-bottom {
    background-color: #ffd733;
    padding: 0;
    width: 100%;
}

.main-navigation {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: left;
    flex-wrap: wrap;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    color: #433E2A;
    text-decoration: none;
    padding: 0.78rem 1.5rem;
    display: block;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-nav a:hover {
    background-color: #433E2A;
    color: #FED732;
}

/* Mobile Navigation - Hidden by default */
.mobile-nav {
    display: none;
}

/* VPS Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: #333333;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #FED732;
}

/* Main Content Styles */
.main {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Basic Information Section */
.basic-info {
    background-color: #ffffff;
    padding: 5% 5%;
    margin-bottom: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.basic-info-content {
    display: flex;

    align-items: flex-start;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
    
    margin: 0 auto;
}

/* Logo Block */
.logo-block {
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    flex-shrink: 0;
}

.logo-block img {
    width: 160px;
    height: 90px;
    border-radius: 8px;
    object-fit: contain;
}

/* Information Labels Block */
.info-labels {
    flex: 1;
    min-width: 400px;
    max-width: 700px;
}

.info-labels h1 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.labels-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.info-label {
    background-color: #F5F5F5;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Rating Block */
.rating-block {
    border: 1px solid #cccccc;
    background-color: #F7F8FA;
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.score-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.score-text {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.question-icon {
    background-color: #666666;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.question-icon:hover {
    background-color: #333333;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333333;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 0.5rem;
    width: 200px;
    white-space: normal;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333333;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.score-value {
    color: #000000;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

.rating-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.rating-text {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
    color: #F5BC49;
    text-shadow: 0 0 1px rgba(245, 188, 73, 0.5);
}

.star.filled {
    color: #F5BC49;
}

.star:not(.filled) {
    color: transparent;
    -webkit-text-stroke: 1px #F5BC49;
}

/* Content Section */
.content {
    background-color: #F9F9F9;
    padding: 5% 5%;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

.content-block {
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* URL Text Box */
.url-textbox {
    flex: 1;
    min-width: 300px;
}

.url-content {
    background-color: #FED732;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.url-link {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.url-link:hover {
    color: #333333;
    text-decoration: underline;
}

.url-icon {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.url-icon:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Warning Text Box */
.warning-textbox {
    flex: 1;
    min-width: 300px;
}

.warning-textbox h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.warning-textbox p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* FXCM Guide Section - 优化后的样式 */
.Introduction,
.Register-Login,
.account-type,
.deposit-guide {
    background-color: #ffffff;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 10px;
    color: #000000;
}

.Introduction h3,
.Register-Login h3,
.account-type h3,
.deposit-guide h3 {
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.divider {
    height: 1px;
    background-color: #cccccc;
    margin-bottom: 2rem;
}

.Introduction h4,
.Register-Login h4,
.account-type h4,
.deposit-guide h4 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.Introduction p,
.Register-Login p,
.account-type p,
.deposit-guide p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* 优化的通用样式 - 减少重复 */
.checklist {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0 2rem 0;
    padding-left: 1.5rem;
}

.checklist li {
    margin-bottom: 1rem;
}

.checklist a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checklist a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Ordered Checklist */
.ordered-checklist {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0 2rem 0;
    padding-left: 1.5rem;
    counter-reset: item;
}

.ordered-checklist li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
}

.ordered-checklist li::marker {
    color: #007bff;
    font-weight: bold;
}

.ordered-checklist strong {
    color: #000000;
    font-weight: 600;
}

.data-source {
    color: #666666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eeeeee;
}

.data-source a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.data-source a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Blockquote Data Source */
blockquote.data-source {
    color: #666666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 2rem 0 0 0;
    padding: 1rem;
    border-left: 4px solid #cccccc;
    background-color: #f9f9f9;
    border-radius: 0 5px 5px 0;
}

blockquote.data-source p {
    margin: 0.5rem 0;
    line-height: 1.5;
}

blockquote.data-source a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

blockquote.data-source a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Review Section */
.review-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.username {
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
}

.registration-date {
    color: #666666;
    font-size: 0.9rem;
}

.review-second-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exposure-tag {
    background-color: #ECEEFA;
    color: #3E54CC;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-title {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.review-content {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-meta {
    display: flex;
    gap: 1rem;
    color: #999999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.location {
    font-weight: 500;
}

.date {
    font-weight: 500;
}

.review-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin-top: 1rem;
}

/* Customer Support Section */
.customer-support .content-block {
    display: block;
    padding: 2rem;
}

.company-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.info-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
    color: #666666;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.info-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    min-width: 80px;
    flex-shrink: 0;
}

.info-detail {
    background-color: #F9F9F9;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex: 1;
    min-width: 0;
    max-width: none;
}

.info-detail a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.info-detail a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    background-color: #007bff;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-question:hover .faq-toggle {
    background-color: #0056b3;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.faq-answer.expanded {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.faq-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
}

/* Brokers Section */
.brokers-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Disclaimer Section */
.disclaimer .content-block {
    display: block;
    padding: 2rem;
}

.disclaimer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1.5rem 0;
}

.disclaimer-content {
    margin-top: 1rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    text-align: justify;
}

.broker-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 120px;
    justify-content: center;
}

.broker-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.broker-logo {
    flex-shrink: 0;
    width: 260px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 0 auto 0.5rem auto;
}

.broker-logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    border-radius: 4px;
}

.broker-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.broker-name {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.broker-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.broker-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.star.filled {
    color: #F5BC49;
}

.rating-score {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Features Section */
.features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.feature-card h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: #323947;
    padding: 2rem 0 1rem;
    border-top: 2px solid #333333;
    flex-shrink: 0;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Logo */
.footer-logo {
    text-align: left;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

/* Footer Links Box */
.links-box {
    text-align: left;
    margin-bottom: 1rem;
}

.links-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.links-box a:hover {
    color: #FED732;
}

.segment {
    color: #666666;
    margin: 0 0.5rem;
    font-style: normal;
}

/* Footer Text */
.footer-text {
    text-align: left;
    color: hsla(0, 0%, 100%, .3);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */

/* Extra Large Desktop Styles (1400px+) */
@media screen and (min-width: 1400px) {
    body {
        padding: 0;
    }
    
    .content h2 {
        font-size: 2.8rem;
    }
    
    .Introduction h3,
    .Register-Login h3,
    .account-type h3,
    .deposit-guide h3 {
        font-size: 2.2rem;
    }
}

/* Large Desktop Styles (1200px+) */
@media screen and (min-width: 1200px) {
    body {
        padding: 0;
    }
    
    .content h2 {
        font-size: 2.5rem;
    }
    
    .Introduction h3,
    .Register-Login h3,
    .account-type h3,
    .deposit-guide h3 {
        font-size: 2rem;
    }
}

/* Desktop Styles (1024px - 1199px) */
@media screen and (max-width: 1199px) {
    body {
        padding: 0;
    }
    
    .content h2 {
        font-size: 2.2rem;
    }
    
    .Introduction h3,
    .Register-Login h3,
    .account-type h3,
    .deposit-guide h3 {
        font-size: 1.9rem;
    }
}

/* Tablet Styles (768px - 1023px) */
@media screen and (max-width: 1023px) {
    body {
        padding: 0;
    }
    
    .header-content {
        gap: 1.5rem;
        padding: 0.5rem 1.5rem;
    }
    
    .slogan span {
        font-size: 0.9rem;
    }
    
    .search-section {
        flex-basis: 250px;
        max-width: 250px;
        min-width: 180px;
    }
    
    .buttons-section {
        gap: 0.75rem;
    }
    
    .user-btn, .language-btn, .download-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .main-navigation a {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .feature-card {
        min-width: 200px;
        padding: 1.5rem;
    }
    
    /* Basic Info Responsive */
    .basic-info-content {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .info-labels {
        min-width: 250px;
    }
    
    .rating-block {
        min-width: 180px;
    }
    
    /* Content Responsive */
    .content h2 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .url-textbox,
    .warning-textbox {
        min-width: 250px;
    }
    
    /* FXCM Guide Responsive - 优化后的响应式样式 */
    .Introduction h3,
    .Register-Login h3,
    .account-type h3,
    .deposit-guide h3 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .Introduction h4,
    .Register-Login h4,
    .account-type h4,
    .deposit-guide h4 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin: 1.5rem 0 1rem 0;
    }
    
    .Introduction p,
    .Register-Login p,
    .account-type p,
    .deposit-guide p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Footer Links Box Tablet */
    .links-box {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .links-box a {
        display: inline-block;
        padding: 0.4rem 0.7rem;
        margin: 0.15rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .links-box a:hover {
        background-color: #FED732;
        color: #000000;
        transform: translateY(-1px);
    }
    
    .segment {
        display: none;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .brokers-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .broker-item {
        padding: 0.8rem;
        min-height: 100px;
    }
    
    .broker-logo {
        width: 50px;
        height: 50px;
    }
    
    .broker-logo img {
        width: 40px;
        height: 40px;
    }
    
    .broker-name {
        font-size: 0.9rem;
    }
}

/* Mobile Styles (up to 768px) */
@media screen and (max-width: 768px) {
    body {
        padding: 0;
        font-size: 16px; /* 防止iOS缩放 */
    }
    
    /* Touch-friendly buttons */
    .search-btn, .user-btn, .language-btn, .download-btn, .faq-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* 改善触摸体验 */
    .mobile-nav-item,
    .mobile-dropdown-item,
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* 优化链接点击区域 */
    .url-link,
    .broker-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Better touch targets */
    .main-navigation a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .faq-question {
        min-height: 44px;
    }
    
    /* Header Mobile Styles */
    .header-content {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        padding: 0.5rem 1rem;
        justify-content: space-between;
    }
    
    .logo-section {
        justify-content: flex-start;
        min-width: auto;
        flex-basis: auto;
        flex-shrink: 0;
    }
    
    .logo img {
        width: 120px;
        height: 30px;
    }
    
    .slogan {
        display: none;
    }
    
    .search-section {
        display: block;
        flex: 1;
        max-width: 150px;
        min-width: 120px;
    }
    
    .search-box input {
        font-size: 0.75rem;
        padding: 0.5rem 2.2rem 0.5rem 0.7rem;
    }
    
    .search-btn {
        height: 28px;
        min-width: 28px;
        min-height: 16px;
        font-size: 14px;
        right: 0.3rem;
    }
    
    .search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .buttons-section {
        display: none;
    }
    
    .user-btn, .language-btn, .download-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: 80px;
        justify-content: center;
    }
    
    .download-btn {
        flex: 2;
    }
    
    /* Mobile Menu Toggle */
    
    
    /* Hide Desktop Navigation on Mobile */
    .desktop-nav {
        display: none;
    }
    
    /* Hide Mobile Navigation on Mobile - Only show logo and search */
    .mobile-nav {
        display: none;
    }
    
    /* Hide header-bottom navigation on mobile */
    .header-bottom {
        display: none;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #433E2A;
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: 1px;
    }
    
    .mobile-menu-toggle.active span:first-child {
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:last-child {
        transform: rotate(-45deg);
    }
    
    /* Mobile Main Navigation - Home, Broker, Skyline */
    .mobile-main-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1;
    }
    
    .mobile-main-nav .mobile-nav-item {
        display: flex;
        align-items: center;
        padding: 0.5rem 0.8rem;
        text-decoration: none;
        color: #433E2A;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-weight: 500;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-main-nav .mobile-nav-item:hover {
        background-color: rgba(67, 62, 42, 0.1);
    }
    
    .mobile-main-nav .nav-logo {
        width: 70px;
        height: 24px;
        object-fit: contain;
    }
    
    /* Mobile Menu Toggle */
    
    
    /* Mobile Dropdown Menu */
    .mobile-dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #ffd733;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 10px 10px;
        z-index: 1001;
        margin-top: 0.5rem;
        min-width: 200px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-dropdown-menu.active {
        max-height: 400px;
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    /* Mobile Dropdown Items */
    .mobile-dropdown-item {
        display: flex;
        align-items: center;
        padding: 0.8rem 1rem;
        text-decoration: none;
        color: #433E2A;
        border-bottom: 1px solid rgba(67, 62, 42, 0.1);
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-weight: 500;
        background: none;
        border: none;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
    
    .mobile-dropdown-item:hover {
        background-color: rgba(67, 62, 42, 0.1);
    }
    
    .mobile-dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Mobile VPS Section */
    .mobile-vps-section {
        position: relative;
    }
    
    .mobile-vps-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: rgba(67, 62, 42, 0.05);
    }
    
    .mobile-vps-menu.active {
        max-height: 200px;
        overflow-y: auto;
    }
    
    .mobile-vps-menu .mobile-dropdown-item {
        padding: 0.6rem 2rem;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(67, 62, 42, 0.05);
    }
    
    .dropdown-arrow {
        margin-left: auto;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .vps-toggle .dropdown-arrow {
        transform: rotate(0deg);
    }
    
    .mobile-vps-menu.active + .vps-toggle .dropdown-arrow,
    .mobile-vps-section:has(.mobile-vps-menu.active) .vps-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-navigation a {
        padding: 0.8rem 1.2rem;
        text-align: left;
        border-bottom: 1px solid rgba(67, 62, 42, 0.2);
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        color: #433E2A;
    }
    
    .main-navigation a:hover {
        background-color: rgba(67, 62, 42, 0.1);
        padding-left: 1.5rem;
        color: #000000;
    }
    
    .main-navigation a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Navigation Logo */
    .main-navigation img {
        max-height: 20px;
        width: auto;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffd733;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1003;
        margin-top: 0.2rem;
    }
    
    .dropdown-menu.active {
        max-height: 200px;
        overflow-y: auto;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        color: #433E2A;
        border-bottom: 1px solid rgba(67, 62, 42, 0.2);
        font-size: 0.8rem;
        background-color: transparent;
        text-align: left;
        margin: 0;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(67, 62, 42, 0.1);
        padding-left: 1.2rem;
    }
    
    .dropdown-arrow {
        display: inline-block;
        margin-left: 0.3rem;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .more-toggle .dropdown-arrow {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-logo img {
        width: 113px;
        height: 28px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    /* Footer Links Box Mobile */
    .links-box {
        text-align: left;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .links-box a {
        display: inline;
        padding: 0;
        margin: 0;
        background-color: transparent;
        border-radius: 0;
        font-size: 0.8rem;
        transition: color 0.3s ease;
        border: none;
    }
    
    .links-box a:hover {
        background-color: transparent;
        color: #FED732;
        transform: none;
        box-shadow: none;
    }
    
    .segment {
        display: inline;
        color: #666666;
        margin: 0 0.5rem;
        font-style: normal;
    }
    
    /* Basic Info Mobile */
    .basic-info {
        padding: 3% 5%;
        margin: 1rem 0;
    }
    
    /* 改善移动端内容间距 */
    .content {
        margin-bottom: 1.5rem;
    }
    
    .content-block {
        margin-bottom: 1rem;
    }
    
    /* 优化移动端文本可读性 */
    .Introduction,
    .Register-Login,
    .account-type,
    .deposit-guide {
        line-height: 1.6;
    }
    
    .basic-info-content {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .logo-block {
        min-width: 150px;
        padding: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .logo-block img {
        width: 120px;
        height: 68px;
        object-fit: contain;
    }
    
    .info-labels {
        min-width: 100%;
        text-align: center;
    }
    
    .info-labels h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .labels-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .info-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        text-align: center;
    }
    
    .rating-block {
        min-width: 100%;
        padding: 1rem;
        max-width: 300px;
    }
    
    .score-value {
        font-size: 2rem;
    }
    
    /* Content Mobile */
    .content {
        padding: 3% 5%;
    }
    
    .content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .content-block {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .url-textbox,
    .warning-textbox {
        min-width: 100%;
    }
    
    .url-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .url-link {
        word-break: break-all;
    }
    
    /* FXCM Guide Mobile - 优化后的移动端样式 */
    .Introduction,
    .Register-Login,
    .account-type,
    .deposit-guide {
        padding: 1.5rem;
    }
    
    .Introduction h3,
    .Register-Login h3,
    .account-type h3,
    .deposit-guide h3 {
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .Introduction h4,
    .Register-Login h4,
    .account-type h4,
    .deposit-guide h4 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin: 1.5rem 0 1rem 0;
    }
    
    .Introduction p,
    .Register-Login p,
    .account-type p,
    .deposit-guide p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .checklist {
        font-size: 0.9rem;
        padding-left: 1rem;
        line-height: 1.6;
    }
    
    .checklist li {
        margin-bottom: 0.8rem;
    }
    
    .ordered-checklist {
        font-size: 0.9rem;
        padding-left: 1rem;
        line-height: 1.6;
    }
    
    .ordered-checklist li {
        margin-bottom: 0.8rem;
    }
    
    .data-source {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    blockquote.data-source {
        font-size: 0.8rem;
        padding: 0.8rem;
        line-height: 1.5;
    }
    
    /* Account Guide Blockquote Mobile */
    blockquote.data-source {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    /* Deposit Guide Mobile */
    .ordered-checklist {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    /* Review Mobile */
    .review-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .review-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .user-info {
        align-items: flex-start;
    }
    
    .review-second-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-content {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    /* Customer Support Mobile */
    .customer-support .content-block {
        padding: 1.5rem;
    }
    
    .info-item {
        padding: 1.2rem;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-content {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .info-name {
        font-size: 1rem;
        min-width: auto;
    }
    
    .info-detail {
        padding: 0.6rem 0.8rem;
    }
    
    .info-detail a {
        font-size: 0.9rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .faq-answer.expanded {
        padding: 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Brokers Mobile */
    .brokers-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .broker-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
        min-height: 100px;
    }
    
    .broker-logo {
        width: 200px;
        height: 113px;
        margin: 0 auto 0.5rem auto;
    }
    
    .broker-logo img {
        width: 154px;
        height: 87px;
    }
    
    .broker-name {
        font-size: 0.85rem;
    }
    
    .broker-info {
        align-items: center;
    }
    
    /* Disclaimer Tablet */
    .disclaimer .content-block {
        padding: 1.5rem;
    }
    
    .disclaimer-content p {
        font-size: 0.9rem;
    }
    
    .broker-item {
        padding: 1.2rem;
        gap: 1.2rem;
    }
    
    .broker-logo {
        width: 70px;
        height: 70px;
    }
    
    .broker-logo img {
        width: 50px;
        height: 50px;
    }
    
    .broker-name {
        font-size: 1.2rem;
    }
    
    .star {
        font-size: 1.1rem;
    }
    
    .rating-score {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles (up to 480px) */
@media screen and (max-width: 480px) {
    body {
        padding: 0;
    }
    
    .slogan span {
        font-size: 0.6rem;
    }
    
    .search-box input {
        font-size: 0.8rem;
        padding: 0.6rem 2.5rem 0.6rem 0.8rem;
    }
    
    .user-btn, .language-btn, .download-btn {
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
        min-width: 60px;
    }
    
    .main-navigation a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Basic Info Small Mobile */
    .basic-info-content {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .logo-block {
        padding: 0.8rem;
        min-width: 120px;
    }
    
    .logo-block img {
        width: 100px;
        height: 56px;
        object-fit: contain;
    }
    
    .info-labels h1 {
        font-size: 1.1rem;
    }
    
    .labels-container {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .info-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .rating-block {
        padding: 0.8rem;
    }
    
    .score-value {
        font-size: 1.8rem;
    }
    
    .star {
        font-size: 1rem;
    }
    
    /* Content Small Mobile */
    .content {
        padding: 2% 3%;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 1rem;
        gap: 1rem;
    }
    
    .url-content {
        padding: 1rem;
    }
    
    .url-link {
        font-size: 0.9rem;
    }
    
    .warning-textbox h4 {
        font-size: 1.1rem;
    }
    
    .warning-textbox p {
        font-size: 0.9rem;
    }
    
    /* Login Guide Small Mobile */
    .Introduction,
    .Register-Login,
    .account-type,
    .deposit-guide {
        padding: 1rem;
    }
    
    .Introduction h3,
    .Register-Login h3,
    .account-type h3,
    .deposit-guide h3 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }
    
    .Introduction h4,
    .Register-Login h4,
    .account-type h4,
    .deposit-guide h4 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .Introduction p,
    .Register-Login p,
    .account-type p,
    .deposit-guide p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .checklist {
        font-size: 0.8rem;
        padding-left: 0.8rem;
        line-height: 1.5;
    }
    
    .checklist li {
        margin-bottom: 0.6rem;
    }
    
    .ordered-checklist {
        font-size: 0.8rem;
        padding-left: 0.8rem;
        line-height: 1.5;
    }
    
    .ordered-checklist li {
        margin-bottom: 0.6rem;
    }
    
    .data-source {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    /* Account Guide Blockquote Small Mobile */
    blockquote.data-source {
        font-size: 0.7rem;
        padding: 0.6rem;
        line-height: 1.4;
    }
    
    /* Review Small Mobile */
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        gap: 0.8rem;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
    
    .username {
        font-size: 0.9rem;
    }
    
    .registration-date {
        font-size: 0.8rem;
    }
    
    .exposure-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .review-title {
        font-size: 0.9rem;
    }
    
    .review-content {
        font-size: 0.85rem;
    }
    
    .review-meta {
        font-size: 0.8rem;
    }
    
    /* Customer Support Small Mobile */
    .customer-support .content-block {
        padding: 1rem;
    }
    
    .info-item {
        padding: 1rem;
        gap: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-content {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .info-name {
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .info-detail {
        padding: 0.5rem 0.6rem;
    }
    
    .info-detail a {
        font-size: 0.8rem;
    }
    
    /* FAQ Small Mobile */
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
    
    .faq-answer.expanded {
        padding: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Brokers Small Mobile */
    .brokers-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    /* Disclaimer Small Mobile */
    .disclaimer .content-block {
        padding: 1rem;
    }
    
    .disclaimer-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .broker-item {
        padding: 0.6rem;
        min-height: 80px;
    }
    
    .broker-logo {
        width: 160px;
        height: 90px;
        margin: 0 auto 0.3rem auto;
    }
    
    .broker-logo img {
        width: 123px;
        height: 69px;
    }
    
    .broker-name {
        font-size: 0.8rem;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .rating-score {
        font-size: 0.85rem;
    }
    
    /* Navigation Small Mobile */
    .main-navigation {
        padding: 0.5rem 0.8rem;
    }
    
    .mobile-nav {
        padding: 0.4rem 0.8rem;
    }
    
    .mobile-main-nav {
        gap: 0.5rem;
    }
    
    .mobile-main-nav .mobile-nav-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .mobile-main-nav .nav-logo {
        width: 70px;
        height: 20px;
    }
    
    .mobile-dropdown-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .mobile-vps-menu .mobile-dropdown-item {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .mobile-dropdown-menu {
        min-width: 180px;
    }
    
    /* Footer Links Box Small Mobile */
    .links-box {
        padding: 0 0.5rem;
        text-align: left;
    }
    
    .links-box a {
        display: inline;
        padding: 0;
        margin: 0;
        background-color: transparent;
        border-radius: 0;
        font-size: 0.75rem;
        border: none;
    }
    
    .links-box a:hover {
        background-color: transparent;
        color: #FED732;
        transform: none;
        box-shadow: none;
    }
    
    .segment {
        display: inline;
        color: #666666;
        margin: 0 0.4rem;
        font-style: normal;
    }
    
    .footer {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-logo img {
        width: 113px;
        height: 28px;
    }
}

/* Print Styles */
@media print {
    body {
        padding: 0;
        background-color: white;
        color: black;
    }
    
    .header, .footer {
        background-color: #f0f0f0;
        color: black;
    }
    
    .hero {
        background: none;
        border: 1px solid #ccc;
    }
    
    .feature-card {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        color: black;
    }
}