/* assets/css/live.css */

/* Hero Section */
.hero-live {
    padding: 80px 20px 60px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-live h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Stream Preview */
.stream-preview-large {
    margin: 50px 0 40px;
}

.preview-placeholder {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 150px 40px;
    text-align: center;
}

.preview-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.preview-placeholder p {
    color: #666;
    font-size: 18px;
}
.stream-preview-large {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preview-gif {
    max-width: 100%;
    height: auto;
    display: block;
	border-radius:10px;
}
/* Progress Bar Styles */
.progress-container {
    max-width: 500px;
    margin: 2rem auto;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-label {
    color: #888;
}

.progress-count {
    font-weight: 600;
    color: #fff;
}

.progress-bar-wrapper {
    background: #2a2a2a;
    border-radius: 10px;
    height: 20px;
    position: relative;
    overflow: visible;
}

.progress-bar {
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.progress-milestone {
    position: absolute;
    top: -8px;
    transform: translateX(-50%);
}

.milestone-marker {
    width: 4px;
    height: 36px;
    background: #ff4444;
    margin: 0 auto;
}

.milestone-label {
    display: block;
    font-size: 0.75rem;
    color: #ff4444;
    margin-top: 4px;
    white-space: nowrap;
}

.progress-footnote {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}

.progress-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    text-align: center;
}

.progress-bar-mini-wrapper {
    background: #2a2a2a;
    border-radius: 6px;
    height: 8px;
    margin-bottom: 0.75rem;
}

.progress-bar-mini {
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    height: 100%;
    border-radius: 6px;
}

/* Vision Roadmap */
.vision-roadmap {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #ff4444;
}

.roadmap-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.roadmap-item:last-child {
    border-bottom: none;
}

.roadmap-item.final {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
}

.roadmap-milestone {
    font-weight: 700;
    color: #ff4444;
    min-width: 100px;
}

.roadmap-result {
    color: #ccc;
}

.roadmap-item.final .roadmap-result {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.big-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Final CTA countdown */
.final-countdown-header {
    font-size: 2rem;
}

.countdown-highlight {
    color: #ff4444;
    font-family: monospace;
}

.final-progress {
    max-width: 400px;
}

.progress-cta {
    margin-top: 0.75rem;
    color: #ff4444;
}
.btn-xl {
    padding: 20px 60px;
    font-size: 20px;
    font-weight: bold;
}

.subtext {
    margin-top: 20px;
    color: #aaa;
    font-size: 15px;
}

.subtext span {
    color: #ff4444;
    font-weight: 600;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 20px;
    background: #0f0f0f;
}

.simple-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.list-item {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 25px;
}

.list-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.list-item p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
}

.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 50px auto 0;
}

.price-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: #ff4444;
    background: linear-gradient(135deg, #1a1a1a, #2a1a1a);
}

.price-card.best-value {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #1a1a1a, #1a2a1a);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.price-amount {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.price-amount .period {
    font-size: 20px;
    color: #888;
}

.price-desc {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.price-features li {
    padding: 10px 0;
    color: #ccc;
    font-size: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li.disabled {
    color: #666;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.price-footnote {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

.honest-note {
    max-width: 700px;
    margin: 60px auto 0;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.honest-note p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.honest-note strong {
    color: #ff4444;
}

/* Why Section */
.why-section {
    padding: 80px 20px;
    background: #0f0f0f;
}

.reason-block {
    max-width: 700px;
    margin: 40px auto 0;
}

.reason-block p {
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 25px;
}

.reason-block p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.faq-item p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 40px;
}

.final-cta span {
    color: #ff4444;
    font-weight: bold;
}

.cta-buttons-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-centered .btn {
    width: 100%;
    text-align: center;
}

.cta-note {
    font-size: 14px;
    color: #4CAF50;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
      .pricing-grid-three {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-live h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .preview-placeholder {
        padding: 120px 30px;
    }

    .btn-xl {
        padding: 18px 40px;
        font-size: 18px;
    }

    .list-item {
        padding: 25px;
    }

    .list-item h3 {
        font-size: 20px;
    }

    .list-item p {
        font-size: 15px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-live {
        padding: 60px 15px 40px;
    }

    .hero-live h1 {
        font-size: 28px;
    }

    .preview-placeholder {
        padding: 100px 20px;
    }

    .preview-icon {
        font-size: 60px;
    }

    .list-item {
        padding: 20px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .honest-note {
        padding: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-buttons-centered {
        max-width: 100%;
    }
}

/* Two-column pricing grid */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .pricing-grid-two {
        grid-template-columns: 1fr;
    }
}

/* Highlight features in price card */
.price-features li.highlight {
    color: #ffd700;
}

/* Collector breakdown section */
.collector-breakdown {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.collector-breakdown h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.breakdown-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.breakdown-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.breakdown-text strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.breakdown-text p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
}

/* Final subtitle */
.final-subtitle {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 30px;
}