/* Clean Professional Design */
:root {
    --primary: #7B2CF6;
    --secondary: #1a1a1a;
    --accent: #8B5CF6;
    --dark: #0a0a0a;
    --darker: #000000;
    --violet-glow: rgba(123, 44, 246, 0.2);
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #666666;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border: rgba(123, 44, 246, 0.15);
    --glass: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #7B2CF6 0%, #5B21B6 20%, #3B1A8B 40%, #1A0B3D 60%, #0A0A0A 80%, #000000 100%);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Living Universe Background */
#matrix-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1 !important;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(123, 44, 246, 0.8) 0%, rgba(123, 44, 246, 0.3) 25%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.7) 0%, rgba(139, 92, 246, 0.25) 30%, transparent 55%),
        radial-gradient(ellipse at 15% 60%, rgba(123, 44, 246, 0.6) 0%, rgba(123, 44, 246, 0.2) 35%, transparent 60%),
        radial-gradient(ellipse at 85% 40%, rgba(139, 92, 246, 0.65) 0%, rgba(139, 92, 246, 0.22) 40%, transparent 65%),
        radial-gradient(ellipse at 50% 90%, rgba(123, 44, 246, 0.55) 0%, rgba(123, 44, 246, 0.18) 45%, transparent 70%),
        radial-gradient(ellipse at 10% 10%, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 75%),
        radial-gradient(ellipse at 90% 70%, rgba(123, 44, 246, 0.45) 0%, rgba(123, 44, 246, 0.13) 55%, transparent 80%),
        linear-gradient(135deg, #7B2CF6 0%, #5B21B6 20%, #3B1A8B 40%, #1A0B3D 60%, #0A0A0A 80%, #000000 100%) !important;
    background-size: 600% 600% !important;
    animation: universeFlow 25s ease-in-out infinite !important;
    overflow: hidden !important;
    display: block !important;
}

@keyframes universeFlow {
    0% {
        background-position: 0% 0%;
        transform: scale(1) rotate(0deg);
    }
    20% {
        background-position: 100% 0%;
        transform: scale(1.05) rotate(1deg);
    }
    40% {
        background-position: 100% 100%;
        transform: scale(1.1) rotate(0deg);
    }
    60% {
        background-position: 0% 100%;
        transform: scale(1.05) rotate(-1deg);
    }
    80% {
        background-position: 50% 50%;
        transform: scale(1.02) rotate(0.5deg);
    }
    100% {
        background-position: 0% 0%;
        transform: scale(1) rotate(0deg);
    }
}

/* Additional cosmic particles effect */
#matrix-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(123, 44, 246, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(123, 44, 246, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 30s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
    }
    75% {
        transform: translateY(-20px) translateX(5px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 20px;
        min-height: 100vh;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-stats {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .stat {
        min-width: 120px;
        padding: 20px;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        min-width: 280px;
        padding: 18px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 80px 20px;
    }
    
    h1 {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .hero h2 {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .logo {
        margin-bottom: 30px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .logo-emoji {
        font-size: 36px;
    }
    
    .hero-badge {
        padding: 12px 24px;
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .problems-grid, .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card, .solution-card {
        padding: 25px;
    }
    
    .comparison-table-content {
        font-size: 13px;
        min-width: 600px; /* Prevent table from being too cramped */
    }
    
    .comparison-table-content th {
        padding: 12px 8px;
        font-size: 11px;
        text-align: center;
        white-space: nowrap;
    }
    
    .comparison-table-content td {
        padding: 10px 8px;
        text-align: center;
        font-size: 11px;
        white-space: nowrap;
    }
    
    .comparison-table-content th:first-child,
    .comparison-table-content td:first-child {
        text-align: left;
        font-weight: 600;
        white-space: normal;
        min-width: 80px;
    }
    
    .comparison-table h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 25px;
    }
    
    .table-container {
        border-radius: 10px;
        margin: 0 -5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        min-width: 250px;
        padding: 16px 28px;
        font-size: 13px;
    }
    
    section {
        padding: 60px 15px;
    }
    
    h1 {
        font-size: clamp(28px, 7vw, 40px);
    }
    
    h2 {
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .hero h2 {
        font-size: clamp(18px, 4vw, 24px);
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-emoji {
        font-size: 32px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .problem-card, .solution-card {
        padding: 20px;
    }
    
    .comparison-table-content {
        font-size: 11px;
        min-width: 500px;
    }
    
    .comparison-table-content th {
        padding: 10px 6px;
        font-size: 10px;
        text-align: center;
        white-space: nowrap;
    }
    
    .comparison-table-content td {
        padding: 8px 6px;
        text-align: center;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .comparison-table-content th:first-child,
    .comparison-table-content td:first-child {
        text-align: left;
        font-weight: 600;
        white-space: normal;
        min-width: 70px;
    }
    
    .comparison-table h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin-bottom: 20px;
    }
    
    .table-container {
        border-radius: 8px;
        margin: 0 -10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Clean Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(10, 10, 10, 0.3) 100%);
    border-bottom: 1px solid rgba(123, 44, 246, 0.1);
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Clean Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

.logo-emoji {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(123, 44, 246, 0.3));
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(123, 44, 246, 0.2);
}

/* Clean Professional Badge */
.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(123, 44, 246, 0.2);
    box-shadow: 0 2px 10px rgba(123, 44, 246, 0.1);
}

/* Clean Professional Typography */
h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(123, 44, 246, 0.1);
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--success);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

/* Clean Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.stat {
    text-align: center;
    background: rgba(26, 26, 26, 0.4);
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid rgba(123, 44, 246, 0.15);
    min-width: 140px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 180px;
}

.stat:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 44, 246, 0.25);
    box-shadow: 0 4px 15px rgba(123, 44, 246, 0.1);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
}

/* Clean Professional Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    position: relative;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 8px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-primary, .btn-cta {
    background: var(--primary);
    color: var(--text-light);
    border: 1px solid rgba(123, 44, 246, 0.2);
    box-shadow: 0 2px 10px rgba(123, 44, 246, 0.2);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.6);
    color: var(--primary);
    border: 1px solid rgba(123, 44, 246, 0.2);
}

.btn-primary:hover, .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 44, 246, 0.3);
    border-color: rgba(123, 44, 246, 0.3);
}

.btn-secondary:hover {
    background: rgba(123, 44, 246, 0.1);
    color: var(--text-light);
    transform: translateY(-2px);
    border-color: rgba(123, 44, 246, 0.3);
    box-shadow: 0 4px 15px rgba(123, 44, 246, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 12px;
    animation: none;
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-subtext {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.btn-primary::before, .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.btn-primary:hover::before, .btn-cta:hover::before {
    left: 100%;
}

.btn-primary::after, .btn-cta::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-secondary);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover, .btn-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 45px rgba(123, 44, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::after, .btn-cta:hover::after {
    opacity: 0.4;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(123, 44, 246, 0.5);
    box-shadow: 0 15px 45px rgba(123, 44, 246, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    width: 100%;
    text-align: center;
}

.urgency-text {
    font-size: 14px;
    color: var(--warning);
    font-weight: 600;
    text-align: center;
}

/* Clean Professional Sections */
section {
    padding: 80px 20px;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

section:nth-child(even) {
    background: rgba(0, 0, 0, 0.15);
}

section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(123, 44, 246, 0.1);
}

section h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
}

/* How PnL Works Section */
.how-it-works {
    background: rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pipeline-section {
    margin-bottom: 60px;
}

.pipeline-section h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

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

.pipeline-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pipeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.3), transparent);
}

.pipeline-step:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 44, 246, 0.2);
    box-shadow: 0 10px 30px rgba(123, 44, 246, 0.05);
}

.step-number {
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(123, 44, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(123, 44, 246, 0.3);
}

.step-content h4 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.alert-info {
    margin-bottom: 60px;
    text-align: center;
}

.alert-info h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.alert-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.alert-feature {
    background: rgba(123, 44, 246, 0.05);
    border: 1px solid rgba(123, 44, 246, 0.15);
    padding: 20px;
    border-radius: 12px;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.alert-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 44, 246, 0.25);
    box-shadow: 0 8px 25px rgba(123, 44, 246, 0.1);
}

.channel-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.channel-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.channel-info:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 44, 246, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.channel-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.3), transparent);
}

