:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
    padding: 1rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

/* KORRIGIERTES HAMBURGER-MENÜ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

/* Verbesserte Abstände zwischen den Balken */
.hamburger span:nth-child(1) {
    transform: translateY(0);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
    margin: 4px 0; /* Abstand zwischen den Balken */
}

.hamburger span:nth-child(3) {
    transform: translateY(0);
}

/* Animation für aktiven Zustand - verbessert */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.1s;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin: 0 0.5rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Sections */
section {
    padding: 6rem 5%;
}

@media (max-width: 460px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        margin: 0;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.skill {
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    opacity: 0;
    transform: translateY(20px) rotate(-5deg);
    filter: blur(2px);
}

.skill:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    filter: blur(0);
}

/* Statistik Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Services Section - Überarbeitet */
.services {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

/* Service Cards Animation */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.2rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) and (min-width: 461px) {
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        margin: 0;
        width: auto;
        min-width: 140px; /* Kleinere Buttons für diesen Bereich */
        max-width: 140px;
        padding: 0.6rem; /* Weniger Padding */
        font-size: 0.85rem; /* Kleinere Schrift */
        white-space: nowrap;
        flex: none; /* Verhindert ungewünschtes Wachstum */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        margin: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }
}

/* Projekte Section - Überarbeitete Version */
.projects {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    perspective: 1000px;
    width: 100%;
    max-width: 1200px;
}

.project-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 320px;
    transform-style: preserve-3d;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.project-card.flipped .project-card-inner {
    transform: rotateY(180deg);
}

.project-card-front, .project-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border-radius: 12px;
}

.project-card-front {
    background: white;
    color: var(--dark);
}

.project-card-back {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
    overflow: hidden;
}

.project-back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.project-card-back .project-icon {
    color: white;
}

.project-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.project-card-front p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.project-tags {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.project-tag {
    font-size: 0.8rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.project-card-back .project-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: auto;
    justify-content: center;
    font-size: 0.95rem;
}

.project-card-back .project-link {
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.project-card-back .project-link:hover {
    background: white;
    color: var(--primary);
}

.flip-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}

.project-card:hover .flip-indicator {
    background: var(--primary);
    color: white;
}

/* Responsive adjustments für Projekte */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .project-card {
        height: 300px;
        max-width: 100%;
    }

    .project-card-front, .project-card-back {
        padding: 1.8rem;
    }

    .project-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .project-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .project-card {
        height: 280px;
    }

    .project-card-front, .project-card-back {
        padding: 1.5rem;
    }

    .project-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .project-card h3 {
        font-size: 1.2rem;
    }

    .project-card-front p {
        font-size: 0.95rem;
    }
}

@media (min-width: 993px) {
    .project-card:hover .project-card-inner {
        transform: rotateY(180deg);
    }

    .flip-indicator {
        display: none;
    }
}

/* Zusätzliche CSS für bessere mobile Interaktion */
@media (max-width: 992px) {
    .project-card {
        cursor: pointer;
    }

    .project-card-back {
        overflow-y: auto;
    }

    .flip-indicator {
        display: flex !important;
    }
}

/* Sicherstellen, dass die Karten-Inner richtig funktionieren */
.project-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.project-card.flipped .project-card-inner {
    transform: rotateY(180deg);
}

/* Hacker Animation Styles für Footer */
.hacker-animation {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    min-height: 24px;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
}

/* Animationseffekt für den Hacker-Text - Cursor entfernt */
.hacker-animation.animating::after {
    content: ""; /* Cursor entfernt */
    animation: none; /* Animation deaktiviert */
}

.hacker-animation.completed::after {
    content: "";
    animation: none;
}

/* Anpassung für mobile Geräte */
@media (max-width: 768px) {
    .hacker-animation {
        font-size: 0.85rem;
    }
}

