/*styles.css - Fantastic5-VA Website */

/* CSS Custom Properties */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #ff3366;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --neon-blue: #00f0ff;
    --neon-purple: #8b5cf6;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-neon: linear-gradient(45deg, #00d4ff, #8b5cf6, #ff3366);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

.element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.element:nth-child(2) { top: 50%; left: 80%; animation-delay: 5s; }
.element:nth-child(3) { top: 80%; left: 30%; animation-delay: 10s; }
.element:nth-child(4) { top: 30%; left: 70%; animation-delay: 15s; }
.element:nth-child(5) { top: 70%; left: 50%; animation-delay: 8s; }

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s infinite linear;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes streamPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.5); }
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}



/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1.5rem 0;
    z-index: 10000;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--gradient-neon);
    color: white;
}

.cookie-btn.essential {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cookie-link {
    color: var(--text-gray);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: var(--text-light);
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chatbot-toggle {
    background: var(--gradient-neon);
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.chatbot-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

.chatbot-widget {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chatbot-widget.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chatbot-header {
    background: var(--gradient-neon);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chatbot-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 5px;
    border-radius: 3px;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 15px;
    color: var(--text-light);
    max-width: 80%;
    line-height: 1.4;
}

.user-message .message-content {
    background: var(--gradient-neon);
}

.chatbot-input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 10px 15px;
    color: var(--text-light);
    outline: none;
}

.chatbot-input input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.send-button {
    background: var(--gradient-neon);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    transform: scale(1.1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-blue);
    position: relative;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.logo-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    left: -5px;
    top: -5px;
    animation: pulse-ring 2s infinite;
    opacity: 0.3;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.2rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-light);
}

.nav-item i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-item i {
    transform: rotate(180deg);
}

.nav-item {
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-light);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    position: relative;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--neon-blue);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-neon);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.cta-button.secondary:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Virtual Assistant Visualization */
.hero-visual {
    animation: float 6s ease-in-out infinite;
}