.free-channel {
    border-left: 4px solid #4CAF50;
}

.pro-channel {
    border-left: 4px solid var(--primary);
}

.channel-info h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.channel-benefits {
    margin-bottom: 25px;
}

.benefit {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.benefit::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.channel-summary {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.risk-meter-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-meter-info h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.risk-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.risk-factor {
    background: rgba(123, 44, 246, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    border: 1px solid rgba(123, 44, 246, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.risk-factor:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 44, 246, 0.25);
    box-shadow: 0 5px 15px rgba(123, 44, 246, 0.1);
}

.risk-result {
    color: var(--text-light);
    font-weight: 600;
    margin: 15px 0 0 0;
}

.timeline-section {
    margin-bottom: 60px;
}

.timeline-section h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.3), transparent);
}

.timeline-step:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 44, 246, 0.2);
    box-shadow: 0 8px 25px rgba(123, 44, 246, 0.05);
}

.timeline-time {
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(123, 44, 246, 0.3);
    border: 1px solid rgba(123, 44, 246, 0.3);
}

.timeline-content {
    color: var(--text-light);
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.timeline-note {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
}

.bottom-line {
    text-align: center;
    padding: 50px;
    background: 
        rgba(123, 44, 246, 0.03),
        radial-gradient(ellipse at center, rgba(123, 44, 246, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(123, 44, 246, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bottom-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.4), transparent);
}

.bottom-line h3 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 600;
}

.bottom-line-content {
    margin-bottom: 35px;
}

.bottom-line-item {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
}

.final-message {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(123, 44, 246, 0.2);
}

/* Why Choose PnL Section */
.why-choose-pnl {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(123, 44, 246, 0.1);
    border-top: 3px solid var(--primary);
}

.trading-problems {
    margin-bottom: 80px;
}

.trading-problems h3 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Clean Professional Cards */
.problem-card {
    background: rgba(255, 0, 0, 0.02);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.problem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.1);
}

