:root {
    --orange: rgba(199, 96, 45, 1) ;
    --content-background: rgba(6,42,51,0.1);
    --button-petrol: rgba(30,34,35,1);
    --petrol: rgb(6,42,51);
    --dark-petrol: rgb(8,29,34);
    --content-container-background: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-hover: rgba(255, 255, 255, 0.15);
    --glass-gradient: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Neu für Linien und Effekte */
    --shimmer-button: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    --button-hover-gradient: linear-gradient(135deg, #d46d1599, #455a64); /* bleibt konsistent */
    --gray-line: rgba(255, 255, 255, 0.15);
    
    --shimmer-line-horizontal: linear-gradient(120deg, transparent 0%, transparent 20%, rgb(6 42 51 / 30%) 49%, rgb(199 96 45) 50%, rgb(6 42 51 / 30%) 51%, transparent 80%, transparent 100%);
    --shimmer-line-vertical: linear-gradient(300deg, transparent 0%, rgb(6 42 51 / 10%) 20%, rgb(6 42 51 / 30%) 28%, rgb(199 96 45) 30%, rgb(6 42 51 / 30%) 32%, rgb(6 42 51 / 10%) 40%, transparent 100%);
}

/* Allgemeines Layout */
body {
  font-family: Arial, sans-serif;
  margin: 0px;
  background: var(--content-background);
  
}

.content-container {
  width: calc(100% - 100px);
  max-width: 800px;
  margin: 100px auto;
  background: var(--content-container-background);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.fancy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    background: var(--content-background);
    backdrop-filter: blur(8px);
    border: 1px solid var(--dark-petrol);
    position: relative;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    z-index: 0;
    overflow: hidden;
    transition: background 0.3s ease;
    color: var(--petrol);
    box-shadow: 0 0 3px rgba(30, 34, 35, 1);
}

.fancy-button.dark{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    background: var(--button-petrol);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    z-index: 0;
    overflow: hidden;
    transition: background 0.3s ease;
    color: white;
}

.fancy-button.dark.inlineform{
    display: inline-block;
    margin-left:1rem;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    background: var(--button-petrol);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    z-index: 0;
    overflow: hidden;
    transition: background 0.3s ease;
    color: white;
}

/* Gradient-Fade on Hover (wie gehabt) */
.fancy-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d46d1599, #455a64);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}



/* Shimmer */
.fancy-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shimmer 5s infinite;
    z-index: 1;
    pointer-events: none;
}

/* Button-Text über allem */
.fancy-button span {
    position: relative;
    z-index: 2;
}

/* Hover-Gradient einblenden */
.fancy-button.dark:hover::before {
    opacity: 1;
}

/* Hover-Gradient einblenden */
.fancy-button:hover::before {
    opacity: 0.2;
}

/* Shimmer-Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    20% {
        transform: translateX(100%) skewX(-20deg);
    }
    100% {
        transform: translateX(100%) skewX(-20deg);
    }
}


@media (max-width: 768px) {
    .fancy-button, .fancy-button.dark{
        font-size: 0.6rem;
    }
}