.virtual-assistant {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.ai-avatar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-ring {
    width: 200px;
    height: 200px;
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    position: absolute;
    animation: rotate 10s linear infinite;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.avatar-core {
    width: 100px;
    height: 100px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: white;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.data-streams {
    position: absolute;
    width: 300px;
    height: 300px;
}

.stream {
    position: absolute;
    width: 2px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 2px;
    opacity: 0.7;
}

.stream-1 {
    top: -25px;
    left: 50%;
    animation: streamPulse 2s ease-in-out infinite;
}

.stream-2 {
    right: -25px;
    top: 50%;
    transform: rotate(90deg);
    animation: streamPulse 2s ease-in-out infinite 0.5s;
}

.stream-3 {
    bottom: -25px;
    left: 50%;
    transform: rotate(180deg);
    animation: streamPulse 2s ease-in-out infinite 1s;
}

.stream-4 {
    left: -25px;
    top: 50%;
    transform: rotate(270deg);
    animation: streamPulse 2s ease-in-out infinite 1.5s;
}

.connection-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--neon-blue);
    animation: nodeFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.node-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 20%;
    left: 10%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.node-4 {
    bottom: 10%;
    left: 20%;
    animation-delay: 3s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(5, 5, 8, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.services-grid-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-overview-card {
    background: rgba(10, 10, 15, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--neon-blue);
    z-index: 2;
    position: relative;
}

.service-overview-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-overview-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(5, 5, 8, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Page Content */
.page-content {
    display: none;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-content.active {
    display: block;
}

/* Service Detail Pages */
.service-detail {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    color: white;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Services Detailed Section */
.services-detailed {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.service-category {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-category:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.category-content {
    padding: 2rem;
}

.service-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item h4 i {
    color: #667eea;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-item ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.service-item ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.service-item ul li:hover {
    color: var(--text-light);
}

.service-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #667eea;
    font-weight: bold;
}

/* About Section */
.about-intro {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.tech-item h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-item ul {
    list-style: none;
    padding-left: 0;
}

.tech-item ul li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 2rem;
}

.tech-item ul li::before {
    content: "→";
    color: var(--neon-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
}

.team-section h3 {
    color: var(--neon-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* Zeigt komplettes Bild */
    object-position: center;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--neon-blue);
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    display: block;
}

.form-header h3 {
    color: var(--text-light);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 40px;
    color: var(--neon-blue);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--neon-blue);
    transform: scale(1.1);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-neon);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.info-card h3 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item div {
    color: var(--text-gray);
}

.contact-item strong {
    color: var(--text-light);
}

.quick-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.legal-content h1 {
    color: var(--neon-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-gray);
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--neon-blue);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.footer-logo i {
    animation: pulse 3s ease-in-out infinite;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection styling */
::selection {
    background: var(--neon-blue);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--neon-blue);
    color: var(--dark-bg);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--neon-blue);
    color: var(--dark-bg);
    padding: 8px;
    text-decoration: none;
    z-index: 100000;
    border-radius: 4px;
    font-weight: bold;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for better accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Mobile device specific styles */
.mobile-device .service-overview-card:hover,
.mobile-device .feature-card:hover,
.mobile-device .team-member:hover {
    transform: none;
}

/* Media Queries - Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .mobile-menu {
        display: flex;
    }

    .service-item ul {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-content,
    .service-item {
        padding: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .virtual-assistant {
        height: 300px;
    }

    .avatar-ring {
        width: 150px;
        height: 150px;
    }

    .avatar-core {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-overview {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-button {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-detail,
    .contact-form,
    .info-card {
        padding: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .about-intro {
        margin-bottom: 2rem;
    }

    .chatbot-widget {
        width: 300px;
        height: 400px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .services-grid-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-overview-card {
        padding: 2rem;
    }

    .tech-item {
        padding: 1.5rem;
    }

    .team-member .member-info {
        padding: 1rem;
    }

    .legal-content {
        padding: 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .chatbot-widget {
        width: 280px;
        height: 350px;
        right: -10px;
    }

    .chatbot-toggle {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neon-blue: #00ffff;
        --text-gray: #cccccc;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements,
    .grid-overlay,
    .avatar-ring,
    .data-streams,
    .connection-nodes {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .background-animation,
    .floating-elements,
    .grid-overlay,
    header,
    footer,
    .chatbot-container,
    .cookie-banner,
    .accessibility-banner,
    .cta-button {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page-content {
        display: block !important;
        padding: 20px 0 !important;
    }
    
    .service-detail,
    .contact-form,
    .info-card,
    .legal-content {
        border: 1px solid #ccc !important;
        background: white !important;
        color: black !important;
    }
    
    .section-header h2,
    .service-header h2 {
        color: black !important;
    }
}




/* Dropdown Select Styling Fix */
.form-group select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    
    /* Wichtig für Dropdown-Optionen */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Dropdown-Optionen */
.form-group select option {
    background: var(--dark-bg);     /* Dunkler Hintergrund */
    color: var(--text-light);      /* Weiße Schrift */
    padding: 10px;
    border: none;
}

/* Alternative für bessere Kompatibilität */
.form-group select option {
    background-color: #0a0a0f;     /* Explizit dunkle Farbe */
    color: #ffffff;                /* Explizit weiße Schrift */
}

/* Hover-Effekt für Optionen */
.form-group select option:hover,
.form-group select option:checked {
    background-color: rgba(0, 212, 255, 0.2);
    color: #ffffff;
}

/* Focus-Styling */
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Custom Dropdown Arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

/* Member Detail Button */
.member-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--gradient-neon);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.member-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Accessibility Panel Styles - Fügen Sie dies zu Ihrer styles.css hinzu */

/* Accessibility Toggle Button */
.accessibility-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
    background: var(--gradient-neon);
    color: white;
    padding: 15px 8px;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: -5px 0 20px rgba(0, 212, 255, 0.3);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.accessibility-toggle:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -8px 0 25px rgba(0, 212, 255, 0.5);
}

.accessibility-toggle i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.accessibility-text {
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    color: var(--text-light);
}

.accessibility-panel.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-neon);
    color: white;
}

.accessibility-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accessibility-title h3 {
    margin: 0;
    font-size: 1.3rem;
}

.panel-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.panel-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.accessibility-content {
    padding: 1.5rem;
}

.accessibility-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accessibility-section:last-of-type {
    border-bottom: none;
}

.accessibility-section h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accessibility-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.accessibility-option label {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
}

/* Font Size Controls */
.size-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.size-btn:hover {
    background: var(--neon-blue);
    color: white;
}

#font-size-display {
    font-weight: bold;
    color: var(--neon-blue);
    min-width: 40px;
    text-align: center;
    font-size: 0.9rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient-neon);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Action Buttons */
.accessibility-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reset-btn, .save-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reset-btn {
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    border: 1px solid #ff3366;
}

.reset-btn:hover {
    background: #ff3366;
    color: white;
}

.save-btn {
    background: var(--gradient-neon);
    color: white;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Reading Mask */
.reading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 45%,
        transparent 55%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: top 0.1s ease;
}

/* Accessibility Classes */
.high-contrast {
    filter: contrast(150%) !important;
}

.dark-mode {
    filter: invert(1) hue-rotate(180deg) !important;
}

.underline-links a {
    text-decoration: underline !important;
}

.dyslexia-friendly {
    font-family: 'OpenDyslexic', 'Comic Sans MS', cursive !important;
}

.keyboard-navigation *:focus {
    outline: 3px solid var(--neon-blue) !important;
    outline-offset: 2px !important;
}

.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .accessibility-panel {
        width: 100%;
        right: -100%;
    }
    
    .accessibility-toggle {
        right: 10px;
        top: 40%;
        padding: 12px 6px;
    }
    
    .accessibility-text {
        font-size: 0.7rem;
    }
    
    .accessibility-content {
        padding: 1rem;
    }
    
    .accessibility-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .size-controls {
        width: 100%;
        justify-content: space-between;
    }
}

/* Print hide */
@media print {
    .accessibility-toggle,
    .accessibility-panel,
    .reading-mask {
        display: none !important;
    }
}