:root {
    --primary-color: #ff6b81;
    --primary-hover: #ff4757;
    --text-color: #2f3542;
    --text-light: #747d8c;
    --bg-color: #ffffff;
    --bg-light: #f1f2f6;
    --border-color: #dfe4ea;
    --radius: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 25px rgba(255, 107, 129, 0.2);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.navbar nav a {
    margin: 0 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Hero */
.hero {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #fff0f2 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 35px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards */
.card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Features */
.feature-card {
    text-align: center;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Media/AI */
.media-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.media-card p {
    color: var(--text-light);
}

/* Pricing */
.pricing-card {
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-card .price span {
    font-size: 1.2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    padding: 0 10px;
}

.pricing-card ul li {
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
    font-size: 0.95rem;
}

/* Reviews */
.review-card .stars {
    color: #ffa502;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.review-card .user {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px 30px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #2f3542;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #ced6e0;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #747d8c;
    font-size: 0.9rem;
}

/* Auxiliary Pages Content */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

.page-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: -30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.page-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.page-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-content li {
    margin-bottom: 8px;
}

/* Responsive - Mobile Optimization */
@media (max-width: 768px) {
    .navbar nav {
        display: none; /* Hide nav links on mobile */
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .btn {
        padding: 14px 28px;
        min-height: 48px; /* Touch target minimum size */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

/* ===== CANDY RAIN NEON THEME OVERRIDES ===== */
:root {
    --primary-color: #F472B6;
    --primary-hover: #f14299;
    --text-color: #ffffff;
    --text-light: #c4b5fd;
    --bg-color: transparent;
    --bg-light: rgba(255, 255, 255, 0.05);
    --border-color: rgba(244, 114, 182, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 0 25px rgba(244, 114, 182, 0.6);
}

body {
    background: linear-gradient(180deg, #221238 0%, #0E0719 100%);
    background-attachment: fixed;
    color: var(--text-color);
}

.navbar {
    background-color: rgba(21, 12, 38, 0.8) !important;
}

.navbar nav a {
    color: var(--text-color) !important;
}

.navbar nav a:hover {
    color: var(--primary-color) !important;
}

.hero {
    background: transparent !important;
}

.card, .faq-item, .page-content {
    background: rgba(34, 18, 56, 0.6) !important;
    border: 1px solid rgba(244, 114, 182, 0.1);
    backdrop-filter: blur(10px);
}

.footer {
    background-color: rgba(14, 7, 25, 0.9) !important;
    border-top: 1px solid var(--border-color);
}

.pricing-card {
    background: rgba(34, 18, 56, 0.8) !important;
}

.pricing-card.popular {
    background: rgba(50, 20, 70, 0.8) !important;
    border-color: #22D3EE !important;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3) !important;
}

.pricing-card.popular .badge {
    background: #22D3EE !important;
    color: #0E0719 !important;
}

.btn-large[style*="background-color: #2f3542"] {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.media-card h3 {
    color: #22D3EE !important;
}

.page-header {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.5) 0%, rgba(34, 211, 238, 0.5) 100%) !important;
    backdrop-filter: blur(5px);
}

.pricing-card ul li {
    color: var(--text-light);
}

.review-card p {
    color: var(--text-color);
}


/* Accessibility & SEO Fixes */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    z-index: 10000;
    transition: top 0.2s;
    font-weight: bold;
}
.skip-link:focus {
    top: 0;
}
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
[id] {
    scroll-margin-top: 80px;
}
details.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    outline: none;
    color: var(--text-color);
}
details.faq-item summary::-webkit-details-marker {
    display: none;
}
details.faq-item[open] summary {
    color: var(--primary-color);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
}
details.faq-item p {
    margin-top: 10px;
}
