:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #1abc9c;
    --background-dark: #0a0a1a;
    --background-light: #f0f8ff;
    --text-dark: #e6f7ff;
    --text-light: #2c3e50;
    --card-dark: #1a1a2e;
    --card-light: #ffffff;
    --transition: all 0.3s ease;
    --glow: 0 0 10px rgba(52, 152, 219, 0.7), 0 0 20px rgba(52, 152, 219, 0.5), 0 0 30px rgba(52, 152, 219, 0.3);
    --playful-font: 'Comic Sans MS', cursive, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-dark);
    color: var(--text-dark);
    transition: var(--transition);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body.light-mode {
    background-color: var(--background-light);
    color: var(--text-light);
}

/* Matrix Hintergrund Effekt */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.03;
    pointer-events: none;
}

/* Digitale Partikel */
.digital-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.digital-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--card-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(52, 152, 219, 0.3);
}

body.light-mode header {
    background-color: var(--card-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
    font-family: var(--playful-font);
}

.logo-foxicloud {
    color: var(--primary-color);
    text-shadow: var(--glow);
    letter-spacing: 2px;
}

.logo-blog {
    color: var(--text-dark);
    font-size: 1.5rem;
}

body.light-mode .logo-blog {
    color: var(--text-light);
}

.theme-toggle {
    position: absolute;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

/* Burger Menu */
.burger-menu {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glow);
    transition: var(--transition);
}

.burger-menu:hover {
    transform: scale(1.1);
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 3px 0;
    background-color: #000;
    transition: var(--transition);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--card-dark);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
    z-index: 900;
    padding: 5rem 1.5rem 1.5rem 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-right: 2px solid var(--primary-color);
}

body.light-mode .sidebar {
    background-color: var(--card-light);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
}

.sidebar.active {
    left: 0;
}

.sidebar nav ul {
    list-style: none;
    flex-grow: 1;
}

.sidebar nav ul li {
    margin: 1.8rem 0;
}

.sidebar nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
    display: block;
    padding: 0.8rem;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: var(--playful-font);
}

.sidebar nav ul li a:hover,
.sidebar nav ul li a.active {
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.1), transparent);
}

.sidebar nav ul li a::before {
    content: ">";
    margin-right: 10px;
    opacity: 0;
    transition: var(--transition);
}

.sidebar nav ul li a:hover::before,
.sidebar nav ul li a.active::before {
    opacity: 1;
}

body.light-mode .sidebar nav ul li a {
    color: var(--text-light);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

body.light-mode .sidebar-footer {
    color: #777;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
    letter-spacing: 2px;
    font-family: var(--playful-font);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Main Content */
main {
    padding: 2rem;
    transition: var(--transition);
    max-width: 1400px;
    margin: 0 auto;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.post-card {
    background-color: var(--card-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
    border: 1px solid rgba(52, 152, 219, 0.3);
    position: relative;
}

body.light-mode .post-card {
    background-color: var(--card-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.3);
}

.post-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
    font-family: var(--playful-font);
}

.post-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image {
    transform: scale(1.1);
}

.post-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.post-card:hover .post-hover-effect {
    opacity: 1;
}

.post-content {
    padding: 1.8rem;
}

.post-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    line-height: 1.3;
    font-family: var(--playful-font);
}

.post-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #aaa;
}

body.light-mode .post-excerpt {
    color: #666;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

body.light-mode .post-meta {
    color: #777;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
    filter: blur(10px);
}

.post-card:hover .post-glitch {
    opacity: 0.1;
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
    background-color: var(--card-dark);
    transition: var(--transition);
    border-top: 1px solid rgba(52, 152, 219, 0.3);
}

body.light-mode footer {
    background-color: var(--card-light);
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--playful-font);
}

.footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    font-family: var(--playful-font);
}

.footer-copyright {
    color: #aaa;
}

body.light-mode .footer-copyright {
    color: #777;
}

/* Neue Stile für Einzelbeitrag und Kommentare */
.single-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--card-dark);
    border-radius: 15px;
    box-shadow: 极 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
}

body.light-mode .single-post {
    background-color: var(--card-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.single-post-title {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    line-height: 1.3;
    font-family: var(--playful-font);
}

.single-post-meta {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.single-post-image-container {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.single-post-image {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.back-to-blog {
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.back-to-blog:hover {
    text-decoration: underline;
    transform: translateX(-5px);
}

/* Kommentarbereich */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .comments-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comments-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.comment {
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

body.light-mode .comment {
    background-color: rgba(52, 152, 219, 0.03);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

body.light-mode .comment-meta {
    color: #777;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-content {
    line-height: 1.6;
}

.no-comments {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
}

body.light-mode .no-comments {
    color: #777;
}

/* Kommentarformular */
.comment-form-container {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

body.light-mode .comment-form-container {
    background-color: rgba(52, 152, 219, 0.05);
}

.comment-form-container h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

body.light-mode .form-group label {
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 5px;
    background-color: rgba(10, 10, 26, 0.5);
    color: var(--text-dark);
    font-family: inherit;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background-color: rgba(240, 248, 255, 0.7);
    color: var(--text-light);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.submit-comment {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.submit-comment:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.comment-message {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 3px solid #27ae60;
}

.comment-error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 极rem;
    border-left: 3px solid #c0392b;
}

/* Read More Button */
.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.read-more:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

.post-comments {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-comments::before {
    content: "💬";
    font-size: 0.9rem;
}

/* Social Media Sharing Icons */
.social-sharing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
}

.social-sharing h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-dark);
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

body.light-mode .social-icon {
    background-color: var(--card-light);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .single-post {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comment-form-container {
        padding: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .single-post {
        padding: 1rem;
    }
    
    .single-post-title {
        font-size: 1.7rem;
    }
    
    .comment {
        padding: 1rem;
    }
    
    .comment-meta {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
    background-color: var(--card-dark);
    transition: var(--transition);
    border-top: 1px solid rgba(52, 152, 219, 0.3);
}

body.light-mode footer {
    background-color: var(--card-light);
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--playful-font);
}

.footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    font-family: var(--playful-font);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 极.1);
}

body.light-mode .footer-nav a {
    color: var(--text-light);
}

.footer-copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}

body.light-mode .footer-copyright {
    color: #777;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-dark);
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
}

body.light-mode .cookie-consent {
    background: var(--card-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-consent-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-consent-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    min-width: 150px;
}

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

.cookie-btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.cookie-btn-link {
    background: none;
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn-link:hover {
    color: var(--secondary-color);
}

/* Sprechblase für rechtliche Links */
.legal-bubble {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-dark);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    z-index: 2000;
    max-width: 90%;
    width: 500px;
    border: 2px solid var(--primary-color);
    animation: bubbleFadeIn 0.3s ease-out;
}

body.light-mode .legal-bubble {
    background-color: var(--card-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes bubbleFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.legal-bubble-content {
    padding: 2rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-legal-bubble {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-legal-bubble:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: scale(1.1);
}

.legal-bubble h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    font-family: var(--playful-font);
}

.legal-bubble-text {
    line-height: 1.6;
}

.legal-bubble-text p {
    margin-bottom: 1rem;
}

.legal-bubble-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Anpassungen für Sprechblase */
@media (max-width: 600px) {
    .legal-bubble {
        width: 95%;
        max-width: 95%;
    }
    
    .legal-bubble-content {
        padding: 1.5rem;
    }
    
    .legal-bubble h3 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .burger-menu {
        top: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }
    
    header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .theme-toggle {
        position: static;
        margin-top: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    main {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 280px;
        left: -280px;
        padding: 4rem 1rem 1rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
}