/**
 * RSS Ninja - Main Stylesheet
 * Shared styles across all pages
 */

/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: 'The Last Shuriken';
    src: url('../fonts/The Last Shuriken.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Variable.ttf?v=2') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --orange: #F97316;
    --orange-dark: #EA580C;
    --black: #0D0D0D;
    --white: #FFFFFF;
    --grey-light: #F5F5F5;
    --grey: #E0E0E0;
    --grey-dark: #6B6B6B;
    --green: #22c55e;
    --red: #ef4444;

    /* Default theme variables (light theme as fallback) */
    --bg: #FFFFFF;
    --bg-alt: #F5F5F5;
    --text: #0D0D0D;
    --text-light: #6B6B6B;
    --card-bg: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
    --shuriken-color: #0D0D0D;
    --accent: #F97316;
    --input-bg: #F5F5F5;
    --input-border: #E0E0E0;
}

[data-theme="light"] {
    --bg: #FFFFFF;
    --bg-alt: #F5F5F5;
    --text: #0D0D0D;
    --text-light: #6B6B6B;
    --card-bg: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
    --shuriken-color: #0D0D0D;
    --accent: #F97316;
    --input-bg: #F5F5F5;
    --input-border: #E0E0E0;
}


[data-theme="dark"] {
    --bg: #0D0D0D;
    --bg-alt: #1A1A1A;
    --text: var(--white);
    --text-light: #A0A0A0;
    --card-bg: #1A1A1A;
    --shadow: rgba(0, 0, 0, 0.4);
    --shuriken-color: #333333;
    --accent: var(--orange);
    --input-bg: #1A1A1A;
    --input-border: #333;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
}

/* ============================================
   FLOATING SHURIKENS
   ============================================ */
.shuriken {
    position: fixed;
    pointer-events: none;
    z-index: -10;
    opacity: 0.4;
    animation: spin-float 12s ease-in-out infinite;
}

.shuriken svg {
    fill: var(--shuriken-color);
    transition: fill 0.3s ease;
}

@keyframes spin-float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--grey);
    transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] header {
    border-color: #333;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-img {
    height: 55px;
    width: auto;
}

/* Logo theme switching - dark theme (default) shows white logo */
.logo-img.logo-light {
    display: block !important;
}

.logo-img.logo-dark {
    display: none !important;
}

/* Light theme shows black logo */
[data-theme="light"] .logo-img.logo-light {
    display: none !important;
}

[data-theme="light"] .logo-img.logo-dark {
    display: block !important;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: none;
}

[data-theme="dark"] .logo-icon {
    background: var(--orange);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
    margin-left: 2rem;
}

nav a:hover {
    color: var(--orange);
}

/* ============================================
   AUTH BUTTONS
   ============================================ */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn {
    color: var(--text);
    border: 2px solid var(--input-border);
    background: transparent;
}

.login-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

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

.signup-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    background: var(--card-bg);
    border: none;
    width: 50px;
    height: 28px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 2px 8px var(--shadow);
    transition: background 0.3s ease;
}

.theme-toggle::after {
    content: '☀️';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    transition: left 0.3s ease;
}

[data-theme="dark"] .theme-toggle::after {
    content: '🌙';
    left: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 2px solid var(--input-border);
}

.btn-secondary:hover {
    border-color: var(--orange);
}

