* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #33ff33;
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100vw;
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #33ff33;
    font-size: 2rem;
    z-index: 1000;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

/* Loading animation */
#loading::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    border: 4px solid #33ff33;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error message if WebGL isn't supported */
#webgl-error {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #33ff33;
    padding: 20px;
    z-index: 2000;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
}

#title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    
    /* 3D text effect with Matrix green */
    color: rgba(51, 255, 51, 0.1);
    text-shadow: 
        0 0 5px rgba(51, 255, 51, 0.5),
        0 0 10px rgba(51, 255, 51, 0.3);
    -webkit-text-stroke: 1px #33ff33;
    
    /* Animation for subtle glow */
    animation: textPulse 2s infinite alternate;
}

#tagline {
    font-size: 1.5rem;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Pulse animation for the title */
@keyframes textPulse {
    0% {
        text-shadow: 
            0 0 5px rgba(51, 255, 51, 0.5),
            0 0 10px rgba(51, 255, 51, 0.3);
    }
    100% {
        text-shadow: 
            0 0 7px rgba(51, 255, 51, 0.7),
            0 0 15px rgba(51, 255, 51, 0.5),
            0 0 20px rgba(51, 255, 51, 0.3);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    #title {
        font-size: 3.5rem;
    }
    
    #tagline {
        font-size: 1.2rem;
    }
    
    #loading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #title {
        font-size: 2.5rem;
    }
    
    #tagline {
        font-size: 1rem;
    }
    
    #loading {
        font-size: 1.2rem;
    }
}

/* Cloudflare Pages Badge */
.cloudflare-badge {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  color: rgba(0, 212, 0, 0.6);
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  font-family: 'Courier New', monospace;
  z-index: 1000;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cloudflare-badge {
    font-size: 10px;
    bottom: 5px;
    right: 5px;
  }
}

/* Case sensitive text style */
.lowercase {
    text-transform: lowercase;
}

/* Social Links Styling */
.social-links {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #33ff33;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden; /* Verhindert Überlappungen */
}

.social-link:hover {
    background-color: rgba(51, 255, 51, 0.1);
    transform: translateY(-3px);
}

/* SVG Icon-Styling */
.social-icon-svg {
    width: 18px;
    height: 18px;
    fill: white;
    filter: drop-shadow(0 0 2px rgba(51, 255, 51, 0.7));
}

.social-link:hover .social-icon-svg {
    filter: drop-shadow(0 0 4px rgba(51, 255, 51, 0.9));
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .social-links {
        bottom: 15px;
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon-svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .social-links {
        bottom: 10px;
        gap: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-icon-svg {
        width: 14px;
        height: 14px;
    }
} 