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

body {
    font-family: 'Lato regular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f0fdfc, #f5f9fe);
    color: #323231;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body > .container {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    color: #323231;
    padding: 0 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 160px;
    height: 160px;
    margin-right: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
}

.nav-item {
    color: #003399;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    background: #f0f2f9;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.faq-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #003399;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Large Video Player for FAQ */
.video-card {
    display: flex;
    flex-direction: column;
}

.large-video-player {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    margin-top: 15px;
}

.large-video-player:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.large-play-button {
    color: white;
    font-size: 48px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.large-play-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.large-video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #003399;
}

.faq-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Dashboard Section */
.dashboard-section {
    margin-bottom: 80px;
}

.dashboard-section h2.section-title {
    display: inline-block;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dashboard-card .help-icon {
    position: absolute;
    top: 15px;
    right: 15px;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.netzwerkkarte::before {
    background: #84B5E2;
}

.dashboard-panel::before {
    background: #84B5E2;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Section titles above dashboard cards */
.section-titles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

/* Section titles for reports-network section */
.reports-section .section-titles {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

/* Reports and Network Grid */
.reports-network-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    align-items: start;
}

.reports-network-grid .network-section {
    grid-column: 1 / 3;
    width: 66.67%;
    margin-left: 33.33%;
    position: relative;
}

/* Network Info Bubble */
.network-info-bubble {
    position: absolute;
    left: -280px;
    top: 80px;
    width: 250px;
    background: white;
    border: 2px solid #003399;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.network-info-bubble .info-content h4 {
    color: #003399;
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.network-info-bubble .info-content p {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.speech-bubble-arrow {
    position: absolute;
    right: -12px;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid #003399;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.speech-bubble-arrow::after {
    content: '';
    position: absolute;
    right: 2px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.reports-network-grid .reports-section-content {
    grid-column: 1 / 3;
    width: 66.67%;
}

.reports-network-grid .netzwerkkarte {
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.reports-network-grid .netzwerkkarte .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.reports-network-grid .network-viewer {
    flex: 1;
    width: 100%;
    height: 400px !important;
    min-height: 400px;
    position: relative;
}

.reports-network-grid .network-viewer .openseadragon-container {
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
}

.reports-network-grid .network-viewer .openseadragon-canvas {
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
}

.reports-network-grid .network-viewer canvas {
    width: 100%;
    height: 100%;
}

/* Make reports slideshow and network card same height */
.reports-network-grid .reports-slideshow,
.reports-network-grid .netzwerkkarte {
    display: flex;
    flex-direction: column;
}

.reports-network-grid .netzwerkkarte {
    min-height: 520px;
}

.reports-network-grid .reports-container {
    flex-grow: 1;
}

.reports-network-grid .netzwerkkarte .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.section-title {
    font-size: 2rem;
    color: #003399;
    margin: 0;
    text-align: center;
    font-weight: 300;
}

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

.card-header h2 {
    font-size: 1.8rem;
    color: #003399;
    font-weight: 300;
}

.card-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icon {
    font-size: 2rem;
    opacity: 0.7;
}

.help-icon {
    width: 24px;
    height: 24px;
    background: #003399;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-icon:hover {
    background: #323231;
    transform: scale(1.1);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.network-preview {
    margin: 20px 0;
    padding: 20px;
    background: #F5F6F0;
    border-radius: 10px;
    text-align: center;
}

.network-nodes {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.node {
    width: 20px;
    height: 20px;
    background: #003399;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: pulse 2s infinite;
}

.node::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: #ddd;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.dashboard-preview {
    margin: 20px 0;
    padding: 20px;
    background: #F5F6F0;
    border-radius: 10px;
}

.chart-placeholder {
    height: 80px;
    background: #003399;
    border-radius: 8px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stats-grid {
    display: flex;
    gap: 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #003399;
}

/* Network Viewer */
.network-viewer {
    flex-grow: 1;
    min-height: 400px;
    height: 100%;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #F5F6F0;
}

.netzwerkkarte .card-content {
    height: calc(100% - 80px); /* Account for header height */
}

/* Make the entire Netzwerkkarte card taller */
.netzwerkkarte {
    min-height: 600px;
}

/* Hot Topics Chart */
.hot-topics {
    margin-bottom: 30px;
    padding: 20px;
    background: #F5F6F0;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

/* Override card-content styling for topics section */
.card-content .hot-topics {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}

.card-content .topics-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0 !important;
    margin-top: 12px !important;
}

.card-content .hot-topics p {
    font-size: 0.7rem !important;
    margin-bottom: 0 !important;
    margin-top: 12px !important;
}

.topics-subtitle {
    color: #bbb;
    font-size: 0.55rem;
    margin: 8px 0 0 0;
    line-height: 1.1;
    font-style: italic;
}

.topics-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px;
    gap: 12px;
    align-items: center;
    height: 20px;
}

.topic-name {
    font-size: 0.8rem;
    color: #323231;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-change {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}

.topic-change.increase {
    color: #019F91;
    background: rgba(39, 174, 96, 0.1);
}

.topic-change.decrease {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.topic-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 20px;
    justify-content: center;
}

.baseline-bar,
.current-bar {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.bar-fill.baseline {
    background: #bdc3c7;
}

.bar-fill.current.high {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.bar-fill.current.medium {
    background: linear-gradient(90deg, #C5D809, #C5D809);
}

.bar-fill.current.low {
    background: linear-gradient(90deg, #95a5a6, #7f8c8d);
}

/* Dashboard Metrics Table */
.metrics-title {
    color: #003399;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.metrics-title:not(:first-child) {
    margin-top: 40px;
}

/* Dashboard Bottom Grid */
.dashboard-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.dashboard-bottom-grid .metrics-title {
    margin-top: 0;
}

.dashboard-bottom-grid > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-bottom-grid .video-slideshow,
.dashboard-bottom-grid .discourse-analysis {
    min-height: 240px;
}

.metrics-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.2fr 1.5fr;
    background: #F5F6F0;
    border-radius: 8px 8px 0 0;
    padding: 8px 16px;
    font-weight: 600;
    color: #003399;
    font-size: 0.85rem;
    align-items: center;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.2fr 1.5fr;
    background: white;
    border: 1px solid #e8e8e8;
    padding: 8px 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    align-items: center;
}

.table-row:hover {
    background: #f0f2f9;
    transform: translateX(2px);
}

.table-row {
    cursor: pointer;
}

.table-row:last-child {
    border-radius: 0 0 8px 8px;
}

.table-header .table-cell {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #003399;
    text-align: left;
    padding: 0;
    margin: 0;
    width: 100%;
}

.table-header .table-cell:not(:first-child) {
    text-align: right;
}

.table-cell {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

.table-row .table-cell:not(:first-child) {
    justify-content: flex-end;
}

.actor-name {
    font-weight: 500;
    color: #323231;
}

.metric-value {
    font-weight: 600;
    color: #003399;
    justify-content: flex-end;
}

/* Color-code engagement values based on performance categories */
.high-engagement .metric-value:last-child {
    color: #019F91;
    font-weight: 700;
}

.medium-engagement .metric-value:last-child {
    color: #C5D809;
    font-weight: 700;
}

.stable-engagement .metric-value:last-child {
    color: #3498db;
    font-weight: 700;
}

.negative-engagement .metric-value:last-child {
    color: #e74c3c;
    font-weight: 700;
}

/* Video Slideshow */
.video-slideshow {
    margin-top: 30px;
    padding-top: 0px;
}

/* Remove padding from video slideshow in dashboard grid */
.dashboard-bottom-grid .video-slideshow {
    margin-top: 0;
    padding-top: 0;
}

.slideshow-title {
    color: #003399;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-slide {
    display: none;
    background: #F5F6F0;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e8e8e8;
    min-height: 150px;
}

.video-slide.active {
    display: flex;
    gap: 12px;
    align-items: center;
}

.video-thumbnail {
    position: relative;
    width: 120px;
    height: 68px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-button {
    color: white;
    font-size: 24px;
    opacity: 0.9;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.video-duration {
    position: absolute;
    bottom: 4px;
    right: 6px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
}

.video-info {
    flex-grow: 1;
}

.video-info h5 {
    color: #323231;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.video-info p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.2;
}

.video-description {
    color: #555 !important;
    font-size: 0.75rem !important;
    font-style: italic;
    margin-top: 8px !important;
    line-height: 1.3 !important;
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.slide-btn {
    background: #003399;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.slide-btn:hover {
    background: #323231;
    transform: scale(1.05);
}

.slide-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator.active {
    background: #003399;
    transform: scale(1.2);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.card-button {
    background: #003399;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 67, 141, 0.4);
}

/* Viewing Session Hero Section */
.viewing-session-hero {
    background: radial-gradient(ellipse at top left, #019F91 0%, transparent 50%), 
                radial-gradient(ellipse at top right, #84B5E2 0%, transparent 50%), 
                radial-gradient(ellipse at bottom left, #019F91 0%, transparent 50%), 
                radial-gradient(ellipse at bottom right, #CFC0ED 0%, transparent 50%), 
                linear-gradient(135deg, #019F91 0%, #84B5E2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 60px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.submission-options {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.viewing-session-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-submit-btn {
    background: white;
    color: #003399;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background: #f0f2f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.alternative-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alternative-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.alt-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.alt-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.email-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.email-icon {
    font-size: 1.1rem;
}

.alt-note {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    margin: 0;
}

/* Current Events Section */
.current-events-section {
    margin-bottom: 80px;
}

.current-events-slideshow {
    max-width: 66.67%;
    margin: 0 auto;
    position: relative;
}

.current-events-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.event-slide {
    display: none;
}

.event-slide.active {
    display: block;
}

.event-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
}

.urgent-event::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.trend-event::before {
    background: linear-gradient(90deg, #C5D809, #C5D809);
}

.news-reaction-event::before {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.actor-event::before {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.platform-event::before {
    background: linear-gradient(90deg, #1abc9c, #16a085);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.event-type {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
}

.urgent-event .event-type {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.trend-event .event-type {
    background: linear-gradient(90deg, #C5D809, #C5D809);
}

.news-reaction-event .event-type {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.actor-event .event-type {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.platform-event .event-type {
    background: linear-gradient(90deg, #1abc9c, #16a085);
}

.event-date {
    background: #F5F6F0;
    color: #666;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-size: 2rem;
    color: #323231;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.event-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.event-read-more {
    background: #003399;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 20px;
}

.event-read-more:hover {
    background: #323231;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 67, 141, 0.3);
}

.current-events-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 20px;
}

.events-btn {
    background: #003399;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 67, 141, 0.2);
}

.events-btn:hover {
    background: #323231;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(57, 67, 141, 0.3);
}

.events-indicators {
    display: flex;
    gap: 15px;
}

.events-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-indicator.active {
    background: #003399;
    transform: scale(1.4);
    box-shadow: 0 2px 8px rgba(57, 67, 141, 0.3);
}

/* Action Section */
.action-section {
    margin-bottom: 60px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.action-button {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.akteurs-button::before {
    background: #84B5E2;
}

.listen-button::before {
    background: #003399;
}

.themen-button::before {
    background: #003399;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.action-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.action-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #003399;
}

/* Reports Slideshow */
.reports-section {
    margin-bottom: 60px;
}

.reports-title {
    font-size: 2rem;
    color: #003399;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

.reports-slideshow {
    position: relative;
}

.reports-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.report-slide {
    display: none;
}

.report-slide.active {
    display: block;
}

.report-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    height: 435px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.trend-report::before {
    background: rgb(251, 223, 181);
}

.kontext-report::before {
    background: rgb(248, 180, 188);
}

.report-image {
    flex: 1;
    min-height: 200px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 8px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.image-placeholder::after {
    content: "Symbolbild";
}

.report-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.report-type {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trend-report .report-type {
    color: rgb(180, 140, 85);
}

.kontext-report .report-type {
    color: rgb(180, 85, 100);
}

.report-number,
.report-date {
    background: #F5F6F0;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.report-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.report-title {
    font-size: 1.8rem;
    color: #323231;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.report-topics {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.report-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.report-button {
    background: #003399;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    align-self: flex-start;
}

.report-button:hover {
    background: #323231;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 67, 141, 0.4);
}

.reports-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.reports-btn {
    background: #003399;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
}

.reports-btn:hover {
    background: #323231;
    transform: scale(1.05);
}

.reports-indicators {
    display: flex;
    gap: 12px;
}

.reports-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reports-indicator.active {
    background: #003399;
    transform: scale(1.3);
}

/* Logos Section */
.logos-section {
    background: white;
    padding: 40px 0;
    margin-top: 60px;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.logos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #019F91, #CFC0ED);
    color: #323231;
    padding: 60px 0;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #323231;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .dashboard-card,
    .faq-card,
    .action-button {
        padding: 25px;
    }
    
    /* Current Events responsive */
    .current-events-slideshow {
        max-width: 95%;
    }
    
    .event-card {
        padding: 30px;
        min-height: 250px;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-description {
        font-size: 1rem;
    }
    
    .event-read-more {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .events-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    /* Viewing Session Hero responsive */
    .viewing-session-hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .submission-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section,
    .alternative-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .card-header h2 {
        font-size: 1.4rem;
    }
    
    .dashboard-card,
    .faq-card,
    .action-button {
        padding: 20px;
    }
    
    /* Current Events mobile responsive */
    .current-events-slideshow {
        max-width: 100%;
    }
    
    .event-card {
        padding: 25px;
        min-height: 220px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-description {
        font-size: 0.95rem;
    }
    
    .event-read-more {
        padding: 6px 18px;
        font-size: 0.8rem;
        margin-top: 15px;
    }
    
    .events-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .events-indicator {
        width: 12px;
        height: 12px;
    }
    
    /* Viewing Session Hero mobile responsive */
    .viewing-session-hero {
        padding: 25px 0;
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .form-section,
    .alternative-info {
        padding: 18px;
    }
    
    .form-title,
    .alt-title {
        font-size: 1rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .form-submit-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}