.elementor-2304 .elementor-element.elementor-element-ab298c8{--display:flex;}/* Start custom CSS *//* Gamma Review 2025 - Premium Article Styles */

/* Import Premium Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Consistent Design */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --background-white: #ffffff;
    --background-light: #f8fafc;
    --background-alt: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Base Styles */
.gamma-review-article {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gamma-review-article * {
    box-sizing: border-box;
}

/* Typography */
.gamma-review-article h1,
.gamma-review-article h2,
.gamma-review-article h3,
.gamma-review-article h4,
.gamma-review-article h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-top: 0;
}

.gamma-review-article h1 { font-size: 48px; }
.gamma-review-article h2 { font-size: 36px; margin-bottom: 24px; }
.gamma-review-article h3 { font-size: 28px; margin-bottom: 20px; }
.gamma-review-article h4 { font-size: 22px; margin-bottom: 16px; }

.gamma-review-article p {
    margin-bottom: 20px;
}

.gamma-review-article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.gamma-review-article a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Hero Section */
.article-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 24px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.4;
}

.hero-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0.9;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.hero-image-container {
    position: relative;
    margin: 0 -40px -80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

/* Quick Overview */
.quick-overview {
    margin-bottom: 80px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.overview-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.overview-card.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: var(--primary-color);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.overview-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 16px;
}

/* Table of Contents */
.table-of-contents {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 60px;
}

.table-of-contents h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.table-of-contents ol {
    margin: 0;
    padding-left: 24px;
}

.table-of-contents li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.table-of-contents a {
    color: var(--text-secondary);
    font-weight: 500;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Content Sections */
.content-section {
    margin-bottom: 80px;
}

.content-section.alt-background {
    background: var(--background-light);
    padding: 60px 40px;
    border-radius: 24px;
    margin-left: -40px;
    margin-right: -40px;
}

/* Article Introduction */
.article-intro {
    margin-bottom: 60px;
}

.lead-paragraph {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 32px;
    margin: 32px 0;
}

.highlight-box h3 {
    color: #92400e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 24px;
}

.highlight-box li {
    color: #78350f;
    margin-bottom: 12px;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    gap: 48px;
}

.showcase-item {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.showcase-item.major {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.showcase-item.highlight {
    border-color: var(--warning-color);
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.showcase-header {
    padding: 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-light);
    opacity: 0.3;
}

.showcase-header h3 {
    flex: 1;
    margin: 0;
}

.feature-badge {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-badge.new {
    background: var(--accent-color);
    color: white;
}

.feature-badge.pro {
    background: var(--secondary-color);
    color: white;
}

.feature-badge.exclusive {
    background: var(--warning-color);
    color: white;
}

.feature-badge.enhanced {
    background: var(--primary-color);
    color: white;
}

.showcase-content {
    padding: 32px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.capability {
    background: var(--background-light);
    padding: 24px;
    border-radius: 12px;
}

.capability h4 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.capability p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.real-impact {
    background: #dcfce7;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: 8px;
    color: #166534;
    margin-top: 24px;
}

/* Animation Types */
.animation-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.animation-card {
    text-align: center;
    padding: 24px;
    background: var(--background-light);
    border-radius: 12px;
    transition: var(--transition);
}

.animation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.animation-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.animation-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.animation-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.feature-quote {
    font-style: italic;
    font-size: 20px;
    color: var(--primary-dark);
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    border-left: 4px solid var(--secondary-color);
    background: rgba(139, 92, 246, 0.05);
}

/* OpenAI Features */
.openai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.openai-card {
    background: var(--background-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.openai-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.openai-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 32px;
}

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

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

/* Persona Grid */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.persona-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.persona-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.persona-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.persona-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.time-saved {
    background: var(--background-light);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-block;
}

/* Features Tabs */
.features-tabs {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: var(--background-light);
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

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

.feature-detail h4 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.feature-detail ul {
    margin-bottom: 24px;
}

.feature-detail li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.compatibility-note {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

/* Getting Started Grid */
.getting-started-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-card h3 {
    margin-top: 12px;
}

.limitation-note {
    background: #fef3c7;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #92400e;
    margin-top: 16px;
}

/* Test Cases */
.test-case {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.test-header {
    background: var(--background-light);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.test-header h3 {
    margin: 0;
    font-size: 24px;
}

.test-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.test-content {
    padding: 32px;
}

.prompt-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

.prompt-box h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.prompt-box p {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.result-metric {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
}

.metric-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.test-verdict {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.test-verdict h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.test-highlights h4 {
    margin-bottom: 16px;
}

.test-highlights ul {
    margin: 0;
    padding-left: 24px;
}

.test-highlights li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* Workflow Section */
.workflow-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.workflow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.workflow-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.workflow-step p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.workflow-arrow {
    font-size: 32px;
    color: var(--primary-light);
    font-weight: 700;
    margin: 0 -16px;
}

.workflow-result {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border: 2px solid #86efac;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
}

.workflow-result h4 {
    font-size: 28px;
    color: #166534;
    margin-bottom: 12px;
}

.workflow-result p {
    color: #15803d;
    font-size: 18px;
    margin: 0;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price span {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
}

.annual-price {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.plan-features h4 {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.plan-verdict {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

/* Pricing Calculator */
.pricing-calculator {
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.pricing-calculator h3 {
    margin-bottom: 20px;
}

.roi-calculation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.calc-item {
    background: var(--background-white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.calc-item span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary-color);
}

.calc-item.highlight {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border-color: #86efac;
}

.calc-item.highlight strong {
    color: #166534;
}

/* Affiliate Section */
.affiliate-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 24px;
    padding: 48px;
    margin: 60px 0;
    text-align: center;
}

.affiliate-content h2 {
    color: #166534;
    margin-bottom: 16px;
}

.affiliate-content p {
    color: #15803d;
    font-size: 20px;
    margin-bottom: 24px;
}

.affiliate-link {
    color: #166534;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid #86efac;
}

.affiliate-link:hover {
    border-color: #166534;
}

/* Verdict Section */
.verdict-summary {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.verdict-score {
    text-align: center;
    flex-shrink: 0;
}

.score-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.score-label {
    font-size: 18px;
    color: var(--text-secondary);
}

.verdict-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.verdict-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.pros h3,
.cons h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pros h3 {
    color: var(--accent-color);
}

.cons h3 {
    color: var(--warning-color);
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cons li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: 700;
    font-size: 20px;
}

.bottom-line {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 32px;
    border-radius: 8px;
}

.bottom-line h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.bottom-line p {
    margin-bottom: 16px;
}

.bottom-line p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.article-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
    padding: 64px;
    border-radius: 24px;
    text-align: center;
    margin: 80px 0;
}

.article-cta h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 16px;
}

.article-cta p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-primary);
    text-decoration: none;
}

.cta-note {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 24px;
}

/* FAQ Section */
.faq-section {
    background: var(--background-light);
    padding: 60px 40px;
    border-radius: 24px;
    margin: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--background-white);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Article Footer */
.article-footer {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.footer-meta p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gamma-review-article {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .article-hero {
        padding: 40px 24px;
    }
    
    .hero-image-container {
        margin: 0 -24px -40px;
    }
    
    .content-section.alt-background {
        margin-left: -24px;
        margin-right: -24px;
        padding: 40px 24px;
    }
    
    .overview-grid,
    .persona-grid,
    .features-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: -16px 0;
    }
    
    .animation-types {
        grid-template-columns: 1fr;
    }
    
    .openai-features {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .verdict-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        border-bottom: 1px solid var(--border-color);
    }
    
    .tab-button:last-child {
        border-bottom: none;
    }
    
    .tab-button.active::after {
        display: none;
    }
    
    .article-cta {
        padding: 40px 24px;
    }
    
    .article-cta h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Tab Functionality */
.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .gamma-review-article {
        color: black;
        font-size: 12pt;
    }
    
    .article-hero {
        background: none;
        color: black;
        border: 1px solid black;
    }
    
    .hero-image-container,
    .cta-buttons,
    .article-cta {
        display: none;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* JavaScript Tab Script - Add to page */
<script>
document.addEventListener('DOMContentLoaded', function() {
    const tabButtons = document.querySelectorAll('.tab-button');
    const tabPanes = document.querySelectorAll('.tab-pane');
    
    tabButtons.forEach(button => {
        button.addEventListener('click', function() {
            const targetTab = this.getAttribute('data-tab');
            
            tabButtons.forEach(btn => btn.classList.remove('active'));
            tabPanes.forEach(pane => pane.classList.remove('active'));
            
            this.classList.add('active');
            document.getElementById(targetTab).classList.add('active');
        });
    });
});
</script>/* End custom CSS */