/*
Theme Name: FoxVideoChat
Theme URI: https://foxvideochat.to
Author: FoxVideoChat Team
Author URI: https://foxvideochat.to
Description: Modern video chat platform theme with purple branding - matches STANDALONE.html design
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foxvideochat
*/

/* EXACT CSS FROM STANDALONE.HTML */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
        sans-serif;
    font-feature-settings: "kern";
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(to right, #a855f7, #9333ea);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.4);
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 40px -5px rgba(168, 85, 247, 0.6);
    color: white;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #a78bfa;
    color: #a78bfa;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    color: white;
    border-color: #c4b5fd;
    background-color: rgba(164, 132, 250, 0.1);
}

.card-glass {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.pill {
    border-radius: 9999px;
    padding: 16px 24px;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
}

.pill:hover {
    border-color: rgba(168, 85, 247, 0.6);
    background: rgba(168, 85, 247, 0.15);
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
    color: #ffffff;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    background: #000000;
    backdrop-filter: blur(12px);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
}

.logo-circle {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: linear-gradient(to right, #a78bfa, #c084fc);
}

.logo-image {
    height: 70px !important;
    width: 70px !important;
    max-height: 70px;
    max-width: 70px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    padding: 6px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6),
                0 0 40px rgba(168, 85, 247, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(168, 85, 247, 0.8);
    transition: all 0.3s ease;
}

.logo-image:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8),
                0 0 60px rgba(168, 85, 247, 0.6),
                0 6px 12px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.nav-links {
    display: none;
    gap: 48px;
    font-size: 14px;
}

.nav-links a {
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #c084fc;
}

.nav-cta {
    display: none;
}

@media (min-width: 640px) {
    .nav-links {
        display: flex;
    }
    .nav-cta {
        display: inline-block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(168, 85, 247, 0.15), #000000);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero-blur-1 {
    top: -160px;
    right: -160px;
    height: 320px;
    width: 320px;
    background: rgba(168, 85, 247, 0.2);
}

.hero-blur-2 {
    bottom: -160px;
    left: -160px;
    height: 320px;
    width: 320px;
    background: rgba(147, 51, 234, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .hero-left h1 {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-left h1 {
        font-size: 64px;
    }
}

.hero-gradient {
    background: linear-gradient(to right, #c084fc, #d8b4fe, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 18px;
    max-width: 500px;
    color: #d1d5db;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .hero-subtext {
        font-size: 20px;
    }
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.hero-primary-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .hero-cta-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.hero-cta-wrapper .btn-primary {
    padding: 16px 32px;
    font-size: 18px;
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.5);
}

.hero-signup-note {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
}

.hero-primary-cta .hero-live-users {
    margin: 2px 0 0;
    font-size: 13px !important;
    font-weight: 500;
    color: #9ca3af !important;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.hero-live-dot {
    color: #22c55e !important;
    margin-right: 6px;
    font-size: 12px;
    vertical-align: middle;
}

.hero-right {
    display: none;
    width: 400px;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-right {
        display: flex;
        width: 100%;
        flex: 1;
        border-left: none;
        padding: 80px 60px;
    }
}

/* SEO Content Sections */
.content-section {
    background-color: #000000;
    padding: 42px 24px;
}

.content-section-alt {
    background: linear-gradient(to bottom, #000000, rgba(168, 85, 247, 0.05));
}

.content-body {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #d1d5db;
}

.content-section .section-header {
    margin-bottom: 22px;
    text-align: center;
}

.content-section .section-header h2 {
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 12px;
    font-size: 32px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.28);
}

.content-section .section-header p {
    font-size: 17px;
}

.content-body p {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
}

.content-body h3 {
    margin: 20px 0 8px;
    font-size: 22px;
    color: #ffffff;
}

.content-body .content-list {
    margin: 12px 0 18px;
    padding-left: 20px;
    list-style: disc !important;
}

.content-body .content-list li {
    margin-bottom: 10px;
    color: #e5e7eb;
}

.content-body .content-list li::marker {
    color: #a855f7;
}

.content-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    table-layout: fixed;
}

.content-compare-table th,
.content-compare-table td {
    width: 50%;
    border: 1px solid rgba(168, 85, 247, 0.45);
    padding: 14px 18px;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
}

.content-compare-table th {
    color: #ffffff;
    background: rgba(168, 85, 247, 0.18);
    font-weight: 700;
    font-size: 15px;
}

.content-compare-table td {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.6;
}

.content-compare-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.content-compare-table td:empty {
    background: transparent;
    border-color: transparent;
}

.content-section-how {
    padding-top: 26px;
    padding-bottom: 38px;
}

.content-section-how .content-body-how {
    max-width: 1080px;
}

.content-section-how .section-header {
    margin-bottom: 24px;
    text-align: center;
}

.content-section-how .section-header h2 {
    display: block;
    border-bottom: 1px solid rgba(168, 85, 247, 0.28);
    padding-bottom: 12px;
    font-size: 32px;
}

.content-section-how .how-steps {
    gap: 16px;
}

.content-section-how .how-step {
    min-height: 100%;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.content-section-how .how-step h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.content-section-how .how-step h3::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(168, 85, 247, 0.2);
}

.content-section-how .how-step:nth-child(1) h3::before {
    content: "1";
}

.content-section-how .how-step:nth-child(2) h3::before {
    content: "2";
}

.content-section-how .how-step:nth-child(3) h3::before {
    content: "3";
}

.content-section-how .how-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
}

.content-body a:not(.btn-primary):not(.btn-secondary) {
    color: #e9d5ff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(192, 132, 252, 0.9);
    background: rgba(168, 85, 247, 0.16);
    border-radius: 6px;
    padding: 1px 6px;
    transition: color 0.2s ease, background-color 0.2s ease, text-decoration-color 0.2s ease;
}

.content-body a:not(.btn-primary):not(.btn-secondary):hover {
    color: #ffffff;
    background: rgba(168, 85, 247, 0.28);
    text-decoration-color: rgba(233, 213, 255, 1);
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .how-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.how-step {
    background: rgba(168, 85, 247, 0.09);
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.how-step:hover {
    transform: translateY(-2px);
    border-color: rgba(192, 132, 252, 0.55);
    box-shadow: 0 10px 22px rgba(168, 85, 247, 0.22);
}

.how-step h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #ffffff;
}

.how-step p {
    margin: 0;
    font-size: 14px;
    color: #d1d5db;
}

@media (max-width: 640px) {
    .content-body {
        padding: 0;
    }

    .content-section .section-header {
        margin-bottom: 16px;
    }

    .content-section .section-header h2 {
        font-size: 26px;
    }

    .content-body p {
        font-size: 16px;
    }

    .content-body .content-list li {
        padding: 0;
    }

    .content-section-how .content-body-how {
        max-width: 100%;
    }

    .content-section-how .section-header {
        margin-bottom: 20px;
    }

    .content-section-how .section-header h2 {
        font-size: 28px;
    }

    .content-section-how .how-step {
        padding: 22px 18px 18px;
    }
}

/* What Are You Looking For Section */
.section-looking {
    background-color: #000000;
    padding: 60px 24px;
}

@media (min-width: 640px) {
    .section-looking {
        padding: 80px 24px;
    }
}

.section-header {
    margin-bottom: 64px;
    text-align: center;
}

.section-header h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 42px;
    }
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #9ca3af;
}

@media (min-width: 640px) {
    .section-header p {
        font-size: 20px;
    }
}

.pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

@media (min-width: 640px) {
    .pills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pill-button {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.pill-button:hover {
    transform: scale(1.05);
}

.pill-icon {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.pill-button:hover .pill-icon {
    transform: scale(1.1);
}

.pill-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

/* CTA Band */
.cta-band-section {
    background-color: #000000;
    padding: 40px 24px;
}

@media (min-width: 640px) {
    .cta-band-section {
        padding: 50px 24px;
    }
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(to bottom, #000000, rgba(168, 85, 247, 0.05));
    padding: 60px 24px;
}

@media (min-width: 640px) {
    .timeline-section {
        padding: 80px 24px;
    }
}

.timeline-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .timeline-container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.timeline-wrapper {
    position: relative;
}

.timeline-image-container {
    display: none;
}

@media (min-width: 1024px) {
    .timeline-image-container {
        display: block;
    }
}

.timeline-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
    border: 3px solid rgba(168, 85, 247, 0.3);
}

.timeline-line {
    position: absolute;
    left: 11px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #a855f7;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.timeline-node {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: 2px solid #a855f7;
    background: transparent;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-top: 0;
}

.timeline-node::after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #a855f7;
}

.timeline-content {
    flex: 1;
    padding-top: 0;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

@media (min-width: 640px) {
    .timeline-title {
        font-size: 22px;
    }
}

.timeline-desc {
    max-width: 600px;
    font-size: 14px;
    line-height: 1.5;
    color: #d1d5db;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.safety-item {
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
}

.safety-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #ffffff;
}

.safety-item p {
    margin: 0;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
}

/* Mistakes Section */
.mistakes-section {
    background: linear-gradient(to bottom, #000000, rgba(168, 85, 247, 0.06));
}

.mistakes-section .mistakes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto 32px;
}

@media (min-width: 768px) {
    .mistakes-section .mistakes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mistakes-section .mistake-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px;
    border-radius: 16px;
    border: 2px solid rgba(168, 85, 247, 0.75) !important;
    border-left: 6px solid #a855f7 !important;
    background: rgba(168, 85, 247, 0.2) !important;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mistakes-section .mistake-item:hover {
    background: rgba(168, 85, 247, 0.27) !important;
    box-shadow: 0 10px 28px rgba(168, 85, 247, 0.3) !important;
    transform: translateY(-2px);
}

.mistakes-section .mistake-number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #c084fc;
    background: linear-gradient(to right, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mistakes-section .mistake-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.mistakes-section .mistake-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #d1d5db;
    margin: 0;
}

.mistakes-footer {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: #9ca3af;
    font-style: italic;
    padding-top: 8px;
}

/* Key Features Section */
.key-features-section {
    background-color: #000000;
    padding: 60px 24px;
}

@media (min-width: 640px) {
    .key-features-section {
        padding: 80px 24px;
    }
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

@media (min-width: 640px) {
    .feature-content h3 {
        font-size: 22px;
    }
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
}

@media (min-width: 640px) {
    .feature-content p {
        font-size: 16px;
    }
}

/* Wild Experience Section */
.wild-section {
    background: linear-gradient(to bottom, #000000, rgba(168, 85, 247, 0.1));
    padding: 60px 24px;
}

@media (min-width: 640px) {
    .wild-section {
        padding: 96px 24px;
    }
}

.wild-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wild-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wild-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wild-card {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.wild-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.wild-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

@media (min-width: 640px) {
    .wild-card h3 {
        font-size: 22px;
    }
}

.wild-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #d1d5db;
}

@media (min-width: 640px) {
    .wild-card p {
        font-size: 15px;
    }
}

/* Community Section */
.community-section {
    background-color: #000000;
    padding: 60px 24px;
}

@media (min-width: 640px) {
    .community-section {
        padding: 80px 24px;
    }
}

.longform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.longform-tag {
    border-radius: 9999px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    padding: 8px 16px;
    font-size: 14px;
    color: #c4b5fd;
}

/* FAQ Section */
.faq-section {
    background-color: #000000;
    padding: 60px 24px;
}

.faq-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 48px;
    color: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #a855f7;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #faf9fb;
}

.faq-icon {
    font-size: 24px;
    color: #a855f7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    background: #000000;
    backdrop-filter: blur(4px);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-brand-circle {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(to right, #a78bfa, #c084fc);
}

.footer-brand-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-brand-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 14px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c084fc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
}

.footer-warning {
    font-size: 14px;
    color: #6b7280;
}

/* WordPress Specific Styles */
.site-main {
    background: #000000;
}

/* Blog Post Styles for WordPress */
.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 24px;
}

.post-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.post-title a {
    color: #ffffff;
}

.post-title a:hover {
    color: #c084fc;
}

.post-excerpt {
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Single Post */
.single-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 3px solid #a855f7;
}

.entry-title {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

.entry-content {
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.8;
}

.entry-content h2 {
    color: #ffffff;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.entry-content h3 {
    color: #a855f7;
    margin-top: 32px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}