.problem-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.problem-card h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.problem-card p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.solution-card {
    background: rgba(123, 44, 246, 0.02);
    border: 1px solid rgba(123, 44, 246, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
}

.solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 44, 246, 0.2);
    box-shadow: 0 6px 20px rgba(123, 44, 246, 0.1);
}

.solution-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.solution-card h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.solution-proof {
    background: rgba(123, 44, 246, 0.05);
    border: 1px solid rgba(123, 44, 246, 0.1);
    border-radius: 6px;
    padding: 12px;
    margin-top: 15px;
}

.proof-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-text {
    color: var(--text-light);
    font-weight: 500;
    margin-left: 8px;
    font-size: 12px;
}

.comparison-table {
    margin-bottom: 80px;
}

.comparison-table h3 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

/* Live Channel Preview */
.live-preview {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.4) 100%),
        radial-gradient(ellipse at center, rgba(123, 44, 246, 0.05) 0%, transparent 70%);
    border-top: 1px solid rgba(123, 44, 246, 0.1);
    border-bottom: 1px solid rgba(123, 44, 246, 0.1);
}

.live-preview h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.live-preview .section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.live-window {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(123, 44, 246, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.live-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.live-header {
    padding: 20px;
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid rgba(123, 44, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.channel-details h3 {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.live-indicator {
    color: #ff4444;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.subscriber-count {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

/* Enhanced Telegram Preview Styles */
.telegram-content {
    height: 400px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
}

.telegram-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid rgba(123, 44, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.telegram-header .channel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.telegram-header .channel-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.telegram-header .channel-details h3 {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.telegram-header .live-indicator {
    color: #ff4444;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.telegram-header .subscriber-count {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.telegram-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.telegram-message {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid rgba(123, 44, 246, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.message-time {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
}

.message-status {
    color: #00ff88;
    font-size: 12px;
}

.message-content {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

.message-content strong {
    color: #7B2CF6;
    font-weight: 600;
}

.message-content small {
    color: var(--text-muted);
    font-size: 11px;
    display: block;
    margin-top: 5px;
}

.risk-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
}

.risk-badge.low {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.risk-badge.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.risk-badge.high {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.profit {
    color: #00ff88;
    font-weight: 600;
}

.telegram-footer {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(123, 44, 246, 0.2);
}

.join-prompt {
    text-align: center;
    margin-bottom: 15px;
}

.join-prompt p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 13px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0099dd 0%, #0077aa 100%);
    transform: translateY(-2px);
}

/* Professional Preview Styles */
.telegram-preview {
    height: 400px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.preview-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 102, 153, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 136, 204, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.telegram-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    color: #0088cc;
    font-weight: 600;
    font-size: 16px;
}

.preview-header .channel-info h4 {
    color: var(--text-light);
    margin: 0 0 3px 0;
    font-size: 16px;
}

.preview-header .channel-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 12px;
}

.preview-content {
    flex: 1;
    padding: 15px 20px;
    overflow-y: auto;
}

.message-stream {
    margin-bottom: 20px;
}

.stream-message {
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(0, 136, 204, 0.05);
    border-radius: 8px;
    border-left: 2px solid rgba(0, 136, 204, 0.3);
}

.message-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.message-meta .time {
    color: var(--text-muted);
    font-size: 11px;
}

.message-meta .status {
    color: #00ff88;
    font-size: 12px;
}

.message-text {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}

.message-text .highlight {
    color: #0088cc;
    font-weight: 600;
}

.message-text .profit {
    color: #00ff88;
    font-weight: 600;
}

.tag {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    margin-left: 6px;
}

.tag.low-risk {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.tag.medium-risk {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.preview-note {
    text-align: center;
    padding: 15px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(123, 44, 246, 0.2);
}

.preview-note p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 12px;
}

.preview-actions {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(123, 44, 246, 0.2);
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-telegram-direct {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-telegram-direct:hover {
    background: linear-gradient(135deg, #0099dd 0%, #0077aa 100%);
    transform: translateY(-2px);
}

.preview-actions .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
}

/* Scrollbar styling for telegram messages */
.telegram-messages::-webkit-scrollbar,
.preview-content::-webkit-scrollbar {
    width: 4px;
}

.telegram-messages::-webkit-scrollbar-track,
.preview-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.telegram-messages::-webkit-scrollbar-thumb,
.preview-content::-webkit-scrollbar-thumb {
    background: rgba(123, 44, 246, 0.5);
    border-radius: 2px;
}

.message-item {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid rgba(123, 44, 246, 0.3);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-time {
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 5px;
    font-weight: 500;
}

.message-content {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

.message-token {
    color: #7B2CF6;
    font-weight: 600;
}

.message-profit {
    color: #00ff88;
    font-weight: 600;
}

.message-risk {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
}

.risk-low {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.risk-medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.risk-high {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.live-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(123, 44, 246, 0.2);
    text-align: center;
}

.live-footer .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Live Preview */
@media (max-width: 768px) {
    .live-window {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .live-header {
        padding: 15px;
    }
    
    .live-messages {
        padding: 15px;
        max-height: 300px;
    }
    
    .live-footer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .live-window {
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .channel-avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .channel-details h3 {
        font-size: 14px;
    }
    
    .message-content {
        font-size: 13px;
    }
}
.table-container {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(123, 44, 246, 0.5) transparent;
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgba(123, 44, 246, 0.5);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(123, 44, 246, 0.7);
}

.comparison-table-content {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.4);
}

.comparison-table-content th {
    background: linear-gradient(135deg, rgba(123, 44, 246, 0.8) 0%, rgba(139, 92, 246, 0.7) 100%);
    color: white;
    padding: 25px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table-content td {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
}

.comparison-table-content tr:hover {
    background: rgba(123, 44, 246, 0.05);
}

.comparison-table-content tr:hover td {
    color: var(--text-light);
}


/* Sophisticated Final CTA */
.final-cta {
    text-align: center;
    padding: 80px;
    background: 
        rgba(123, 44, 246, 0.03),
        radial-gradient(ellipse at center, rgba(123, 44, 246, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(123, 44, 246, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.4), transparent);
}

.final-cta h3 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(123, 44, 246, 0.1);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 18px 36px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-1px);
}

/* Free Channel Focus Section */
.free-channel-focus {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(123, 44, 246, 0.1);
    border-top: 3px solid #4CAF50;
}

.free-benefits {
    margin-bottom: 60px;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(123, 44, 246, 0.05);
    border: 1px solid rgba(123, 44, 246, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 44, 246, 0.4);
    box-shadow: 0 8px 25px rgba(123, 44, 246, 0.1);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-content h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.free-cta {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-large {
    padding: 24px 48px;
    font-size: 18px;
    font-weight: 700;
    min-width: 300px;
    margin: 0 auto;
    display: block;
}

.cta-note {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
}

.pro-upgrade {
    text-align: center;
    padding: 40px;
    background: rgba(123, 44, 246, 0.05);
    border: 1px solid rgba(123, 44, 246, 0.2);
    border-radius: 8px;
}

.pro-upgrade h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 15px;
}

.pro-upgrade p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.pro-upgrade-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.pro-upgrade-link:hover {
    color: var(--text-light);
}

.pro-note {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
}

.pro-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pro-link:hover {
    color: var(--text-light);
}

/* Final Urgency Section */
.final-urgency {
    background: rgba(123, 44, 246, 0.05);
    border: 1px solid rgba(123, 44, 246, 0.2);
}

/* Success Stories Section */
.success-stories {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--success);
}

.success-stories h2 {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Sophisticated Testimonials */
.testimonial {
    background: rgba(123, 44, 246, 0.03);
    border: 1px solid rgba(123, 44, 246, 0.15);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.4), transparent);
}

.testimonial:hover {
    transform: translateY(-8px);
    border-color: rgba(123, 44, 246, 0.3);
    box-shadow: 0 15px 40px rgba(123, 44, 246, 0.1);
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    font-size: 36px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(123, 44, 246, 0.2));
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(123, 44, 246, 0.15);
    padding-top: 25px;
}

.author-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.author-profit {
    color: var(--success);
    font-weight: 500;
    font-size: 14px;
}

.card-cta {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--violet-glow);
}

/* Channel Cards */
.channels {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
}

.channel-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.channel-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 44, 246, 0.2);
}

.pro {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px var(--violet-glow);
}

.pro .card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 20px;
    z-index: -1;
    animation: card-glow 3s infinite;
}

.channel-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-badge {
    background: var(--success);
    color: var(--dark);
}

.pro-badge {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--text-light);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 44, 246, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-header .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.benefits {
    margin-bottom: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.benefit:hover {
    background: rgba(123, 44, 246, 0.1);
    transform: translateX(5px);
}

.card-footer {
    text-align: center;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 15px;
}

.card-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.free .card-btn {
    background: var(--text-light);
    color: var(--dark);
}

.free .card-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.pro .card-btn {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--text-light);
    box-shadow: 0 0 20px var(--violet-glow);
}

.pro .card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--violet-glow);
}

.comparison-cta {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(123, 44, 246, 0.3);
}

.comparison-cta p {
    font-size: 18px;
    color: var(--warning);
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Stories */
.success-stories {
    background: rgba(26, 26, 26, 0.2);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(123, 44, 246, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 246, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.author-profit {
    font-weight: 700;
    color: var(--success);
    font-size: 14px;
}

.testimonial-cta {
    width: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--text-light);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--violet-glow);
}

/* Features */
.features {
    background: rgba(26, 26, 26, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(123, 44, 246, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 44, 246, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-cta {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--violet-glow);
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    text-align: center;
}

.urgency-content h2 {
    color: var(--warning);
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.urgency-stat {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(123, 44, 246, 0.3);
    min-width: 120px;
}

.urgency-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--success);
    margin-bottom: 5px;
}

.urgency-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto 0 auto;
    width: 100%;
    text-align: center;
}

.btn-urgency {
    min-width: 250px;
}

/* Final CTA */
.final-cta {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-stat {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(123, 44, 246, 0.3);
    min-width: 120px;
}

.final-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--success);
    margin-bottom: 5px;
}

.final-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta {
    min-width: 300px;
    margin-bottom: 20px;
}

.final-urgency {
    font-size: 14px;
    color: var(--warning);
    font-weight: 600;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes text-glow {
    0% { 
        text-shadow: 0 0 30px var(--violet-glow); 
    }
    100% { 
        text-shadow: 0 0 50px var(--violet-glow), 0 0 70px var(--violet-glow); 
    }
}

@keyframes logo-float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

@keyframes logo-glow-pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.1); 
    }
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes card-glow {
    0%, 100% { 
        opacity: 0.3; 
    }
    50% { 
        opacity: 0.6; 
    }
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.1); 
        opacity: 0; 
    }
}


/* Premium Notification System */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    pointer-events: none;
}

.notification-popup {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.7),
        0 0 25px var(--violet-glow);
    backdrop-filter: blur(20px);
    animation: notification-slide-in 0.6s ease-out;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.notification-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: notification-progress 5s linear;
}

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

.notification-icon {
    font-size: 28px;
    animation: none;
}

.notification-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-content {
    margin-bottom: 8px;
}

.notification-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.coin-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.notification-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.country-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.country-name {
    font-weight: 600;
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Notification Animations */
@keyframes notification-slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notification-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes notification-progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-logo {
        height: 80px;
        max-width: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .channel-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats {
        gap: 20px;
    }
    
    .final-stats {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .urgency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* How PnL Works Responsive */
    .pipeline-steps {
        grid-template-columns: 1fr;
    }
    
    .pipeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .channel-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .alert-features {
        grid-template-columns: 1fr;
    }
    
    .risk-factors {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-time {
        min-width: auto;
    }
    
    /* Why Choose PnL Responsive */
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table-content {
        font-size: 14px;
    }
    
    .comparison-table-content th,
    .comparison-table-content td {
        padding: 15px;
    }
    
    /* Free Channel Focus Responsive */
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-large {
        min-width: 250px;
        padding: 20px 40px;
        font-size: 16px;
    }
    
    /* Success Stories Responsive */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        margin-bottom: 30px;
    }
    
    /* How PnL Works Responsive */
    .pipeline-steps {
        grid-template-columns: 1fr;
    }
    
    .pipeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .channel-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .alert-features {
        grid-template-columns: 1fr;
    }
    
    .risk-factors {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-time {
        min-width: auto;
    }
    
    /* Final Urgency Responsive */
    .urgency-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .urgency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Logo Responsive */
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-emoji {
        font-size: 36px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    /* Hero Responsive */
    .hero {
        padding: 60px 20px;
    }
    
    .hero-buttons button {
        min-width: 200px;
        padding: 18px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        height: 70px;
        max-width: 180px;
    }
    
    .notification-popup {
        min-width: 280px;
        max-width: 320px;
        padding: 16px;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .channel-card {
        padding: 20px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
}

/* Subtle Animations */
@keyframes subtleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply subtle fade-in to sections on scroll */
.difference, .channels, .success-stories, .features, .urgency {
    animation: subtleFadeIn 0.6s ease-out;
}

/* Smooth hover transitions */
.channel-card, .feature, .testimonial, .difference-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover, .feature:hover, .testimonial:hover, .difference-card:hover {
    transform: translateY(-5px);
}

/* Button Centering - Global */
button {
    text-align: center;
}

/* Premium Button */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    width: 100%;
    text-align: center;
}

.hero-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(123, 44, 246, 0.4);
    min-width: 250px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

.hero-buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-buttons button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 44, 246, 0.6);
}

.hero-buttons button:hover::before {
    left: 100%;
}

/* Clean Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 5px 0;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-light);
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Reorganized Channels Section */
.channels-section {
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.channels-section h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.channels-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(123, 44, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 246, 0.5), transparent);
}

.free-channel {
    border-left: 4px solid #4CAF50;
}

.free-channel::before {
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
}

.pro-channel {
    border-left: 4px solid var(--primary);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.channel-header h4 {
    color: var(--text-light);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.channel-tag {
    background: rgba(123, 44, 246, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    border: 1px solid rgba(123, 44, 246, 0.3);
}

.free-channel .channel-tag {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.3);
}

.channel-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid rgba(123, 44, 246, 0.3);
    transition: all 0.3s ease;
}

.free-channel .feature {
    background: rgba(76, 175, 80, 0.05);
    border-left-color: rgba(76, 175, 80, 0.3);
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(123, 44, 246, 0.1);
}

.free-channel .feature:hover {
    background: rgba(76, 175, 80, 0.1);
}

.feature-icon {
    font-size: 20px;
    margin-top: 2px;
}

.feature-content h5 {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    margin: 0;
    line-height: 1.5;
}

.channel-summary {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-summary p {
    color: var(--text-light);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Risk Meter Details */
.risk-meter-details {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-meter-details h5 {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 10px;
    font-weight: 600;
}

.risk-meter-details p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    margin-bottom: 15px;
}

.risk-factors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
}

.risk-factor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(123, 44, 246, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(123, 44, 246, 0.15);
    transition: all 0.3s ease;
}

.risk-factor:hover {
    transform: translateX(5px);
    border-color: rgba(123, 44, 246, 0.25);
    box-shadow: 0 5px 15px rgba(123, 44, 246, 0.1);
}

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

.risk-text {
    color: var(--text-light);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    font-weight: 500;
}

.risk-result {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.risk-result strong {
    color: #00ff88;
    font-weight: 600;
}

.risk-result {
    color: var(--text-light);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    margin: 0;
    line-height: 1.5;
}

/* Timeline Section */
.timeline-section {
    margin: 60px 0;
    text-align: center;
}

.timeline-section h4 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 600;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), rgba(123, 44, 246, 0.3));
    border-radius: 0 4px 4px 0;
}

.timeline-step:hover {
    transform: translateX(10px);
    border-color: rgba(123, 44, 246, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.timeline-time {
    min-width: 100px;
    font-weight: 600;
    color: var(--primary);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    text-align: center;
    background: rgba(123, 44, 246, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.timeline-content {
    flex: 1;
    text-align: left;
}

.timeline-content h5 {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    margin: 0;
    line-height: 1.5;
}

.timeline-note {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 30px;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    padding: 20px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(123, 44, 246, 0.1);
}

/* Bottom Line Section */
.bottom-line {
    margin-top: 60px;
    padding: 40px;
    background: rgba(123, 44, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(123, 44, 246, 0.15);
    backdrop-filter: blur(10px);
}

.bottom-line h4 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.bottom-line-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.bottom-line-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.bottom-line-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.item-icon {
    font-size: 24px;
}

.item-content h5 {
    color: var(--primary);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.item-content p {
    color: var(--text-light);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    margin: 0;
    line-height: 1.5;
}

.final-message {
    text-align: center;
    padding: 25px;
    background: rgba(123, 44, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(123, 44, 246, 0.2);
}

.final-message p {
    color: var(--text-light);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for New Structure */
@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .channel-card {
        padding: 25px;
    }
    
    .channel-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .channel-header h4 {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .feature {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .feature-content h5 {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    
    .feature-content p {
        font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    }
    
    .channel-summary {
        padding: 15px;
    }
    
    .channel-summary p {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    }
    
    .risk-meter-details h5 {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    
    .risk-meter-details p {
        font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    }
    
    .risk-factor {
        padding: 10px 12px;
    }
    
    .risk-text {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }
    
    .risk-result {
        padding: 12px;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .timeline-time {
        min-width: auto;
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    
    .timeline-content h5 {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    
    .timeline-content p {
        font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    }
    
    .timeline-note {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
        padding: 15px;
    }
    
    .bottom-line {
        padding: 25px;
    }
    
    .bottom-line-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bottom-line-item {
        padding: 15px;
    }
    
    .item-content h5 {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    
    .item-content p {
        font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    }
    
    .final-message p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 15px;
    }
}
