/* ========================================
   G.T. Reoch Author Page Styles
   Clean Professional Theme
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Jungle Black Gold Green Color Palette */
    --primary-color: #1a2f1a;          /* Deep Forest Green */
    --secondary-color: #0d1a0d;        /* Almost Black Green */
    --accent-color: #d4af37;           /* Rich Gold */
    --accent-secondary: #1a2f1a;       /* Medium Jungle Green */
    --text-color: #1a1a1a;             /* Near Black */
    --text-light: #4a5a4a;             /* Dark Gray-Green */
    --text-muted: #6a7a6a;             /* Muted Green-Gray */
    --text-gold: #b8941f;              /* Darker Gold for text */
    --background-light: #f4f6f4;       /* Very Light Green-Tinted */
    --background-white: #ffffff;       /* Pure White */
    --background-dark: #0a140a;        /* Very Dark Green-Black */
    --border-color: #d0d8d0;           /* Light Green-Gray */
    --shadow-light: rgba(10, 20, 10, 0.15);
    --shadow-medium: rgba(10, 20, 10, 0.25);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --gradient-primary: linear-gradient(135deg, #1a2f1a 0%, #0d1a0d 100%);
    --gradient-jungle: linear-gradient(135deg, #1a2f1a 0%, #1a2f1a 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    
    /* Typography */
    --font-primary: 'Cinzel', serif;              /* Elegant, classical serif for headings */
    --font-secondary: 'Inter', sans-serif;        /* Modern, readable sans-serif for body */
    --font-accent: 'Cormorant Garamond', serif;   /* Literary serif for special elements */
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: 0.3px;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* Header Styles */
.header {
    background: #000;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 70px;
}

.logo h1,
.logo-title {
    margin-bottom: 0;
    line-height: 1;
    color: var(--accent-color);
    margin: 0;
    font-size: 1.5rem;
}

.logo .tagline {
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: -2px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--text-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: var(--gradient-jungle);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 900;
    transform: none !important;
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-header {
    margin-bottom: 3rem;
}

.hero-header h1 {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-main {
    max-width: 800px;
    margin: 0 auto;
}

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

.video-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--text-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-overlay h3 {
    margin: 0;
    font-size: 1.1rem;
}

.video-container video {
    outline: none;
}

.video-container video:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Hero Buy Button */
.hero-buy-button {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: #000 !important;
    border: 2px solid var(--accent-color);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow-gold), 0 0 20px rgba(212, 175, 55, 0.4);
    animation: heroGlow 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    background: var(--text-gold);
    border-color: var(--text-gold);
    color: #000 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-gold), 0 0 40px rgba(212, 175, 55, 0.8);
    animation: none;
}

.hero-cta-button svg {
    transition: var(--transition);
}

.hero-cta-button:hover svg {
    transform: scale(1.1);
}

@keyframes heroGlow {
    0%, 100% {
        box-shadow: 0 4px 15px var(--shadow-gold), 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px var(--shadow-gold), 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

/* Published Novels Section */
.published-novels {
    padding: var(--section-padding);
    background: var(--background-light);
}

.published-novels h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background: var(--background-white);
}

.reviews h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: var(--accent-color);
    font-size: 1.5rem;
    text-shadow: 0 1px 2px var(--shadow-light);
}

.review-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: """;
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-family: var(--font-primary);
    opacity: 0.3;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.review-source {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.published-book {
    transform: none !important;
    will-change: auto !important;
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.book-cover {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: var(--transition);
}

.book-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.book-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.book-cover:hover .cover-overlay {
    opacity: 1;
}

.buy-button, .amazon-link {
    background: #000;
    color: var(--accent-color) !important;
    border: 2px solid var(--accent-color);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow-gold), 0 0 10px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: glow 2s ease-in-out infinite;
    cursor: pointer;
}

.buy-button:hover, .amazon-link:hover {
    background: var(--accent-secondary);
    color: #fff !important;
    border-color: var(--accent-secondary);
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 6px 25px var(--shadow-gold), 0 0 50px rgba(212, 175, 55, 1), 0 0 70px rgba(212, 175, 55, 0.8);
}

.book-details h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.book-genre {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.book-synopsis {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.book-synopsis p {
    margin-bottom: 1rem;
}

.book-synopsis em {
    font-style: italic;
    color: var(--text-color);
}

.book-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.amazon-link svg {
    width: 20px;
    height: 20px;
}

/* Behind the Scenes Section */
.behind-scenes {
    padding: var(--section-padding);
    background: var(--background-white);
}

.behind-scenes h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.behind-scenes .section-subtitle {
    color: var(--text-light);
}

.behind-scenes-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.interview-card {
    max-width: 800px;
    width: 100%;
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px solid var(--border-color);
}

.interview-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-white);
    border-bottom: 2px solid var(--border-color);
}

.book-reference {
    display: flex;
    align-items: center;
}

.interview-book-cover {
    width: 80px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.interview-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.interview-subtitle {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.interview-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.interview-type {
    background: var(--primary-color);
    color: var(--background-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.interview-status {
    background: var(--accent-color);
    color: var(--background-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.interview-preview {
    padding: 2rem;
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-icon {
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
}

.coming-soon-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coming-soon-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.preview-topics {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.preview-topics h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.preview-topics ul {
    list-style: none;
    padding: 0;
}

.preview-topics li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.preview-topics li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.behind-scenes-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.behind-scenes-button {
    background: var(--primary-color);
    color: var(--background-white) !important;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.behind-scenes-button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.behind-scenes-button svg {
    transition: var(--transition);
}

.behind-scenes-button:hover svg {
    transform: translateX(3px);
}

/* Behind the Scenes Page Styles */
.behind-scenes-hero {
    background: var(--gradient-jungle);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
}

.back-navigation {
    margin-bottom: 2rem;
}

.back-button {
    color: var(--accent-color) !important;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.back-button:hover {
    color: #fff !important;
}

.back-button svg {
    transition: var(--transition);
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.behind-scenes-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.behind-scenes-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.interview-content {
    padding: var(--section-padding);
    background: var(--background-light);
}

.interview-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-book-cover {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin-bottom: 1.5rem;
}

.book-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.book-meta {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.purchase-link {
    background: var(--primary-color);
    color: var(--background-white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.purchase-link:hover {
    background: var(--accent-color);
    color: #000 !important;
    transform: translateY(-2px);
}

.coming-soon-notice {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.notice-icon {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.coming-soon-notice h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.topics-preview {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.topics-preview h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.topics-preview ul {
    list-style: none;
    padding: 0;
}

.topics-preview li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.5;
}

.topics-preview li:before {
    content: "▶";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.interview-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.interview-cta p {
    margin-bottom: 0.5rem;
}

/* Author Interview Styles */
.author-interview {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.author-interview .interview-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.author-interview .interview-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.author-interview .interview-header h3 {
    color: var(--background-white);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.author-interview .interview-subtitle {
    color: var(--text-gold);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.interview-qa {
    padding: 2rem;
    max-height: 600px;
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
}

/* Custom scrollbar for interview */
.interview-qa::-webkit-scrollbar {
    width: 8px;
}

.interview-qa::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 4px;
}

.interview-qa::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.interview-qa::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Add scroll indicator for mobile */
.interview-qa::after {
    content: "Scroll to read more ↓";
    position: sticky;
    bottom: 0;
    background: linear-gradient(transparent, var(--background-white));
    text-align: center;
    padding: 1rem 0 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    pointer-events: none;
}

.qa-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.qa-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.qa-item .question {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.qa-item .question:before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.qa-item .answer {
    padding-left: 1.5rem;
    position: relative;
}

.qa-item .answer:before {
    content: "A:";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.qa-item .answer p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.qa-item .answer p:last-child {
    margin-bottom: 0;
}

.qa-item .answer em {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
}

/* Podcast Section Styles */
.podcast-section {
    background: var(--background-light);
    padding: var(--section-padding);
    border-bottom: 1px solid var(--border-color);
}

.podcast-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.podcast-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.podcast-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.podcast-subtitle {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.podcast-player {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 12px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.audio-container {
    margin-bottom: 2rem;
    text-align: center;
}

.audio-container audio {
    width: 100%;
    max-width: 500px;
    height: 54px;
    border-radius: var(--border-radius);
    background: var(--background-light);
}

.audio-container audio::-webkit-media-controls-panel {
    background-color: var(--background-light);
}

.podcast-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.episode-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.podcast-attribution {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-align: center;
}

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

.podcast-duration,
.podcast-format {
    background: var(--primary-color);
    color: var(--background-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podcast-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.play-button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow-gold);
}

.play-button:hover {
    background: var(--text-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.play-button svg {
    transition: var(--transition);
}

.play-button:hover svg {
    transform: scale(1.1);
}

.play-button.playing {
    background: var(--primary-color);
    color: var(--accent-color);
}

.play-button.playing svg {
    display: none;
}

.play-button.playing::before {
    content: "⏸";
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Responsive styles for behind-the-scenes page */
@media (max-width: 768px) {
    .interview-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .behind-scenes-hero h1 {
        font-size: 2.5rem;
    }
    
    .behind-scenes-hero h2 {
        font-size: 1.5rem;
    }
    
    .podcast-header h2 {
        font-size: 1.8rem;
    }
    
    .podcast-player {
        padding: 1.5rem;
    }
    
    .podcast-meta {
        justify-content: center;
        gap: 0.5rem;
    }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.author-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px var(--shadow-medium);
    border: 5px solid var(--background-white);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px var(--shadow-light);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Upcoming Works Section */
.upcoming-works {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0;
}

.upcoming-works h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    font-weight: 500;
}

.works-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.work-card {
    max-width: 800px;
    width: 100%;
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.work-image {
    position: relative;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
}

.work-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-jungle);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
}

.coming-soon-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px var(--shadow-gold);
}

.work-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-secondary);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--accent-color);
}

.work-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-content h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.work-genre {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

.status-badge {
    background: var(--background-light);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.early-release {
    background: var(--accent-color);
    color: var(--primary-color);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-policies {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 12px var(--shadow-medium);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cookie-accept:hover {
    background: #e6b800;
    transform: translateY(-1px);
}

/* Legal Pages Styling */
.legal-content {
    padding: 100px 0 80px 0;
    background: var(--background-white);
    min-height: 80vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1rem;
}

.legal-text h2 {
    color: var(--primary-color);
    margin: 2.5rem 0 1rem 0;
    font-family: var(--font-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: var(--accent-color);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-text h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-text p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--primary-color);
}

.legal-notice {
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.legal-notice p {
    margin: 0;
    font-weight: 500;
}

/* Cookie Table Styling */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-white);
    box-shadow: 0 2px 8px var(--shadow-light);
    border-radius: 4px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    color: var(--text-color);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Browser Instructions */
.browser-instructions {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.browser-instructions h4:first-child {
    margin-top: 0;
}

.browser-instructions p {
    margin: 0 0 1rem 0;
    font-family: monospace;
    background: var(--background-white);
    padding: 0.5rem;
    border-radius: 3px;
    border-left: 3px solid var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-header h1 {
        font-size: 3.5rem;
    }

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

    .hero-main {
        max-width: 90%;
    }
    
    .published-book {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .interview-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .behind-scenes-grid {
        padding: 0 1rem;
    }
    
    .interview-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .published-novels h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        box-shadow: 0 4px 12px var(--shadow-light);
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .hero-header h1 {
        font-size: 2.8rem;
    }

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

    .hero-main {
        max-width: 95%;
    }
    
    .author-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .work-card {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .work-image {
        padding: 1rem;
    }
    
    .work-content {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-buttons {
        align-self: stretch;
        justify-content: center;
    }
    
    .legal-content {
        padding: 80px 0 60px 0;
    }
    
    .legal-text {
        padding: 0 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .interview-header {
        padding: 1.5rem;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        align-items: center;
    }
    
    .book-reference {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .interview-preview {
        padding: 1.5rem;
    }
    
    .preview-topics {
        padding: 1rem;
    }
    
    .book-synopsis {
        font-family: var(--font-secondary) !important;
        color: var(--text-color) !important;
        font-size: 0.95rem !important;
    }
    
    .published-book {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .interview-book-cover {
        width: 80px;
        max-width: 80px;
        height: auto;
    }
    
    .published-novels h2 {
        text-align: center;
    }
    
    /* Small Mobile Interview Styles */
    .author-interview .interview-header {
        padding: 1rem;
    }
    
    .author-interview .interview-header h3 {
        font-size: 1.3rem;
    }
    
    .interview-qa {
        padding: 1rem;
        max-height: 400px;
    }
    
    .qa-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .qa-item .question {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    .qa-item .answer {
        padding-left: 1rem;
    }
    
    .qa-item .answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .book-actions {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .buy-button, .amazon-link {
        padding: 14px 35px;
        font-size: 1.2rem;
        animation: glow 2.5s ease-in-out infinite;
    }
    
    .behind-scenes-grid {
        padding: 0 1rem;
    }
    
    .interview-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .behind-scenes-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .behind-scenes h2 {
        text-align: center;
    }
    
    .podcast-header h2 {
        font-size: 1.6rem;
    }
    
    .podcast-player {
        padding: 1rem;
    }
    
    .audio-container audio {
        height: 48px;
    }
    
    .podcast-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Mobile Interview Styles */
    .author-interview .interview-header {
        padding: 1.5rem;
    }
    
    .author-interview .interview-header h3 {
        font-size: 1.5rem;
    }
    
    .interview-qa {
        padding: 1.5rem;
        max-height: 500px;
    }
    
    .qa-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .qa-item .question {
        font-size: 1.2rem;
        padding-left: 1.2rem;
    }
    
    .qa-item .answer {
        padding-left: 1.2rem;
    }
    
    .qa-item .answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-header h1 {
        font-size: 2.2rem;
    }

    .video-title {
        font-size: 1.3rem;
    }
    
    .author-photo {
        width: 250px;
        height: 250px;
    }
    
    .interview-header {
        padding: 1rem;
    }
    
    .interview-preview {
        padding: 1rem;
    }
    
    .interview-book-cover {
        width: 50px;
        max-width: 50px;
    }
    
    .work-card {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .work-image {
        padding: 1rem;
    }
    
    .work-image img {
        max-height: 250px;
    }
    
    .book-synopsis {
        font-family: var(--font-secondary) !important;
        color: var(--text-color) !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .published-book {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .book-cover {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .published-novels h2 {
        text-align: center;
    }
    
    .book-actions {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .buy-button, .amazon-link {
        padding: 12px 30px;
        font-size: 1.1rem;
        animation: glow 3s ease-in-out infinite;
    }
    
    .behind-scenes-grid {
        padding: 0 0.5rem;
    }
    
    .interview-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .interview-header {
        padding: 1.5rem;
        grid-template-columns: auto 1fr;
        text-align: left;
        gap: 1.5rem;
        align-items: center;
    }
    
    .book-reference {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .interview-preview {
        padding: 1rem;
    }
    
    .behind-scenes-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .interview-book-cover {
        width: 80px;
        max-width: 80px;
        height: auto;
    }
    
    .behind-scenes h2 {
        text-align: center;
    }
}

/* Button Animations */
@keyframes glow {
    0% {
        box-shadow: 0 2px 8px var(--shadow-gold), 0 0 10px rgba(212, 175, 55, 0.3);
        border-color: var(--accent-color);
    }
    50% {
        box-shadow: 0 4px 20px var(--shadow-gold), 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
        border-color: #f4d03f;
    }
    100% {
        box-shadow: 0 2px 8px var(--shadow-gold), 0 0 10px rgba(212, 175, 55, 0.3);
        border-color: var(--accent-color);
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work-card,
.about-text,
.amazon-link {
    animation: fadeInUp 0.6s ease-out;
}

.amazon-link {
    animation: fadeInUp 0.6s ease-out, glow 2s ease-in-out infinite 0.6s;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .video-container {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        color: black;
    }
} 