/* Modern CSS for Praktické aplikace fyziky a chemie */

/* CSS Variables for consistent theming */
:root {
    /* Gymnázium Globe inspired colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Header */
.header {
    background: var(--background);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

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

.nav-brand h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.nav-brand .subtitle {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    font-weight: var(--font-weight-normal);
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}.nav-link:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}/* Sections */
.section {
    padding: var(--spacing-2xl) 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.about-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}/* Lectures Grid */
.lectures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.lecture-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.lecture-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.lecture-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.lecture-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.lecture-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.lecture-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.lecture-meta i {
    margin-right: var(--spacing-xs);
    color: var(--secondary-color);
}/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.project-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    color: inherit;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.project-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.project-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.project-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.project-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}.project-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
}

.stat-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.stat-item i {
    margin-right: var(--spacing-xs);
    color: var(--secondary-color);
}

.project-tech {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.tech-tag {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--border-color);
}

/* Exercises Grid */
.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.exercise-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.2s ease;
}

.exercise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.exercise-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.contact-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

/* Deep Research Styles */
.research-methodology {
    margin-bottom: var(--spacing-xl);
}

.research-steps {
    margin-top: var(--spacing-lg);
}

.research-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.step-example {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    margin-top: var(--spacing-sm);
}

.research-technique {
    margin-top: var(--spacing-md);
}

