/* Product Page Specific Styles */

/* Product Header */
.product-header {
    text-align: center;
    margin: 100px 0 50px 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Thêm hiệu ứng nhẹ cho header */
.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wave-trough), var(--wave-peak), var(--wave-trough), transparent);
    opacity: 0.5;
}

.product-title {
    font-size: 3em;
    background: linear-gradient(to right, var(--wave-trough), var(--wave-peak));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.product-subtitle {
    font-size: 1.5em;
    color: var(--text-glow);
    margin-bottom: 25px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(to right, #9c27b0, #673ab7);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
    animation: badgePulse 3s infinite alternate;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
    }
    100% {
        box-shadow: 0 5px 25px rgba(156, 39, 176, 0.6);
    }
}

/* Product Sections */
.product-section {
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.product-section:hover {
    border-color: var(--wave-mid);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.1);
}

.product-section h2 {
    color: var(--wave-mid);
    margin-bottom: 30px;
    font-size: 2em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-section h2 i {
    font-size: 1.2em;
}

.section-description {
    color: var(--text-glow);
    margin-bottom: 30px;
    font-size: 1.2em;
    text-align: center;
}

/* EWS Workflow */
.ews-workflow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.workflow-step {
    flex: 1;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.5s ease;
}

.workflow-step:hover {
    transform: translateY(-10px);
    border-color: var(--wave-trough);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.workflow-step:nth-child(2) {
    border-color: rgba(247, 147, 26, 0.2);
}

.workflow-step:nth-child(2):hover {
    border-color: var(--wave-mid);
    box-shadow: 0 15px 30px rgba(247, 147, 26, 0.1);
}

.workflow-step:nth-child(3) {
    border-color: rgba(255, 46, 99, 0.2);
}

.workflow-step:nth-child(3):hover {
    border-color: var(--wave-peak);
    box-shadow: 0 15px 30px rgba(255, 46, 99, 0.1);
}

.step-icon {
    font-size: 3em;
    color: var(--wave-trough);
    margin-bottom: 20px;
}

.workflow-step:nth-child(2) .step-icon {
    color: var(--wave-mid);
}

.workflow-step:nth-child(3) .step-icon {
    color: var(--wave-peak);
}

.workflow-step h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.workflow-step p {
    color: var(--text-glow);
    margin-bottom: 15px;
    line-height: 1.6;
}

.workflow-step ul {
    text-align: left;
    color: var(--text-glow);
    padding-left: 20px;
}

.workflow-step li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: var(--wave-mid);
    padding: 0 10px;
}

/* Strategy Categories */
.strategy-category {
    margin-bottom: 50px;
}

.category-title {
    color: var(--wave-trough);
    margin-bottom: 30px;
    font-size: 1.8em;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

/* Strategies Grid */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.strategy-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.strategy-card.advanced {
    border-color: rgba(156, 39, 176, 0.3);
}

.strategy-card.advanced:hover {
    border-color: #9c27b0;
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
}

.strategy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.strategy-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 1px;
}

.strategy-badge.core {
    background: linear-gradient(to right, var(--wave-trough), var(--wave-mid));
    color: white;
}

.strategy-badge.advanced {
    background: linear-gradient(to right, #9c27b0, #673ab7);
    color: white;
}

.strategy-header h4 {
    color: var(--text-light);
    font-size: 1.3em;
    margin: 0;
    flex: 1;
}

.risk-level {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

.risk-level[data-risk="low"] {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.risk-level[data-risk="medium"] {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.risk-level[data-risk="high"] {
    background: rgba(255, 87, 34, 0.2);
    color: #FF5722;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.risk-level[data-risk="very-high"] {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.strategy-desc {
    color: var(--text-glow);
    margin-bottom: 20px;
    font-size: 1em;
    line-height: 1.6;
}

.strategy-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.strategy-details h5 {
    color: var(--wave-mid);
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-details ul {
    color: var(--text-glow);
    padding-left: 20px;
    margin-bottom: 15px;
}

.strategy-details li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 0.95em;
}

.indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.indicator-tag {
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    font-size: 0.8em;
    color: var(--wave-trough);
}

.strategy-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-label {
    display: block;
    color: var(--text-glow);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
}

.stat-value.high {
    color: #4CAF50;
}

.stat-value.medium {
    color: #FFC107;
}

.stat-value.low {
    color: #F44336;
}

/* Confluence Score */
.confluence-score {
    margin-top: 20px;
}

.score-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.score-fill {
    height: 100%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    border-radius: 4px;
    transition: width 1s ease;
}

.score-label {
    color: var(--text-glow);
    font-size: 0.9em;
    text-align: center;
    display: block;
}

/* Derivatives Metrics */
.derivatives-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.metric {
    flex: 1;
    text-align: center;
}

.metric-label {
    display: block;
    color: var(--text-glow);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.metric-value {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}

.metric-value.high {
    color: #F44336;
}

.metric-value.decreasing {
    color: #FF9800;
}

.metric-value.bearish {
    color: var(--wave-peak);
}

/* Multi-Timeframe System */
.timeframe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.timeframe-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.timeframe-card.primary {
    border-color: rgba(247, 147, 26, 0.3);
    transform: scale(1.05);
}

.timeframe-card:hover {
    transform: translateY(-5px);
    border-color: var(--wave-trough);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

.timeframe-card.primary:hover {
    border-color: var(--wave-mid);
    box-shadow: 0 10px 25px rgba(247, 147, 26, 0.1);
    transform: translateY(-5px) scale(1.05);
}

.tf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tf-header h3 {
    color: var(--text-light);
    font-size: 1.5em;
    margin: 0;
}

.tf-weight {
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    font-size: 0.9em;
    color: var(--wave-trough);
    font-weight: bold;
}

.tf-usage h4 {
    color: var(--wave-mid);
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-usage ul {
    color: var(--text-glow);
    padding-left: 20px;
    margin-bottom: 20px;
}

.tf-usage li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95em;
}

.tf-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.indicator-active {
    padding: 4px 10px;
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 12px;
    font-size: 0.85em;
    color: var(--wave-mid);
}

/* Confluence Levels */
.confluence-system {
    margin-top: 40px;
}

.confluence-system h3 {
    color: var(--wave-trough);
    margin-bottom: 25px;
    font-size: 1.6em;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.confluence-level {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.level-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.level-badge.very-high {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    color: white;
}

.level-badge.high {
    background: linear-gradient(to right, #2196F3, #03A9F4);
    color: white;
}

.level-badge.medium {
    background: linear-gradient(to right, #FF9800, #FFC107);
    color: white;
}

.level-badge.low {
    background: linear-gradient(to right, #F44336, #FF5722);
    color: white;
}

.confluence-level p {
    color: var(--text-glow);
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

/* Risk Management */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.risk-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
    border-color: var(--wave-peak);
    box-shadow: 0 10px 25px rgba(255, 46, 99, 0.1);
}

.risk-icon {
    font-size: 2.5em;
    color: var(--wave-peak);
    margin-bottom: 20px;
    text-align: center;
}

.risk-card h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
}

.risk-card ul {
    color: var(--text-glow);
    padding-left: 20px;
}

.risk-card li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.95em;
}

.risk-card strong {
    color: var(--wave-trough);
}

/* Risk Metrics */
.risk-metrics {
    margin-top: 40px;
}

.risk-metrics h3 {
    color: var(--wave-mid);
    margin-bottom: 25px;
    font-size: 1.6em;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
}

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

.metric-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--wave-mid);
    transform: translateY(-3px);
}

.metric-value {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--wave-trough);
    margin-bottom: 10px;
}

.metric-label {
    color: var(--text-glow);
    font-size: 0.95em;
    line-height: 1.4;
}

/* Integration Flow */
.integration-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.flow-step {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(156, 39, 176, 0.3);
    width: 100%;
    max-width: 600px;
    position: relative;
}

.flow-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #9c27b0, #673ab7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
}

.flow-step h3 {
    color: var(--wave-trough);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.flow-step p {
    color: var(--text-glow);
    margin-bottom: 15px;
    line-height: 1.6;
}

.code-block {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--wave-peak);
    font-family: 'Courier New', monospace;
    color: var(--wave-trough);
    margin-bottom: 15px;
    overflow-x: auto;
}

.flow-step ul {
    color: var(--text-glow);
    padding-left: 20px;
}

.flow-step li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 2em;
    color: var(--wave-mid);
}

/* Derivatives Analysis */
.derivatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.derivative-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.derivative-card:hover {
    transform: translateY(-5px);
    border-color: var(--wave-mid);
    box-shadow: 0 10px 25px rgba(247, 147, 26, 0.1);
}

.derivative-card h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Premium Meter */
.premium-meter {
    margin: 25px 0;
}

.meter-label {
    color: var(--text-glow);
    margin-bottom: 10px;
    font-size: 0.95em;
}

.meter-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(to right, #F44336, #FF5722);
    border-radius: 5px;
    transition: width 1s ease;
}

.meter-value {
    color: #F44336;
    font-weight: bold;
    text-align: right;
    font-size: 1.2em;
}

/* Analysis Points */
.analysis-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
}

.point.positive {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.point.negative {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.point i {
    font-size: 1.2em;
}

.point.positive i {
    color: #4CAF50;
}

.point.negative i {
    color: #F44336;
}

.point span {
    color: var(--text-glow);
    font-size: 0.95em;
    flex: 1;
}

/* Funding Chart */
.funding-chart {
    position: relative;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.3);
    border: 2px solid #2196F3;
    transform: translate(-50%, -50%);
}

.chart-point.current {
    background: rgba(156, 39, 176, 0.5);
    border-color: #9c27b0;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.chart-point::after {
    content: attr(data-value);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-glow);
    font-size: 0.8em;
    white-space: nowrap;
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        transparent 10%, 
        rgba(33, 150, 243, 0.2) 30%, 
        rgba(156, 39, 176, 0.3) 50%, 
        rgba(33, 150, 243, 0.2) 70%, 
        transparent 90%);
}

.funding-analysis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.funding-metric {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.metric-label {
    display: block;
    color: var(--text-glow);
    font-size: 0.9em;
    margin-bottom: 5px;
}

/* Open Interest Analysis */
.oi-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.oi-metric {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.oi-label {
    display: block;
    color: var(--text-glow);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.oi-value {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}

.oi-value.negative {
    color: #F44336;
}

.oi-insights h4 {
    color: var(--wave-mid);
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oi-insights ul {
    color: var(--text-glow);
    padding-left: 20px;
}

.oi-insights li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.95em;
}

/* Call to Action */
.product-cta {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 50px 0;
}

.product-cta h2 {
    color: var(--wave-trough);
    margin-bottom: 20px;
    font-size: 2.5em;
}

.product-cta p {
    color: var(--text-glow);
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    min-width: 250px;
}

.cta-btn.primary {
    background: linear-gradient(to right, #0088cc, #006699);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.cta-btn.secondary {
    background: linear-gradient(to right, #7289da, #5865a8);
    color: white;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    gap: 20px;
}

.cta-disclaimer {
    background: rgba(255, 46, 99, 0.1);
    border: 1px solid rgba(255, 46, 99, 0.3);
    border-left: 5px solid var(--wave-peak);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cta-disclaimer i {
    font-size: 1.5em;
    color: var(--wave-peak);
    margin-top: 5px;
}

.cta-disclaimer p {
    margin: 0;
    color: var(--text-glow);
    line-height: 1.6;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-header {
        padding: 30px 20px;
        margin: 80px 0 30px 0;
    }
    
    .product-title {
        font-size: 2.2em;
    }
    
    .product-subtitle {
        font-size: 1.2em;
    }
    
    .product-badge {
        font-size: 1em;
        padding: 10px 20px;
    }
    
    .ews-workflow {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .timeframe-grid {
        grid-template-columns: 1fr;
    }
    
    .timeframe-card.primary {
        transform: none;
    }
    
    .timeframe-card.primary:hover {
        transform: translateY(-5px);
    }
    
    .confluence-levels {
        grid-template-columns: 1fr;
    }
    
    .risk-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .derivatives-grid {
        grid-template-columns: 1fr;
    }
    
    .funding-analysis {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .oi-data {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-disclaimer {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-disclaimer i {
        align-self: center;
    }
}