@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ===============================================
   COPIED FROM STYLES.CSS - Variables
   =============================================== */

:root {
    --primary-teal: #14b8a6;
    --primary-teal-dark: #0f766e;
    --primary-blue: #3b82f6;
    --primary-blue-dark: #1e40af;
    --secondary-teal: #5eead4;
    --secondary-blue: #93c5fd;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-yellow: #f59e0b;
    --accent-green: #10b981;
    --accent-cyan: #06b6d4;
    --accent-indigo: #6366f1;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-teal) 0%, var(--secondary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 50%, var(--accent-purple) 100%);
    --max-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===============================================
   COPIED FROM STYLES.CSS - Reset & Base
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: #fafbfc;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===============================================
   COPIED FROM STYLES.CSS - Navigation
   =============================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: transform 0.3s ease, var(--transition-base);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.nav-logo .logo-icon {
    width: 100px;
    height:100px;
    object-fit: contain;
}

/* Show both text and logo on desktop */
@media (min-width: 769px) {
    .nav-logo .logo-text {
        display: inline;
    }
    .nav-logo .logo-icon {
        display: inline;
    }
}

/* Show only logo on mobile */
@media (max-width: 768px) {
    .nav-logo .logo-text {
        display: none;
    }
    .nav-logo .logo-icon {
        display: inline;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

.nav-student-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all var(--transition-base);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    background: linear-gradient(90deg, #6b48ff, #a832c2);
    box-shadow: var(--shadow-sm);
    width: auto;
}

.nav-student-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(90deg, #5a3cd9, #9b2ba0);
}

/* ===============================================
   COPIED FROM STYLES.CSS - Social Networks
   =============================================== */

.social-networks-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.social-networks-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-networks-container.active .social-networks-buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.social-network-button {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.social-network-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-network-button:hover::before {
    opacity: 1;
}

.social-network-button:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.social-network-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: transform 0.3s ease;
}

.social-network-button:hover img {
    transform: scale(1.1);
}

.social-networks-trigger {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(102, 126, 234, 0.8);
    }
}

.social-networks-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.7);
}

.social-networks-trigger img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-networks-container.active .social-networks-trigger img {
    transform: rotate(45deg);
}

.social-networks-container.active .social-network-button:nth-child(1) {
    animation: slideIn 0.3s ease 0.1s both;
}

.social-networks-container.active .social-network-button:nth-child(2) {
    animation: slideIn 0.3s ease 0.15s both;
}

.social-networks-container.active .social-network-button:nth-child(3) {
    animation: slideIn 0.3s ease 0.2s both;
}

.social-networks-container.active .social-network-button:nth-child(4) {
    animation: slideIn 0.3s ease 0.25s both;
}

.social-networks-container.active .social-network-button:nth-child(5) {
    animation: slideIn 0.3s ease 0.3s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===============================================
   ARTICLE-SPECIFIC STYLES - ENHANCED READABILITY
   =============================================== */

main {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}

.content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

/* Add a subtle accent line on the side */
.content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.image-banner {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    overflow: hidden;
    position: relative;
    height: 420px;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stronger gradient — dark at bottom, transparent at top */
.image-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 75%,
        rgba(230, 228, 228, 0.543) 100%
    );
    pointer-events: none;
}

/* Move overlay to bottom */
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 3rem 2rem;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

/* Title & subtitle at bottom — bigger title, cleaner look */
.banner-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.75rem 0;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
    letter-spacing: -0.02em;
}

.banner-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Enhanced Typography */
.content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    margin-top: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

.content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

/* Better paragraph spacing and readability */
.content p {
    font-size: 1.5rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.content a {
    color: var(--primary-teal);
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-teal);
    transition: var(--transition-base);
    font-weight: 500;
}

.content a:hover {
    color: var(--primary-teal-dark);
    border-bottom-color: var(--primary-teal);
}

/* ===============================================
   PROFILE CARD - ENHANCED
   =============================================== */

.profile-card {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    margin: 3rem 0;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-teal);
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.profile-picture {
    flex-shrink: 0;
}

.profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.profile-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.profile-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ===============================================
   TEXT HIGHLIGHTING FEATURE
   =============================================== */

.text-highlight {
    background-color: #ffeb3b;
    padding: 2px 0;
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(255, 235, 59, 0.3);
}

.character-card p {
    user-select: none;
}

/* ===============================================
   PROS AND CONS BOXES - ENHANCED
   =============================================== */

pros, cons {
    display: block;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    transition: var(--transition-base);
}

pros {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #059669;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
}

pros:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

pros::before {
    content: '✓';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    background: #10b981;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

cons {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #dc2626;
    border-left: 4px solid #ef4444;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.1);
}

cons:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}

