:root {
    --bg-color: #0d0d12;
    --card-bg: #16161e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --primary-color: #7c3aed;
    /* Purple */
    --primary-hover: #6d28d9;
    --accent-color: #ffd700;
    /* Gold */
    --gradient-main: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
}

.btn-outline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-list a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #1f1f2e, #16161e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sections */
.section {
    padding: 100px 0;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    z-index: 1;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 2rem;
    font-weight: 900;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: "-";
}

.faq-question.active+.faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #0d0d12;
    padding: 60px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-label {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info i {
    color: #d946ef;
    /* Magenta/Pink from image */
    font-size: 1.2rem;
}

.footer-heading {
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.heading-line {
    height: 2px;
    width: 30px;
    background-color: #a855f7;
    /* Purple accent */
    display: inline-block;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #d946ef;
    padding-left: 5px;
}

.newsletter-form p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-family: inherit;
    color: #333;
    background: #fff;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d946ef;
    /* Icon color */
}

.footer .btn-primary {
    width: 100%;
    border-radius: 5px;
    background: #a855f7;
    /* Purple button */
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px;
}

.footer .btn-primary:hover {
    background: #9333ea;
}

.footer-bottom {
    background: #050508;
    /* Darker bottom bar */
    padding: 20px 0;
    text-align: center;
    border-top: none;
    font-size: 0.85rem;
    color: #fff;
}

.footer-bottom .highlight {
    color: #a855f7;
    font-weight: bold;
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        /* Mobile menu implementation needed via JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }


    .hero-buttons {
        justify-content: center;
    }
}

/* How It Works */
.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-secondary);
}

/* Content Showcase */
.showcase-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.showcase-split.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.showcase-visual {
    flex: 1;
}

.visual-card {
    height: 350px;
    background: linear-gradient(135deg, #2a2a3e, #16161e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.visual-card.sports::before {
    content: '⚽';
    font-size: 10rem;
    position: absolute;
    opacity: 0.1;
    transform: rotate(-20deg);
}

.visual-card.movies::before {
    content: '🎬';
    font-size: 10rem;
    position: absolute;
    opacity: 0.1;
    transform: rotate(20deg);
}

@media (max-width: 900px) {

    .showcase-split,
    .showcase-split.reverse {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        text-align: center !important;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card .rating {
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Segmented Control */
.pricing-control {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    gap: 5px;
    width: fit-content;
    margin: 0 auto;
}

.pricing-control .control-option {
    background: transparent !important;
    border: none !important;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
    font-size: 0.9rem;
    box-shadow: none !important;
}

.pricing-control .control-option:hover {
    color: white;
}

.pricing-control .control-option.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5) !important;
}

.badge-mini {
    background: var(--accent-color);
    color: black;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    vertical-align: super;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--primary-color);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #a0a0b0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

/* Stats Section */
.stats-section {
    position: relative;
}

.stat-item {
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.stat-item:hover {
    background: var(--card-bg);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cta-text h2 {
        justify-content: center;
        text-align: center;
    }

    .cta-footer h2 {
        font-size: 2rem !important;
    }

    .section-title {
        text-align: center !important;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* Social Sidebar */
.post-layout-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.social-share-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 150px;
    z-index: 10;
    min-width: 50px;
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Hide sidebar on smaller screens */
@media (max-width: 1000px) {
    .social-share-sidebar {
        display: none;
    }

    .post-layout-wrapper {
        display: block;
    }
}

/* Blog Link Styling */
.blog-link,
.post-content a:not(.btn) {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-decoration-color: var(--primary-color) !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 4px !important;
    transition: all 0.3s ease !important;
}

.blog-link:hover,
.post-content a:not(.btn):hover {
    color: var(--primary-hover) !important;
    text-decoration-color: var(--primary-hover) !important;
}

/* Post Content Images & Headings Spacing */
.post-content img {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-content h2,
.post-content h3 {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    color: white;
}