* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Noto Sans KR', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link.active {
    color: #0066cc;
    font-weight: 600;
}

.inquiry-btn {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.inquiry-btn:hover {
    background-color: #0052a3;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

.title-section {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.highlight-blue {
    color: #0066cc;
}

.subtitle {
    font-size: 18px;
    color: #666666;
}

/* Cards Section */
.cards-section {
    margin-top: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 500px;
    margin: 40px auto 0;
}

.exchange-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.exchange-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.payback-banner {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff4444;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.card-logo {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.card-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-content {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bitget-logo {
    background-color: #2a2a2a;
}

.bitget-logo .logo-content {
    color: #00d4aa;
}

.bingx-logo {
    background-color: #0084ff;
}

.bingx-logo .logo-content {
    color: #ffffff;
}

.bybit-logo {
    background-color: #000000;
}

.bybit-logo .logo-content {
    color: #ffffff;
}

.binance-logo {
    background-color: #000000;
}

.binance-logo .logo-content {
    color: #f3ba2f;
}

.placeholder-logo {
    background-color: #f0f0f0;
}

.placeholder-logo .logo-content {
    color: #666666;
}

.orangex-logo {
    background-color: #1f2c46;
}

.orangex-logo .logo-content {
    color: #ffffff;
}

.exchange-name {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    text-align: center;
}

.card-description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    color: #555555;
    margin-bottom: 20px;
    text-align: center;
}

.highlight-purple {
    color: #9333ea;
    font-weight: 600;
}

.flame-icon {
    font-size: 16px;
}

.fee-details {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fee-label {
    font-size: 13px;
    color: #888888;
    margin-bottom: 6px;
}

.fee-values {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #4a4a4a;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #333333;
}

.btn-payback {
    background-color: #00d4aa;
    color: #ffffff;
}

.btn-payback:hover {
    background-color: #00b894;
}

/* Exchange Disclaimer */
.exchange-disclaimer {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.exchange-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 10px;
}

.exchange-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Floating Telegram Button */
.floating-telegram-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #26a5e4;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(38, 165, 228, 0.3);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(38, 165, 228, 0.4);
}

.telegram-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.telegram-text {
    font-size: 14px;
    font-weight: 500;
}

/* Guide Page Styles */
.hidden {
    display: none !important;
}

.page-content {
    min-height: 60vh;
}

/* Guide Header */
.guide-header {
    background-color: #f5f5f5;
    padding: 60px 20px;
    margin: 0 -20px 40px -20px;
}

.guide-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.guide-illustration {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Guide Tabs */
.guide-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.guide-tab {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    color: #666666;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.guide-tab:hover {
    color: #333333;
}

.guide-tab.active {
    color: #333333;
    font-weight: 600;
}

.guide-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff4444;
}

/* Guide Separator */
.guide-separator {
    height: 1px;
    background-color: #e5e5e5;
    margin: 20px 0 30px 0;
}

/* Guide Articles */
.guide-articles {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-decoration: none;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.article-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 4px;
}

.article-item.locked {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.article-item.locked:hover {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.article-item.locked .article-title {
    color: #999999;
}

.article-item.locked .article-arrow {
    color: #cccccc;
}

.lock-icon {
    margin-left: 8px;
    font-size: 14px;
}

.article-title {
    font-size: 16px;
    color: #333333;
}

.article-arrow {
    font-size: 18px;
    color: #999999;
    margin-left: 15px;
}

/* Simulation Page Styles */
.simulation-section {
    padding: 60px 20px;
}

.simulation-container {
    max-width: 900px;
    margin: 0 auto;
}

.simulation-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 50px;
}

.simulation-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.simulation-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
}

.simulation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.simulation-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 50px auto;
    padding: 18px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
    text-align: center;
}

.simulation-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.demo-image-container {
    text-align: center;
    margin: 30px 0;
}

.demo-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Disclaimer Section */
.disclaimer-section {
    margin-top: 60px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.1);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff9800;
}

.disclaimer-icon {
    font-size: 32px;
}

.disclaimer-title {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b00;
    margin: 0;
}

.disclaimer-content {
    color: #333333;
}

.disclaimer-main-text {
    font-size: 18px;
    font-weight: 600;
    color: #d84315;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
    text-align: center;
}

.highlight-yellow {
    background-color: #fff9c4;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #f57c00;
}

.disclaimer-warning {
    background-color: #ffebee;
    border-left: 4px solid #e53935;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.warning-text {
    font-size: 15px;
    line-height: 1.8;
    color: #c62828;
    margin: 0;
}

.disclaimer-risks {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.risks-title {
    font-size: 17px;
    font-weight: 600;
    color: #d84315;
    margin-bottom: 15px;
}

.risks-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.risks-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.risks-list li::before {
    content: "•";
    color: #ff6b00;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.risks-notice {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    font-weight: 500;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-footer {
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

/* Arcade Page Styles */
.arcade-section {
    padding: 60px 20px;
}

.arcade-container {
    max-width: 1000px;
    margin: 0 auto;
}

.arcade-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 50px;
}

.game-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.game-header {
    margin-bottom: 30px;
}

.game-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

.game-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background-color: #f5f5f5;
    border-radius: 8px;
    min-width: 120px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.game-area {
    text-align: center;
}

.game-screen {
    width: 100%;
    height: 400px;
    background-color: #9e9e9e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: background-color 0.3s;
    cursor: default;
    user-select: none;
}

.game-instruction {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
}

.game-instruction h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.game-instruction p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
}

.game-tip {
    font-size: 16px;
    color: #f44336;
    font-weight: 600;
    margin-top: 20px;
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.game-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #0066cc;
    color: #ffffff;
}

.game-btn:hover:not(:disabled) {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.game-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.game-btn-secondary {
    background-color: #666666;
}

.game-btn-secondary:hover {
    background-color: #555555;
}

.game-result {
    min-height: 60px;
    font-size: 20px;
    font-weight: 600;
}

/* Auto Trading Page Styles */
.auto-section {
    padding: 60px 20px;
}

.auto-container {
    max-width: 1000px;
    margin: 0 auto;
}

.auto-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.auto-image-container {
    text-align: center;
    margin-bottom: 50px;
}

.auto-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.auto-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auto-intro {
    margin-bottom: 50px;
}

.auto-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    text-align: center;
}

.auto-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
    text-align: center;
}

.auto-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.auto-feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.auto-feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.auto-feature-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.auto-disclaimer {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.disclaimer-content-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-top: 25px;
}

.disclaimer-content-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #d84315;
    margin-bottom: 20px;
    margin-top: 30px;
}

.disclaimer-content-box h4:first-child {
    margin-top: 0;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
}

.disclaimer-list li::before {
    content: "▸";
    color: #ff6b00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.disclaimer-list li strong {
    color: #d84315;
    font-weight: 700;
}

.auto-agreement {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ff9800;
    text-align: center;
}

.agreement-text {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.8;
}

.agreement-btn {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.agreement-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Article Detail Page */
.article-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.2s;
}

.back-button:hover {
    background-color: #f5f5f5;
    border-color: #cccccc;
}

.back-button span {
    font-size: 18px;
}

.article-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.article-signup-link {
    margin: 25px 0;
}

.signup-link-text {
    font-size: 20px;
    color: #333333;
}

.article-signup-link a {
    color: #0066cc;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.article-signup-link a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.article-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-image-item {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-image-title {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Article Content Styles */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.article-content-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.article-content-heading {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.article-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    white-space: pre-line;
}

/* Article Bottom Actions */
.article-bottom-actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.back-to-list-btn {
    padding: 14px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.back-to-list-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-link {
        font-size: 13px;
        white-space: nowrap;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        order: 1;
    }

    .inquiry-btn {
        order: 2;
        margin-left: auto;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .main-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

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

    .floating-telegram-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .telegram-text {
        font-size: 12px;
    }

    .guide-header {
        padding: 40px 20px;
    }

    .guide-header-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .guide-title {
        font-size: 36px;
    }

    .guide-illustration {
        width: 100px;
        height: 100px;
    }

    .guide-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .guide-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .guide-tab {
        font-size: 14px;
    }

    .article-detail-title {
        font-size: 24px;
    }

    .article-images {
        gap: 20px;
    }

    /* Auto Trading Mobile Styles */
    .auto-disclaimer {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .disclaimer-header {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
    }

    .disclaimer-title {
        font-size: 18px;
        text-align: center;
    }

    .disclaimer-content-box {
        padding: 15px;
    }

    .disclaimer-content-box h4 {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .disclaimer-list {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .disclaimer-list li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        word-break: keep-all;
    }

    .auto-agreement {
        padding: 15px;
        margin-top: 20px;
    }

    .agreement-text {
        font-size: 14px;
        line-height: 1.6;
        word-break: keep-all;
    }

    .agreement-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
}