cons::before {
    content: '✗';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    background: #ef4444;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

f {
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================================
   CLASS VIDEO BOX - MOVED HERE (NOT IN MEDIA QUERY!)
   =============================================== */

.class-video-box {
    margin: 3rem 0;
    border: 2px solid #dc2626;
    border-radius: 16px;
    background: linear-gradient(135deg, #fee2e2, #fff5f5);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
    overflow: hidden;
}

.video-toggle {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-family: 'Quicksand', sans-serif;
}

.video-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.video-content {
    display: none;
    padding: 1.8rem;
    background: white;
}

.video-content.active {
    display: block;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: hsl(0, 80%, 47%);
    text-align: center;
    font-weight: 600;
}

.video-toggle-icon {
    font-size: 0.9rem;
    transition: var(--transition-base);
}

/* ===============================================
   OTHER SECTIONS
   =============================================== */

.subtitle {
    font-size: 1.3rem !important;
    color: var(--primary-teal) !important;
    text-align: center;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    font-style: italic;
}

.intro-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-left: 4px solid var(--primary-teal);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0 3rem 0;
    box-shadow: var(--shadow-sm);
}

.intro-box p {
    margin: 0 !important;
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}

/* Character Sections */
.character-section {
    margin: 4rem 0;
    scroll-margin-top: 100px;
}

.character-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.character-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    background: var(--gradient-primary);
    position: relative;
}

.character-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.character-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-base);
}

.character-card:hover .character-photo img {
    transform: scale(1.05);
}

.character-icon {
    display: none;
}

.character-header h2 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 1.8rem !important;
}

.character-header h2::before {
    display: none;
}

.character-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.character-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

.character-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

/* Practice Section */
.practice-section {
    margin: 2rem 0 4rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.practice-section h2 {
    margin-top: 0 !important;
    color: var(--accent-purple);
}

.question-box {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.question-box h3 {
    color: var(--accent-purple);
    margin-top: 0 !important;
    font-size: 1.2rem;
}

.question-box ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.question-box li {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vocabulary Section */
.vocab-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.vocab-section h2 {
    margin-top: 0 !important;
    color: var(--accent-yellow);
}

.vocab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vocab-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-yellow);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vocab-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vocab-word {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.vocab-def {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Character Questions - Expandable */
.character-questions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
}

.question-toggle {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-family: 'Quicksand', sans-serif;
}

.question-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.question-toggle.active {
    background: linear-gradient(135deg, var(--primary-teal-dark) 0%, var(--primary-blue-dark) 100%);
}

.toggle-icon {
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.questions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.questions-content ol {
    margin: 0;
    padding: 1.5rem 2rem 1.5rem 3rem;
}

.questions-content li {
    margin: 1rem 0;
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .social-networks-container {
        bottom: 20px;
        right: 20px;
    }
    
    .social-network-button {
        width: 45px;
        height: 45px;
    }
    
    .social-network-button img {
        width: 24px;
        height: 24px;
    }
    
    .social-networks-trigger {
        width: 35px;
        height: 35px;
    }
    
    .social-networks-trigger img {
        width: 16px;
        height: 16px;
    }
    
    .content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .image-banner {
        height: 320px;
        margin-top: -1.5rem;
        margin-left: -1.5rem;
        width: calc(100% + 3rem);
    }
    
    .banner-overlay {
        padding: 2rem 1.8rem 1.8rem;
    }
    
    .banner-title {
        font-size: 2.6rem;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
    
    .content h1 {
        font-size: 2rem;
        margin-top: 1.5rem;
    }
    
    .content h2 {
        font-size: 1.6rem;
        margin-top: 3rem;
    }
    
    .content h3 {
        font-size: 1.3rem;
    }
    
    .content p {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.85;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .profile-picture {
        display: flex;
        justify-content: center;
    }
    
    .profile-info h2 {
        font-size: 1.4rem;
    }
    
    .profile-info h4 {
        font-size: 1rem;
    }
    
    pros, cons {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .character-photo {
        width: 80px;
        height: 80px;
    }
    
    .character-header {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }
    
    .character-header h2 {
        font-size: 1.4rem !important;
    }
    
    .question-toggle {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .questions-content ol {
        padding: 1.25rem 1.5rem 1.25rem 2.5rem;
    }
    
    .questions-content li {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .image-banner {
        height: 280px;
    }
    
    .banner-title {
        font-size: 2.1rem;
    }
    
    .banner-subtitle {
        font-size: 1.15rem;
    }
    
    .banner-overlay {
        padding: 1.8rem 1.5rem 1.5rem;
    }
    
    .character-photo {
        width: 70px;
        height: 70px;
    }
}