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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.logo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('TC BANNER2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.logo-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.85) 100%);
}

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

.header {
    padding: 40px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, transparent 100%);
    position: relative;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 30, 30, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4a90e2;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.member-count {
    font-size: 0.9rem;
    color: #4a90e2;
    font-weight: 600;
}

.brand-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    background: linear-gradient(90deg,
        #ffd700 0%,
        #ffffff 10%,
        #888888 50%,
        #ffffff 90%,
        #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
}

.brand-title::before,
.brand-title::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffd700, transparent);
    filter: blur(8px);
    animation: sparkle 2s ease-in-out infinite;
}

.brand-title::before {
    top: 0;
    left: -10px;
}

.brand-title::after {
    top: 0;
    right: -10px;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.tagline {
    font-size: 1.2rem;
    color: #aaaaaa;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.header-cta {
    margin: 30px 0;
}

.header-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.header-cta-button::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.5s ease;
}

.header-cta-button:hover::before {
    left: 100%;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.35);
}

.cta-main {
    font-weight: 700;
    font-size: 1.15rem;
}

.cta-sub {
    font-size: 0.85rem;
    opacity: 0.8;
}

.header-cta-divider {
    color: #888;
    font-size: 0.9rem;
    margin: 15px 0;
}

.header-discord-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #5865F2;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.header-discord-button:hover {
    background: rgba(88, 101, 242, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.header-discord-button i {
    font-size: 1.2rem;
}

.session-timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.session-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.session-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.session-time {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Monaco', 'Courier New', monospace;
    color: #4a90e2;
}

.credibility-banner {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.1), rgba(255, 215, 0, 0.1));
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4a90e2, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}

.main-content {
    padding: 40px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.welcome-message {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.welcome-message p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.welcome-message strong {
    color: #ffffff;
    font-weight: 600;
}

.features {
    margin: 30px 0;
}

.features h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features i {
    color: #4a90e2;
    width: 20px;
}

.access-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.tier {
    padding: 30px;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.tier h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.free-tier {
    border-left: 3px solid #4a90e2;
}

.premium-tier {
    border-left: 3px solid #ffd700;
}

.premium-tier h3 {
    color: #ffd700;
}

.psychology-section {
    margin-bottom: 80px;
    background: rgba(15, 15, 15, 0.6);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.psychology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

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

.psych-card {
    background: rgba(25, 25, 25, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.psych-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(74, 144, 226, 0.3);
}

.psych-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4a90e2;
}

.psych-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.psych-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

.psychology-quote {
    text-align: center;
    padding: 40px 20px;
    background: rgba(30, 30, 30, 0.4);
    border-radius: 15px;
}

.psychology-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.proof-section {
    margin-bottom: 80px;
}

.proof-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.result-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card.win {
    border-left: 3px solid #4ade80;
}

.result-card.loss {
    border-left: 3px solid #f87171;
}

.result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.result-pair {
    font-weight: 700;
    font-size: 1.1rem;
}

.result-time {
    font-size: 0.85rem;
    color: #888;
}

.result-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-type {
    font-size: 0.9rem;
    color: #aaa;
}

.result-profit {
    font-weight: 700;
    font-size: 1.2rem;
}

.result-card.win .result-profit {
    color: #4ade80;
}

.result-card.loss .result-profit {
    color: #f87171;
}

.result-roi {
    font-weight: 600;
}

.result-card.win .result-roi {
    color: #4ade80;
}

.result-card.loss .result-roi {
    color: #f87171;
}

.proof-cta {
    text-align: center;
    color: #aaa;
}

.education-section {
    margin-bottom: 80px;
    background: rgba(15, 15, 15, 0.4);
    padding: 60px 0;
}

.education-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.journey-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.journey-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.journey-step p {
    font-size: 0.9rem;
    color: #aaa;
}

.social-section {
    margin-bottom: 80px;
}

.social-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.primary-cta {
    text-align: center;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(25, 25, 25, 0.8);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.social-card i {
    font-size: 2rem;
    width: 40px;
}

.social-card span {
    font-size: 1.1rem;
    font-weight: 500;
}

.discord {
    border-left: 3px solid #5865F2;
}

.discord:hover {
    background: rgba(88, 101, 242, 0.1);
}

.tiktok {
    border-left: 3px solid #00f2ea;
}

.tiktok:hover {
    background: rgba(0, 242, 234, 0.1);
}

.instagram {
    border-left: 3px solid #E4405F;
}

.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.testimonials-section {
    margin-bottom: 80px;
    background: rgba(15, 15, 15, 0.4);
    padding: 60px 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.member-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.result-screenshot-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.result-screenshot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.screenshot-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.8);
}

.screenshot-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.result-screenshot-card:hover .screenshot-wrapper img {
    transform: scale(1.05);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 25px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.member-username {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffd700;
}

.trade-type {
    font-size: 0.85rem;
    color: #aaa;
}

.profit-badge {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #4ade80;
}

.profit-badge.massive {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(74, 222, 128, 0.2));
    color: #4ade80;
    border-color: #ffd700;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.testimonials-cta {
    text-align: center;
    margin-top: 30px;
}

.proof-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item {
    background: rgba(25, 25, 25, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #4a90e2;
}

.faq-item p {
    color: #aaa;
    line-height: 1.6;
}

.final-cta {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(255, 215, 0, 0.1));
    padding: 80px 0;
    margin-bottom: 80px;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.final-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px auto 20px;
    max-width: 800px;
}

.final-discord {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 30px;
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #5865F2;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.final-discord:hover {
    background: rgba(88, 101, 242, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
}

.final-discord i {
    font-size: 2rem;
}

.final-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.final-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.final-premium i {
    font-size: 1.8rem;
}

.final-cta-buttons small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.85;
}

.urgency-text {
    font-size: 0.95rem;
    color: #ffd700;
    font-weight: 600;
}

.footer {
    padding: 40px 0;
    text-align: center;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #888888;
    margin: 5px 0;
}

.disclaimer {
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .access-tiers {
        grid-template-columns: 1fr;
    }

    .psychology-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        flex-direction: column;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-buttons {
        grid-template-columns: 1fr;
    }
}