/* Stile für den Copyright-Link im Footer */
.copyright a.copyright-link {
    color: #94a3b8; /* Gleiche Farbe wie der Copyright-Text */
    text-decoration: none;
    transition: var(--transition);
}

.copyright a.copyright-link:hover {
    color: white;
    text-decoration: underline;
}

/* Stile für die Impressum-Seite */
.imprint-section {
    padding: 10rem 5% 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.imprint-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark);
}

.imprint-section h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.imprint-section p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.imprint-section a {
    color: var(--primary);
    text-decoration: none;
}

.imprint-section a:hover {
    text-decoration: underline;
}

.about-skills-grid {
    text-align: center;
}

.skills-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color); /* oder deine Akzentfarbe */
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.skill-name {
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .about-skills-grid {
        margin-top: 2rem;
    }
}



/* Sektion allgemein */
.about-section-clean {
    padding: 100px 20px;
    color: #333;
    font-family: 'Segoe UI', sans-serif; /* Deine Font */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Text links, Skills rechts */
    gap: 80px;
    align-items: center;
}

/* --- TEXT BEREICH --- */
.sub-heading {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #007bff; /* Dein Haupt-Blau */
    display: block;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50; /* Ein dunkles Blau-Grau wirkt oft besser als reines Schwarz */
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* --- SKILLS BEREICH (Bunt & Clean) --- */
.skills-container h3 {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #007bff; /* Auch hier dein Blau für Konsistenz */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- SKILLS BEREICH (Netz-Anordnung) --- */

.skills-container {
    /* Wichtig: Zentrieren des Netzes im rechten Container */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills-container h3 {
    /*... (wie vorher) ...*/
}

.skills-cloud {
    /* Zurück zu Flexbox für organischen Fluss */
    display: flex;
    flex-wrap: wrap;
    /* Abstand der einzelnen Elemente */
    gap: 15px 30px;
    align-items: center;
    /* Zentrale Ausrichtung der ersten Zeile */
    justify-content: center;
    max-width: 500px; /* Optional: Um das Netz nicht zu breit zu machen */
    margin: 0 auto;
}

/* GRUND-STYLING FÜR ALLE LOGOS */
.skills-cloud img,
.ml-text-icon {
    /* Logo-Größe beibehalten, aber Padding erhöhen */
    height: 100px;
    width: auto;
    object-fit: contain;
    padding: 15px 20px; /* Mehr horizontaler Platz */
    border-radius: 8px;
    transition: all 0.3s ease;
    /* NEU: Wichtig, damit die Versetzung funktioniert */
    position: relative;
}

/* NETZ-EFFEKTE: VISUELLE VERSCHIEBUNG UND GRÖßENANPASSUNG */

/* Logos, die leicht nach oben/unten verschoben werden (erzeugt den Versatz) */
.skill-shift-up {
    top: -10px;
}
.skill-shift-down {
    top: 10px;
}

/* Logos, die etwas größer erscheinen sollen (visuelle Gewichtung) */
.skill-large {
    height: 85px; /* Etwas größer */
    padding: 20px 25px;
}

/* HOVER EFFEKT */
.skills-cloud img:hover,
.ml-text-icon:hover {
    background-color: rgba(0, 123, 255, 0.08);
    transform: translateY(-5px);
    /* Verschiebung beim Hover zurücksetzen, damit es gleichmäßig hoch springt */
    top: -5px !important;
}


/* Responsive Anpassung */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
    .skills-container {
        align-items: center;
    }
    .skills-cloud {
        /* Netz auf dem Handy mittig */
        justify-content: center;
        gap: 10px 20px;
    }

    /* Versetzung auf Mobilgeräten reduzieren */
    .skill-shift-up { top: -5px; }
    .skill-shift-down { top: 5px; }

    /* Größe auf Mobilgeräten anpassen */
    .skills-cloud img, .ml-text-icon {
        height: 60px;
        padding: 10px;
    }
    .skill-large {
        height: 70px;
    }
}