.btn-danger {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-danger:hover {
    background: var(--red);
    color: var(--white);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--input-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   MESSAGES
   ============================================ */
.message {
    padding: 0.875rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    display: none;
}

.message.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.message.success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.message.show {
    display: block;
}

/* ============================================
   PAGE TITLES (Privacy, Terms, Contact, Account)
   ============================================ */
.page-title {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: 1px;
}

.page-subtitle {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* ============================================
   CONTENT SECTIONS (Privacy, Terms)
   ============================================ */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    position: relative;
    z-index: 2;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul {
    color: var(--text-light);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: var(--text);
}

/* ============================================
   PAGE CONTENT (Privacy, Terms, Contact)
   ============================================ */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    position: relative;
    z-index: 1;
}

.page-content .content-section p {
    line-height: 1.8;
}

.page-content .content-section li {
    line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: background 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   BACK LINK
   ============================================ */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.85rem;
    border-top: 1px solid var(--input-border);
    position: relative;
    z-index: 2;
}

footer a {
    color: var(--orange);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-mascot {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.footer-heart {
    color: var(--red);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text);
    letter-spacing: 1px;
}

.section-title span {
    color: var(--orange);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

[data-theme="light"] .mobile-menu-toggle span {
    background: #0D0D0D;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: var(--bg);
    z-index: 999;
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--input-border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-menu-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 8px;
}

.mobile-menu-nav a:hover {
    background: var(--bg-alt);
    color: var(--orange);
}

.mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--input-border);
}

.mobile-menu-auth .auth-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

#backToTop svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Shuriken positions for homepage */
.shuriken:nth-child(1) { top: 8%; left: 5%; animation-delay: 0s; width: 30px; }
.shuriken:nth-child(2) { top: 18%; right: 8%; animation-delay: 2s; width: 45px; }
.shuriken:nth-child(3) { top: 45%; left: 3%; animation-delay: 4s; width: 25px; }
.shuriken:nth-child(4) { top: 65%; right: 4%; animation-delay: 1s; width: 35px; }
.shuriken:nth-child(5) { top: 82%; left: 8%; animation-delay: 3s; width: 40px; }
.shuriken:nth-child(6) { top: 28%; right: 12%; animation-delay: 5s; width: 28px; }
.shuriken:nth-child(7) { top: 55%; right: 18%; animation-delay: 6s; width: 22px; }
.shuriken:nth-child(8) { top: 75%; left: 15%; animation-delay: 7s; width: 32px; }

/* Hero Section */
.hero {
    padding: 3rem 0 5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mascot-container {
    position: relative;
    margin-bottom: 2rem;
}

.mascot {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mascot-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero h1 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 0.75rem;
    color: var(--text);
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero .subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--orange);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    min-width: 200px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.cta-button svg {
    width: 22px;
    height: 22px;
}

.intro-price {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.intro-price strong {
    color: var(--orange);
}

/* Features Section */
.features {
    background: rgba(245, 245, 245, 0.5);
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    transition: background 0.3s ease;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}

[data-theme="dark"] .features {
    background: rgba(26, 26, 26, 0.5);
    border-color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.75rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: none;
    border: 1px solid var(--grey);
}

[data-theme="dark"] .feature-card {
    border-color: #333;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.feature-wide {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem 2.5rem;
    border: 2px solid var(--orange);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.feature-card.feature-wide .feature-icon {
    margin: 0;
    width: 70px;
    height: 70px;
    font-size: 2rem;
}

.feature-card.feature-wide .feature-text h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.feature-card.feature-wide .feature-text p {
    max-width: 700px;
    line-height: 1.7;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--grey);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

[data-theme="dark"] .feature-icon {
    background: #2a2a2a;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.pricing .pricing-cards {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-alt);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: none;
    border: 2px solid var(--grey);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

[data-theme="dark"] .pricing-card {
    border-color: #333;
}

.pricing-card.featured {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.pricing-card.featured .price-period,
.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.badge {
    position: absolute;
    top: 1.1rem;
    right: -2.2rem;
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
}

.price-original {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.pricing-card.featured .price-original {
    color: rgba(255, 255, 255, 0.7);
}

.price-period {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.discount-tag {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
}

.pricing-trial-banner {
    text-align: center;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.15) 100%);
    border: 1px solid #22c55e;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-trial-banner p {
    font-size: 0.95rem;
    color: #22c55e;
    font-weight: 600;
    margin: 0;
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured .trial-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.price-savings {
    font-size: 0.9rem;
    color: #22c55e;
    margin-top: 0.25rem;
    font-weight: 600;
}

.pricing-card.featured .price-savings {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    border: 1px solid var(--orange);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
    color: #fff;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    background: var(--black);
    color: var(--white);
    font-size: 0.95rem;
    border: none;
}

.pricing-button:hover {
    background: var(--orange);
}

.pricing-card.featured .pricing-button {
    background: var(--white);
    color: var(--black);
}

.pricing-card.featured .pricing-button:hover {
    background: var(--black);
    color: var(--white);
}

.intro-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: 2px solid var(--orange);
    border-radius: 16px;
    font-size: 0.95rem;
    color: var(--text);
}

.intro-note strong {
    color: var(--orange);
}

/* Comic Ninja Section */
/* RSS Ninja for Thunderbird Section */
.thunderbird-section {
    background: linear-gradient(135deg, rgba(0, 150, 199, 0.08) 0%, rgba(56, 96, 190, 0.08) 100%);
    padding: 5rem 0;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

[data-theme="dark"] .thunderbird-section {
    background: linear-gradient(135deg, rgba(0, 150, 199, 0.12) 0%, rgba(56, 96, 190, 0.12) 100%);
}

/* EPUB Ninja Section */
.epubninja-section {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(234, 88, 12, 0.06) 100%);
    padding: 5rem 0;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

[data-theme="dark"] .epubninja-section {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
}

.cta-button-epub {
    background: var(--orange) !important;
}

.cta-button-epub:hover {
    background: var(--orange-dark) !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
}

.feature-wide-epub {
    max-width: 1000px;
    margin: 1.5rem auto 0;
}

.thunderbird-badge-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: bounce 3s ease-in-out infinite;
}

.cta-button-thunderbird {
    background: linear-gradient(135deg, #0096c7, #3860be) !important;
    margin-bottom: 2rem !important;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

.cta-button-thunderbird:hover {
    box-shadow: 0 6px 20px rgba(0, 150, 199, 0.4) !important;
}

.thunderbird-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.thunderbird-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto 3rem;
}

.thunderbird-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--grey);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.thunderbird-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 150, 199, 0.15);
}

.thunderbird-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.thunderbird-feature-card h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thunderbird-feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}


/* Thunderbird Pricing Cards - Wide 2-column */
.tb-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tb-pricing-card {
    background: var(--bg-alt);
    border: 1px solid var(--grey);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tb-pricing-card .tb-pricing-features {
    flex: 1;
}

.tb-pricing-card .tb-pricing-btn {
    width: 100%;
}


.tb-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 150, 199, 0.15);
}

.tb-pricing-card.tb-pricing-lifetime {
    border: 2px solid #f97316;
}

.tb-pricing-card.tb-pricing-lifetime:hover {
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.2);
}

.tb-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0096c7, #3860be);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.tb-pricing-badge-fire {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.tb-pricing-sub-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    align-self: center;
    width: fit-content;
    justify-self: center;
}

.tb-pricing-sub-badge-fire {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.tb-pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.tb-pricing-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.tb-pricing-original {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-top: 0.25rem;
}

.tb-pricing-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.tb-pricing-savings {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0096c7;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
}

.tb-pricing-lifetime .tb-pricing-savings {
    color: #f97316;
}

.tb-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    text-align: left;
    display: inline-block;
}

.tb-pricing-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.75rem;
}

