* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

.galaxy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, #0a0a1a 0%, #000000 70%);
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px white;
    animation: shoot 3s linear infinite;
    z-index: 2;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-300px) translateY(300px);
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    margin: 20px 0;
    position: relative;
    border: 2px solid #6b7db8;
    box-shadow: 
        0 0 10px rgba(107, 125, 184, 0.3),
        inset 0 0 20px rgba(107, 125, 184, 0.05);
}

header::before {
    content: '┌─────────────────────────────────────────────────────────────────┐';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    color: #6b7db8;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
}

header::after {
    content: '└─────────────────────────────────────────────────────────────────┘';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    color: #6b7db8;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #8b9dc3;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(107, 125, 184, 0.5);
}

.logo::before {
    content: '> ';
    color: #6b7db8;
}

.logo span {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

nav a {
    color: #8b9dc3;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

nav a::before {
    content: '[ ';
    color: #6b7db8;
}

nav a::after {
    content: ' ]';
    color: #6b7db8;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(107, 125, 184, 0.8);
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.terminal-window {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #6b7db8;
    border-radius: 8px;
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 
        0 0 20px rgba(107, 125, 184, 0.3),
        inset 0 0 30px rgba(107, 125, 184, 0.05);
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #6b7db8;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7db8;
    box-shadow: 0 0 5px rgba(107, 125, 184, 0.5);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #8b9dc3;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 30px rgba(107, 125, 184, 0.5);
}

.hero h1::before {
    content: 'Cloud Server Lösungen';
    display: block;
    font-size: 16px;
    color: #6b7db8;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero .subtitle {
    font-size: 20px;
    color: #a0afd4;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .subtitle::before {
    content: '> ';
    color: #6b7db8;
}

.cta-button {
    display: inline-block;
    padding: 15px 50px;
    background: rgba(107, 125, 184, 0.1);
    border: 2px solid #6b7db8;
    color: #8b9dc3;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(107, 125, 184, 0.2);
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button-arrow::before {
    content: '-> ';
}

.cta-button:hover {
    background: rgba(107, 125, 184, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(107, 125, 184, 0.5);
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #8b9dc3;
    margin: 80px 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(107, 125, 184, 0.5);
}

.section-title::before {
    content: '// ';
    color: #6b7db8;
}

.section-title::after {
    content: ' //';
    color: #6b7db8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.info-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #6b7db8;
    border-radius: 4px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.info-card::before {
    content: '┌─ ERFAHRE MEHR ↓ ──────────────────────┐';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    color: #6b7db8;
    font-size: 11px;
    border-bottom: 1px solid #6b7db8;
    background: rgba(107, 125, 184, 0.05);
}

.info-card::after {
    content: '└──────────────────────────────────────┘';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    color: #6b7db8;
    font-size: 11px;
    border-top: 1px solid #6b7db8;
    background: rgba(107, 125, 184, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(107, 125, 184, 0.4);
    border-color: #8b9dc3;
}

.info-card h3 {
    font-size: 24px;
    color: #8b9dc3;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-card h3::before {
    content: '>> ';
    color: #6b7db8;
}

.info-card p {
    color: #a0afd4;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #6b7db8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 40px 0 20px 0;
    background: rgba(107, 125, 184, 0.1);
    box-shadow: 0 0 15px rgba(107, 125, 184, 0.3);
}
.info-icon-img {
    width: 120px;
    height: 120px;
    border: 2px solid #6b7db8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 40px 0 20px 0;
    box-shadow: 0 0 15px rgb(107, 125, 184);
}
.whitebg {
    background: rgb(255, 255, 255);
}


.location-section {
    padding: 60px 20px;
    text-align: center;
    margin: 50px 0;
}

.location-box {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #6b7db8;
    border-radius: 4px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(107, 125, 184, 0.3);
    position: relative;
}

.location-box::before {
    content: '╔══════════════════════════════════════════════════════════════╗';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    color: #6b7db8;
    font-size: 12px;
    overflow: hidden;
}

.location-box::after {
    content: '╚══════════════════════════════════════════════════════════════╝';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    color: #6b7db8;
    font-size: 12px;
    overflow: hidden;
}

.location-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #8b9dc3;
    text-shadow: 0 0 20px rgba(107, 125, 184, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-box h2::before {
    content: '';
    color: #6b7db8;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.location-box p {
    font-size: 16px;
    color: #a0afd4;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.stats-section {
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #6b7db8;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

.stat-card::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000;
    padding: 0 10px;
    color: #6b7db8;
    font-size: 12px;
    text-transform: uppercase;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(107, 125, 184, 0.4);
    border-color: #8b9dc3;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #8b9dc3;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(107, 125, 184, 0.5);
}

.stat-label {
    color: #a0afd4;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid rgba(107, 125, 184, 0.3);
    color: #a0afd4;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        margin: 0;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(107, 125, 184, 0.9);
    border: 2px solid #6b7db8;
    border-radius: 8px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(107, 125, 184, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: rgba(139, 157, 195, 1);
    box-shadow: 0 0 30px rgba(107, 125, 184, 0.8);
    transform: translateY(-3px);
}

#backToTop::before {
    content: '↑';
}