.technique-examples {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.perspective-example,
.drill-down-example,
.contrast-example {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.drill-level {
    margin-left: var(--spacing-lg);
    margin-top: var(--spacing-sm);
    padding-left: var(--spacing-md);
    border-left: 2px solid var(--border-color);
}

.research-template {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-md);
}

.template-structure {
    margin-top: var(--spacing-md);
}

.template-part {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.research-example {
    margin-top: var(--spacing-lg);
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.research-conversation {
    margin-top: var(--spacing-md);
}

.research-prompt {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* AI Setup Styles */
.ai-setup-guide {
    margin-bottom: var(--spacing-xl);
}

.info-categories {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.info-category {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.info-category h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-category h4 i {
    color: var(--primary-color);
}

.info-examples {
    display: grid;
    gap: var(--spacing-sm);
}

.info-good,
.info-bad {
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.info-good {
    background: #d1fae5;
    border-left: 4px solid var(--secondary-color);
    color: #065f46;
}

.info-bad {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.communication-setup {
    margin-top: var(--spacing-xl);
}

.communication-aspect {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.communication-aspect h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.communication-examples {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.comm-example {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.structure-preferences {
    margin-top: var(--spacing-md);
}

.structure-option {
    background: var(--background);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid var(--secondary-color);
}

.limitations {
    background: #fef3c7;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--accent-color);
    margin-top: var(--spacing-lg);
}

.limitation-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.limitation-item i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.setup-template {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-lg);
}

.template-section-setup {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.setup-prompt {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: var(--spacing-md);
}

.setup-examples {
    margin-top: var(--spacing-lg);
}

.setup-example {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.example-setup {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-sm);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.ai-tuning {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-lg);
}

.tuning-tips {
    margin-top: var(--spacing-md);
}

.tuning-tip {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
}

.tuning-tip i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

/* NotebookLM Styles */
.notebooklm-intro {
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-color);
}

.intro-content h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.intro-content h3 i {
    color: var(--primary-color);
}

.key-features {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.notebooklm-features {
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

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

.feature-icon {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.feature-example {
    background: var(--background-light);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    border-left: 3px solid var(--secondary-color);
}

.examples-accordion {
    margin-top: var(--spacing-lg);
}

.example-item {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.example-header {
    background: var(--background-light);
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    transition: background 0.2s ease;
}

.example-header:hover {
    background: #e8f4fd;
}

.example-content {
    padding: var(--spacing-lg);
    display: none;
}

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

.scenario-steps {
    margin-top: var(--spacing-md);
}

.step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.step-num {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.step-desc {
    flex: 1;
    color: var(--text-light);
    line-height: 1.5;
}

.theory-comparison {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.comparison-sources ul {
    list-style: none;
    padding: 0;
}

.comparison-sources li {
    padding: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--secondary-color);
}

.question-example {
    background: var(--background-light);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
    border-left: 3px solid var(--primary-color);
}

.prep-workflow {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.workflow-step i {
    color: var(--accent-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.start-steps {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.start-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.start-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.start-content {
    flex: 1;
}

.start-content h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.benefit-item h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tip-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.tip-card i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.tip-card h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* AI Providers Styles */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.provider-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

.provider-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.provider-logo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.provider-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.provider-company {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
}

.provider-models {
    margin-bottom: var(--spacing-md);
}

.provider-models h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.model-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.model-tag {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--border-color);
}

.provider-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.provider-strengths,
.provider-weaknesses {
    margin-bottom: var(--spacing-md);
}

.provider-strengths h4,
.provider-weaknesses h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.provider-strengths ul,
.provider-weaknesses ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.provider-strengths li,
.provider-weaknesses li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

.provider-btn {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    display: inline-block;
    transition: background 0.2s ease;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
}

.provider-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

.update-notice {
    background: #fef3c7;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #92400e;
    font-size: 0.875rem;
}

.notice-content i {
    color: var(--accent-color);
    font-size: 1rem;
}

.ai-recommendation {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.ai-recommendation h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.recommendation-content {
    display: grid;
    gap: var(--spacing-lg);
}

.recommendation-main h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.recommendation-main p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.recommendation-benefits {
    display: grid;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.practical-strategy h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.strategy-steps {
    display: grid;
    gap: var(--spacing-sm);
}

.strategy-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
}

.verification-tips h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.verification-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verification-tips li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}.footer-left h4 {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xs);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background);
        box-shadow: var(--shadow);
        flex-direction: column;
        padding: 1rem;
        z-index: 1001;
        border-top: 1px solid var(--border-color);
        transform: translateY(-100vh);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        color: var(--primary-color);
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
}/* Additional styles for detailed pages */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Detailed Lectures Grid */
.lectures-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.lecture-detailed-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s ease;
}

.lecture-detailed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.lecture-header {
    background: var(--background-light);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.lecture-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}.lecture-header .lecture-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.lecture-content {
    padding: var(--spacing-lg);
}

.lecture-content h2 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.lecture-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.lecture-topics {
    margin-bottom: var(--spacing-lg);
}

.lecture-topics h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

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

.lecture-topics li {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

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

.lecture-materials {
    margin-bottom: var(--spacing-lg);
}

.lecture-materials h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}.material-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.material-link {
    background: var(--background-light);
    color: var(--text-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.material-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.lecture-meta {
    display: flex;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--secondary-color);
}

/* Mobile responsiveness for detailed pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .lecture-header {
        flex-direction: column;
        text-align: center;
    }
    
    .lecture-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .material-links {
        justify-content: center;
    }
    
    .lecture-meta {
        justify-content: center;
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}/* Projects page specific styles */

/* Projects Summary */
.projects-summary {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.projects-summary h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.summary-stat {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.summary-stat .stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 60px;
}

.summary-stat .stat-content {
    flex: 1;
}

.summary-stat .stat-number {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.summary-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Detailed Projects Grid */
.projects-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

.project-detailed-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-detailed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.project-header-detailed {
    background: var(--background-light);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}.project-number {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    min-width: 80px;
}

.project-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    min-width: 60px;
}

.project-title-section {
    flex: 1;
}

.project-title-section h2 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.project-subtitle {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.project-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.project-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
}

.project-content-detailed {
    padding: var(--spacing-lg);
}

.project-description {
    margin-bottom: var(--spacing-lg);
}

.project-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Highlights Grid */
.project-highlights {
    margin-bottom: var(--spacing-lg);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}.highlight-item {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    border-color: var(--primary-color);
    background: var(--background);
}

.highlight-item.winner {
    border-color: var(--accent-color);
    background: rgba(245, 158, 11, 0.05);
}

.highlight-item.exceptional {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.05);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.highlight-item.winner .highlight-icon {
    color: var(--accent-color);
}

.highlight-item.exceptional .highlight-icon {
    color: var(--secondary-color);
}

.highlight-value {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

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

/* Deliverables */
.project-deliverables h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.deliverable-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}.deliverable-link {
    background: var(--background-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.deliverable-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.deliverable-link i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.deliverable-link span {
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.25rem;
}

.deliverable-link small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Technology Comparison */
.technology-comparison {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.technology-comparison h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
}.comparison-item.winner {
    border-color: var(--accent-color);
    background: rgba(245, 158, 11, 0.05);
}

.tech-name {
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    flex: 1;
}

.tech-cost {
    color: var(--text-color);
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-md);
}

.tech-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
}

/* Current vs Optimized */
.current-vs-optimized {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.current-vs-optimized h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.state-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.state-current, .state-optimized {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}.state-current h5, .state-optimized h5 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.state-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.state-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.state-stat .label {
    color: var(--text-light);
}

.state-stat .value {
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
}

.grade-g {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: var(--font-weight-bold);
}

.grade-a {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: var(--font-weight-bold);
}

.state-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Mobile responsiveness for projects */
@media (max-width: 768px) {
    .project-header-detailed {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .project-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .deliverable-links {
        justify-content: center;
    }
    
    .state-comparison {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .state-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }
}/* Exercise/Materials page styles */

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.tool-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tool-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(37, 99, 235, 0.02);
}

.tool-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.tool-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.tool-stats {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin: var(--spacing-md) 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.tool-stats span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.tool-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    display: inline-block;
    margin-top: var(--spacing-md);
}

.tool-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}/* Materials Detailed */
.materials-detailed {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.material-category h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.material-category h3 i {
    color: var(--primary-color);
}

.material-items {
    display: grid;
    gap: var(--spacing-lg);
}

.material-item {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.material-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.material-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.material-header h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.125rem;
}

.material-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.material-item p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.material-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.link-primary, .link-secondary {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

.link-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.link-secondary {
    background: var(--background-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.link-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}/* Excel Templates */
.excel-templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.template-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s ease;
}

.template-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.template-header {
    background: var(--background-light);
    padding: var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.template-icon {
    font-size: 3rem;
    color: #217346;
    margin-bottom: var(--spacing-sm);
}

.template-header h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.template-difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.template-difficulty.easy {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
}

.template-difficulty.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.template-difficulty.advanced {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.template-content {
    padding: var(--spacing-lg);
}

.template-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.template-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    padding: 0;
}

.template-features li {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.template-features i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.template-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-download, .btn-preview {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

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

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

.btn-preview {
    background: var(--background-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-preview:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}/* AI Tools Section */
.ai-tools-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-intro {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.ai-intro h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.ai-intro p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.ai-tool {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.ai-tool:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.ai-tool-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.ai-tool-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-tool-header h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.25rem;
}

.ai-tool-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.ai-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.use-case {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--border-color);
}

.ai-guide-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: color 0.2s ease;
}

.ai-guide-link:hover {
    color: var(--primary-dark);
}/* AI Best Practices */
.ai-best-practices {
    background: var(--background);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.ai-best-practices h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
    text-align: center;
}

.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.practice-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.practice-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.practice-content h5 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.practice-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Mobile responsiveness for exercises page */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .material-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .material-links, .template-actions {
        flex-direction: column;
    }
    
    .ai-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .best-practices-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-stats {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}/* Lecture page specific styles */

/* Lecture Hero */
.lecture-hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.lecture-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    min-width: 120px;
}

.lecture-info h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.lecture-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.lecture-meta-hero {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.lecture-meta-hero span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Quick Navigation */
.quick-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.quick-nav-item {
    background: var(--background);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 120px;
}

.quick-nav-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.quick-nav-item i {
    font-size: 1.5rem;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.objective-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.2s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.objective-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.objective-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.5;
}/* Presentations Grid */
.presentations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.presentation-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.presentation-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    color: inherit;
}

.presentation-card.featured {
    border: 2px solid var(--accent-color);
}

.presentation-preview {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xl);
    text-align: center;
    font-size: 4rem;
}

.presentation-card.featured .presentation-preview {
    background: var(--accent-color);
}

.presentation-info {
    padding: var(--spacing-lg);
}

.presentation-info h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.presentation-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.presentation-meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

.presentation-meta i {
    margin-right: var(--spacing-xs);
    color: var(--primary-color);
}

/* Theory Content */
.theory-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.theory-block {
    background: var(--background);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.theory-block h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.theory-block h3 i {
    color: var(--primary-color);
}

.definitions {
    display: grid;
    gap: var(--spacing-lg);
}

.definition-item h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.definition-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Equations */
.equations {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.equation-block h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.equation {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    border-left: 4px solid var(--primary-color);
}

.equation-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Conservation Laws */
.conservation-laws {
    display: grid;
    gap: var(--spacing-md);
}

.law-item h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.law-equation {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
}/* Examples Section */
.examples-categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.example-category h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.example-category h3 i {
    color: var(--primary-color);
}

.example-list {
    display: grid;
    gap: var(--spacing-md);
}

.example-item {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.example-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.example-item h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.example-item p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.difficulty {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.difficulty.easy {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
}

.difficulty.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.difficulty.advanced {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.material-card {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.2s ease;
}

.material-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}


.material-card.featured {
    border: 2px solid var(--accent-color);
}

.material-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.material-icon .fa-file-powerpoint { color: #d04423; }
.material-icon .fa-file-excel { color: #217346; }
.material-icon .fa-file-word { color: #2b579a; }
.material-icon .fa-book { color: var(--primary-color); }

.material-card h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.material-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.material-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.material-download {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    display: inline-block;
}

.material-download:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}/* Special Topics */
.special-topics {
    background: var(--background);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-top: var(--spacing-xl);
}

.special-topics h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.topic-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.topic-card h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.topic-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.topic-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.topic-links a {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.topic-links a:hover {
    background: var(--primary-dark);
    color: white;
}

.calculate-link {
    background: var(--accent-color) !important;
}

.calculate-link:hover {
    background: #d97706 !important;
}

/* Lecture Navigation */
.lecture-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.nav-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.nav-btn.primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateX(5px);
}

.nav-btn.secondary {
    background: var(--background-light);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.nav-btn.secondary:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
    transform: translateX(-5px);
}

/* Mobile responsiveness for lecture pages */
@media (max-width: 768px) {
    .lecture-hero-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .lecture-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .lecture-info h1 {
        font-size: 2rem;
    }
    
    .quick-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .quick-nav-item {
        min-width: auto;
        padding: var(--spacing-sm);
    }
    
    .objectives-grid, .presentations-grid, .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-categories {
        gap: var(--spacing-xl);
    }
    
    .lecture-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
}

/* Development notice styles */
.development-notice {
    text-align: center;
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--secondary-color-light) 0%, var(--accent-color-light) 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
}

.development-notice h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.development-notice p {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming-content {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.content-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.content-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.content-item span {
    color: var(--text-color);
    font-weight: 500;
}

.notice-update {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    font-style: italic;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .development-notice {
        padding: var(--spacing-xl);
    }

    .notice-icon {
        font-size: 3rem;
    }

    .development-notice h2 {
        font-size: 2rem;
    }

    .upcoming-content {
        gap: var(--spacing-sm);
    }

    .content-item {
        padding: var(--spacing-sm);
    }
}