.tb-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #0096c7;
    font-weight: 700;
}

.tb-pricing-lifetime .tb-pricing-features li::before {
    color: #f97316;
}

.tb-pricing-btn {
    display: block;
    background: linear-gradient(135deg, #0096c7, #3860be);
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.3);
    margin-top: auto;
    text-align: center;
}

.tb-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 199, 0.4);
}

.tb-pricing-btn-fire {
    background: linear-gradient(135deg, #f97316, #dc2626);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.tb-pricing-btn-fire:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

@media (max-width: 950px) {
    .tb-pricing-cards[style*="repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .tb-pricing-cards,
    .tb-pricing-cards[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    .tb-pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .tb-pricing-price {
        font-size: 3rem;
    }
}

/* Removed old grid/visual styles - now using centered card layout */
.demo-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid var(--input-border);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Why Section */
.why-section {
    background: rgba(245, 245, 245, 0.5);
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    transition: background 0.3s ease;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}

[data-theme="dark"] .why-section {
    background: rgba(26, 26, 26, 0.5);
    border-color: #333;
}

.why-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.why-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.why-content strong {
    color: var(--text);
}

.why-logo {
    max-width: 350px;
    height: auto;
    margin-top: 2rem;
}

/* Gallery Button */
.gallery-button-container {
    text-align: center;
    margin-top: 2.5rem;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gallery-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    display: none !important;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block !important;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block !important;
}

.response-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    position: relative;
    z-index: 5;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.about-header h1 span {
    color: var(--orange);
}

.about-header .tagline {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-section strong {
    color: var(--text);
}

.highlight-box {
    background: var(--card-bg);
    border: 1px solid var(--orange);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    margin-bottom: 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--grey);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

[data-theme="dark"] .feature-item {
    border-color: #333;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
}

.feature-item h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.philosophy-list li {
    color: var(--text-light);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--grey);
}

[data-theme="dark"] .philosophy-list li {
    border-color: #333;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-list li::before {
    content: "//";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--grey);
}

[data-theme="dark"] .cta-section {
    border-color: #333;
}

.cta-section h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cta-btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.cta-btn-secondary:hover {
    background: var(--orange);
    color: white;
}

/* ============================================
   FEEDBACK PAGE STYLES
   ============================================ */
.feedback-container {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 2rem;
}

.feedback-card {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.card-title-icon {
    font-size: 1.3rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid var(--input-border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.comment-form textarea::placeholder {
    color: var(--text-light);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.char-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    background: var(--bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.delete-btn {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: var(--red);
    color: var(--white);
}

.comment-content {
    color: var(--text);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.comment-reply {
    margin-top: 0.75rem;
    margin-left: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
}

.admin-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reply-content {
    color: var(--text);
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.reply-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.no-comments {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.upgrade-prompt {
    text-align: center;
    padding: 2rem;
}

.upgrade-prompt p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.loading {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

/* ============================================
   TUTORIAL PAGE STYLES
   ============================================ */
.tutorial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    position: relative;
    z-index: 5;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tutorial-header h1 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tutorial-header h1 span {
    color: var(--orange);
}

.tutorial-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--grey);
    border-radius: 12px;
    padding: 0.5rem;
}

[data-theme="dark"] .product-tabs {
    border-color: #333;
}

.product-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-tab:hover {
    background: var(--grey);
}

[data-theme="dark"] .product-tab:hover {
    background: #333;
}

.product-tab.active {
    background: var(--orange);
    color: white;
}

.product-tab.active:hover {
    background: #ea580c;
}

.product-tab svg {
    width: 20px;
    height: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.comic-ninja-intro {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--orange);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comic-ninja-intro h2 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.comic-ninja-intro p {
    color: var(--text-light);
    margin: 0;
}

.comic-ninja-intro .highlight {
    color: var(--orange);
    font-weight: 600;
}

.kbd {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--bg);
    border: 1px solid var(--grey);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text);
}

[data-theme="dark"] .kbd {
    background: #333;
    border-color: #444;
}

.toc {
    background: var(--card-bg);
    border: 1px solid var(--grey);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

[data-theme="dark"] .toc {
    border-color: #333;
}

.toc h2 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.toc-list a {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.toc-list a:hover {
    background: var(--grey);
}

[data-theme="dark"] .toc-list a:hover {
    background: #333;
}

.tutorial-section {
    background: var(--card-bg);
    border: 1px solid var(--grey);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

[data-theme="dark"] .tutorial-section {
    border-color: #333;
}

.tutorial-section h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-number {
    width: 32px;
    height: 32px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tutorial-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tutorial-section strong {
    color: var(--text);
}

.step-box {
    background: var(--bg);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.step-box h3 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.step-box ol, .step-box ul {
    color: var(--text-light);
    margin-left: 1.25rem;
    line-height: 1.8;
}

.step-box li {
    margin-bottom: 0.25rem;
}

.tip-box {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.tip-box p {
    color: var(--text);
    margin: 0;
    font-size: 0.95rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.tag-blue { background: #3b82f6; color: white; }
.tag-green { background: #10b981; color: white; }
.tag-purple { background: #8b5cf6; color: white; }
.tag-orange { background: var(--orange); color: white; }

.action-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.action-row:last-child {
    margin-bottom: 0;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey);
}

[data-theme="dark"] .feature-row {
    border-color: #333;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    color: var(--text-light);
    font-size: 0.85rem;
    min-width: 80px;
    flex-shrink: 0;
}

.feature-content {
    color: var(--text-light);
    line-height: 1.6;
}

.feature-content strong {
    color: var(--text);
}

.format-box {
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.format-opml {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid #8b5cf6;
}

.format-json {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
}

.format-box h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.format-box .format-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.format-box .step-box {
    background: rgba(255,255,255,0.5);
}

[data-theme="dark"] .format-opml .step-box {
    background: rgba(139, 92, 246, 0.2);
}

[data-theme="dark"] .format-json .step-box {
    background: rgba(16, 185, 129, 0.2);
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--orange);
    background: var(--card-bg);
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slideshow-slide.active {
    opacity: 1;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.slideshow-caption h3 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.slideshow-caption h3 span {
    color: var(--orange);
}

.slideshow-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
}

.slideshow-dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

.slideshow-dot:hover {
    background: rgba(255,255,255,0.7);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(249, 115, 22, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}

.slideshow-nav:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev { left: 15px; }
.slideshow-next { right: 15px; }

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    position: relative;
    z-index: 5;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h1 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.gallery-header h1 span {
    color: var(--orange);
}

.gallery-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--orange);
}

.section-header:first-of-type {
    margin-top: 0;
}

.section-header h2 {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    margin: 0;
}

.section-header h2 span {
    color: var(--orange);
}

.section-header .badge {
    position: static;
    transform: none;
    background: var(--orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--grey);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/10;
}

[data-theme="dark"] .gallery-item {
    border-color: #333;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-divider {
    margin: 4rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--orange);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
    background: var(--orange-dark);
    transform: scale(1.1);
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10002;
}

.modal-nav:hover {
    background: var(--orange-dark);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s;
}

.back-button:hover {
    opacity: 0.8;
}

/* ============================================
   AUTH PAGES STYLES
   ============================================ */
.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 10px 40px var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    margin-bottom: 1rem;
}

.auth-icon-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.auth-title {
    font-family: 'The Last Shuriken', 'Zen Maru Gothic', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
    cursor: pointer;
}

.forgot-link {
    color: var(--orange);
    font-weight: 600;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--input-border);
}

.divider span {
    padding: 0 1rem;
}

.social-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--input-border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--orange);
    background: var(--card-bg);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.auth-footer a {
    font-weight: 600;
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.875rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.875rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    display: none;
}

.success-message.show {
    display: block;
}

.password-requirements {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-checkbox a {
    font-weight: 600;
}

/* ============================================
   ACCOUNT PAGE STYLES
   ============================================ */
.account-container {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.account-grid {
    display: grid;
    gap: 1.5rem;
}

.account-card {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 20px;
    padding: 1.75rem;
}

.card-title-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    vertical-align: middle;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.profile-details {
    flex: 1;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.profile-email {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.profile-joined {
    color: var(--text-light);
    font-size: 0.85rem;
}

.subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.subscription-badge.pro {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
}

.subscription-badge.free {
    background: var(--bg-alt);
    color: var(--text-light);
    border: 1px solid var(--input-border);
}

.subscription-details {
    margin-top: 1rem;
}

.subscription-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--input-border);
}

.subscription-row:last-child {
    border-bottom: none;
}

.subscription-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.subscription-value {
    font-weight: 600;
    color: var(--text);
}

.subscription-value.active {
    color: var(--green);
}

.settings-form {
    display: grid;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.danger-zone {
    border-color: rgba(239, 68, 68, 0.3);
}

.danger-zone .card-title {
    color: var(--red);
}

.danger-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ============================================
   SUCCESS PAGE STYLES
   ============================================ */
.success-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
    z-index: 1;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pop 0.5s ease;
}

@keyframes pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
}

.success-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.success-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.next-steps {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.next-steps ol {
    margin-left: 1.25rem;
    color: var(--text-light);
}

.next-steps li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.next-steps a {
    color: var(--orange);
    text-decoration: none;
}

.next-steps a:hover {
    text-decoration: underline;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE - SHARED
   ============================================ */
@media (max-width: 968px) {
    .thunderbird-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .thunderbird-features {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .hero-slideshow {
        height: 420px;
        border-radius: 12px;
    }

    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .slideshow-prev { left: 15px; }
    .slideshow-next { right: 15px; }
}

@media (max-width: 950px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards .pricing-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header-right > nav,
    .auth-buttons {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .mobile-menu-nav {
        display: flex !important;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .content-container {
        padding: 2rem 1.5rem 4rem;
    }

    .btn-group {
        flex-direction: column;
    }

    /* Fix z-index stacking on mobile */
    .shuriken,
    #particles {
        z-index: -100 !important;
    }

    .hero,
    .features,
    .pricing,
    .thunderbird-section,
    .epubninja-section,
    .why-section,
    footer {
        z-index: 10 !important;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .cta-buttons-hero {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero .cta-button {
        width: fit-content;
    }

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

    .feature-card.feature-wide {
        grid-column: span 1;
        padding: 1.5rem;
    }

    .feature-card.feature-wide .feature-text h3 {
        font-size: 1.2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .thunderbird-section,
    .epubninja-section {
        padding: 3rem 0;
    }

    .thunderbird-features {
        gap: 1.5rem;
    }

    .thunderbird-feature-card {
        padding: 1.5rem 1rem;
    }

    /* Prevent horizontal scrolling from images */
    .why-logo {
        max-width: 100% !important;
        width: auto;
        height: auto;
    }


    .contact-card {
        padding: 1.5rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .feedback-container {
        padding: 1.5rem;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .comment-meta {
        width: 100%;
        justify-content: space-between;
    }

    .upgrade-prompt .btn {
        display: block;
        width: 100%;
        margin: 0 0 0.75rem 0 !important;
        text-align: center;
    }

    .upgrade-prompt .btn:last-child {
        margin-bottom: 0 !important;
    }

    .account-container {
        padding: 1.5rem;
    }

    .profile-info {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Tutorial page mobile fixes */
    .tutorial-container {
        padding: 1.5rem 1.25rem 3rem;
    }

    .product-tabs {
        flex-wrap: wrap;
    }

    .product-tab {
        flex: 1 1 auto;
        min-width: 140px;
    }

    .tutorial-section {
        padding: 1.5rem;
    }

    .format-box .step-box {
        padding: 1rem;
    }

    .format-box .step-box ol {
        margin-left: 1rem;
    }
}

@media (max-width: 600px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .tutorial-header h1 {
        font-size: 2rem;
    }

    .tutorial-container {
        padding: 1.5rem 1rem 3rem;
    }

    .product-tabs {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.375rem;
    }

    .product-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: flex-start;
    }

    .product-tab svg {
        width: 18px;
        height: 18px;
    }

    .tutorial-section {
        padding: 1.25rem;
    }

    .tutorial-section h2 {
        font-size: 1.2rem;
    }

    .section-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .toc {
        padding: 1rem;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .step-box {
        padding: 1rem;
    }

    .tip-box {
        padding: 0.875rem;
    }

    .format-box {
        padding: 1rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-label {
        min-width: auto;
        font-weight: 600;
        color: var(--text);
    }

    .action-row {
        flex-wrap: wrap;
    }

    .comic-ninja-intro {
        padding: 1.25rem;
    }

    .comic-ninja-intro h2 {
        font-size: 1.1rem;
    }

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

    .gallery-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-slideshow {
        height: 280px;
    }

    .slideshow-caption h3 {
        font-size: 1.1rem;
    }

    .slideshow-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slideshow-prev { left: 10px; }
    .slideshow-next { right: 10px; }

    .success-card {
        padding: 2rem 1.5rem;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .buttons {
        flex-direction: column;
    }
}
