/* Container Style */
.arrow-container {
  position: relative;
  width: 60px; /* größer für bessere Sichtbarkeit */
  height: 60px;
  background: radial-gradient(circle, #222 30%, #2d2d37 100%); /* subtiler Kreisverlauf */
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(253, 107, 33, 0.6), 0 0 30px rgba(253, 107, 33, 0.4); /* Glow-Effekt */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: pulse 2s infinite; /* sanftes Pulsen */
}

/* Arrow Style */
.arrow {
  font-size: 28px; /* Pfeil leicht vergrößert */
  font-weight: bold;
  color: #fd6b21;
  text-shadow: 0 0 10px rgba(253, 107, 33, 0.7); /* Leuchtender Pfeil */
  transition: transform 0.3s ease, color 0.3s ease; /* sanfte Übergänge */
}

/* Hover-Effekt */
.arrow-container:hover {
  transform: scale(1.1); /* größer bei Hover */
  box-shadow: 0 0 20px rgba(253, 107, 33, 0.8), 0 0 40px rgba(253, 107, 33, 0.5); /* intensiveres Leuchten */
}

.arrow-container:hover .arrow {
  color: #fff; /* Pfeil wird weiß */
  transform: translateY(-5px); /* Pfeil hebt sich leicht */
}

/* Bounce Animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(253, 107, 33, 0.6), 0 0 30px rgba(253, 107, 33, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(253, 107, 33, 0.8), 0 0 40px rgba(253, 107, 33, 0.5);
    transform: scale(1.05);
  }
}






/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    scroll-behavior: smooth;
    z-index: 2;
    background-color: #191919;
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
    padding-left: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #b44cff;
    display: flex;
    justify-content: left;
}

#logotext {
    padding-top: 5px;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 3;
}

.buttons a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    background: #1abc9c; /* Turquoise */
    color: white;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0px 10px 30px rgba(26, 188, 156, 0.7); /* Turquoise glow */
    z-index: 3;
}


.buttons a:hover {
    transform: scale(1.1);
    background: #16a085; /* Slightly darker turquoise */
    z-index: 3;
}

/* Hintergrundanimation - viele schwebende Punkte */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes div {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #00c3ff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(3, 172, 250, 0.7);
    animation: float 8s infinite ease-in-out;
    opacity: 0.6;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Zufällige Startpositionen und mehr Punkte */
.floating-shapes div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(2) {
    top: 20%;
    left: 70%;
    animation-duration: 9s;
}

.floating-shapes div:nth-child(3) {
    top: 50%;
    left: 30%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-duration: 6s;
}

.floating-shapes div:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-duration: 8s;
}

.floating-shapes div:nth-child(6) {
    top: 40%;
    left: 20%;
    animation-duration: 11s;
}

.floating-shapes div:nth-child(7) {
    top: 30%;
    left: 90%;
    animation-duration: 12s;
}

.floating-shapes div:nth-child(8) {
    top: 70%;
    left: 40%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(9) {
    top: 90%;
    left: 60%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(10) {
    top: 80%;
    left: 90%;
    animation-duration: 9s;
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a img {
    width: 25px;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 8px 16px;
    }

    .floating-shapes div {
        width: 10px;
        height: 10px;
    }
}
/* Features Section */
.über-heading {
    padding: 50px 20px;
    text-align: center;
    background-color: #1d1d1d;
}

.über-heading h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.highlight-über {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: white;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.über-content h3 {
    font-size: 1.8rem;
    color: #b44cff;
    margin-top: 20px;
}

h3 {
    color: white;
    text-align: center;
}

.über-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.über-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.über-content ul li {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.über-content ul li::before {
    content: "•";
    color: #b44cff;
    position: absolute;
    left: 0;
    top: 0;
}

/* Features List Section */
#grund-heading {
    padding: 50px 20px;
    background-color: #2e2e2e;
    text-align: center;
}

#grund-heading .Text {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
    background-color: #202020;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#grund-heading .Text br {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .über-heading h2 {
        font-size: 2rem;
    }

    .highlight-über {
        padding: 15px;
    }

    .über-content h3 {
        font-size: 1.5rem;
    }

    .über-content p, .über-content ul li {
        font-size: 1rem;
    }

    #grund-heading .Text {
        font-size: 1rem;
    }
}

/* highlight-features */
.highlight-features {
    padding: 200px 16px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 100px; /* Space between grid items */
    max-width: 1200px; /* Max width for the feature section */
    margin: 0 auto; /* Center the grid */
}

.feature {
    background-color: rgb(35, 35, 35);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Animation effect */  
}

.feature:hover {
    transform: translateY(-15px); /* Raise box on hover */
    box-shadow: 0 10px 20px rgba(180, 76, 255, 0.7); /* Stronger shadow on hover */
}

.new-features {
    background-color: #f7f7f7;
}

.new-features .container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* Scroll Features */
.feature-heading {
    background: rgb(26, 26, 26);
    color: white;
    font-size: larger;
    font-weight: bolder;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

.feature-carousel {
    position: relative;
    text-align: center;
    max-width: 400px; /* Reduzierte Breite für 9:16-Verhältnis */
    margin: 20px auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100% * (16 / 9)); /* Höhe basierend auf 9:16-Verhältnis */
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    min-width: 100%;
    height: auto; /* Automatische Höhe beibehalten */
    object-fit: cover;
    aspect-ratio: 9 / 16; /* Seitenverhältnis festlegen */
}

/* Buttons für Karussell */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.feature-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.feature-item {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    color: white;
    background-color: #212121;
}

.feature-image {
    width: 10%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Grundlegende Tabellenstile */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Grenzen für die Tabelle und die Zellen */
table, th, td {
    border: 1px solid #ddd;
}

/* Padding für Zellen und Textausrichtung */
th, td {
    padding: 8px;
    text-align: left;
}

/* Hintergrundfarbe für die Tabellenüberschrift */
th {
    background-color: rgb(88, 80, 80);
}

/* Responsive Design: Für mobile Geräte */
@media (max-width: 768px) {
    /* Erlaubt horizontalen Scrollbalken auf mobilen Geräten */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Optional: Reduziert die Schriftgröße und den Zeilenabstand für kleine Bildschirme */
    th, td {
        font-size: 14px;
        padding: 6px;
    }
}

#competition-header {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #121212;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(32, 32, 32, 0.1);
}

#competition-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
}

#competition-header p {
    font-size: 1.2rem;
    color: #ffffff;
}

#feature-table {
    color:white;
    background-color: rgb(24, 24, 24);
}

.chart-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.chart-image {
    padding-top: 100px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover-Effekt */
.chart-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Das Modal: Unsichtbar, bis es aktiviert wird */
.modal {
    display: none; /* Standardmäßig versteckt */
    position: fixed; /* Positioniert es immer auf dem Bildschirm */
    z-index: 1; /* Stellt sicher, dass es oben angezeigt wird */
    left: 0;
    top: 0;
    width: 100%; /* Volle Breite */
    height: 100%; /* Volle Höhe */
    overflow: auto; /* Ermöglicht Scrollen, falls nötig */
    background-color: rgba(0, 0, 0, 0.8); /* Halbdurchsichtiger schwarzer Hintergrund */
}

/* Das Bild im Modal */
.modal-content {
    max-width: 100%;
    max-height: 80%;
    margin: auto;
    display: block;
}

/* Der Close-Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #999;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Der Caption-Bereich (Bildbeschreibung) */
#caption {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 10px;
}


/* FAQ-Container */
.faq-section {
    padding: 100px 20px;
    text-align: center;
}

.faq-section h1 {
    color: #00d9ff;
    font-size: 3em;
    margin-bottom: 50px;
    position: relative;
    animation: fadeInDown 1.5s ease;
}

/* FAQ-Boxen */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #161616;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.faq-item {
    margin-bottom: 20px;
    cursor: pointer;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item.active {
    background-color: #1f1f1f;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    color: #00d9ff;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-icon {
    font-size: 1.5em;
    color: #08ceff;
    transition: color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #bbb;
    padding-top: 10px;
}

/* Animationen */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Beschreibung */
.feature-description {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Das Modal (Popup) */
.modal {
    display: none; /* Modal ist standardmäßig versteckt */
    position: fixed;
    z-index: 1000; /* Modal im Vordergrund */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dunklerer, transparenter Hintergrund */
    overflow: auto;
    padding-top: 80px; /* Etwas mehr Abstand vom oberen Rand */
    transition: all 0.3s ease-in-out;
}

/* Modal-Inhalt */
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Schließen-Button */
.close {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #f44336; /* Rot für den Hover-Effekt */
    transform: scale(1.2); /* Schließen-Button wächst bei Hover */
}

/* Suchergebnisse */
#search-results {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

#search-results li {
    padding: 15px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#search-results li:hover {
    background-color: #e1e1e1;
}

/* Suchfeld */
#search-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#search-input:focus {
    border-color: #3f51b5; /* Blaue Farbe beim Fokus */
}

/* Übergänge und Animationen */
.modal-content, .close {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* Fade-In-Animation für das Modal */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Stil für Share-Button */
.share-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #007bff; /* Blaue Farbe für das Share-Icon */
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: 10px;
}

/* Hover-Effekt für das Share-Icon */
.share-btn:hover {
    color: #0056b3; /* Dunkleres Blau beim Hover */
}

/* Container für den Button */
.button-container {
    display: flex;
    justify-content: center;  /* Horizontal zentrieren */
    align-items: center;      /* Vertikal zentrieren */
    height: 13vh;            /* Volle Bildschirmhöhe */
    padding-top: 20px;        /* Etwas Abstand von oben */
}

/* Button Styling */
.search-button {
    padding: 15px 30px;
    border-radius: 30px;
    background: #1abc9c; /* Turquoise */
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0px 10px 30px rgba(26, 188, 156, 0.7); /* Turquoise glow */
}

/* Hover-Effekt */
.search-button:hover {
    transform: scale(1.1);
    background: #16a085; /* Slightly darker turquoise */
}

/* Info Boxes Section */
.info-boxes-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto 2rem auto;
  max-width: 800px;
  z-index: 2;
}

.info-box {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #4a90e2 0%, #8a2be2 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(74, 144, 226, 0.18), 0 1.5px 8px rgba(138, 43, 226, 0.12);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  animation: infoBoxFadeIn 1.2s cubic-bezier(.4,2,.6,1);
}

.info-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.28), 0 3px 16px rgba(138, 43, 226, 0.18);
}

.info-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.info-value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.2rem;
  text-shadow: 0 4px 16px rgba(74, 144, 226, 0.25);
  transition: color 0.3s;
  animation: countUp 1.5s cubic-bezier(.4,2,.6,1);
}

/* Unique color for Burned FT */
.info-box.burned-ft {
  background: linear-gradient(135deg, #ff512f 0%, #dd2476 100%);
}

@keyframes infoBoxFadeIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes countUp {
  0% { color: #fff; filter: blur(4px); opacity: 0.5; }
  80% { color: #fff; filter: blur(0.5px); opacity: 1; }
  100% { color: #fff; filter: blur(0); opacity: 1; }
}

@media (max-width: 700px) {
  .info-boxes-section {
    flex-direction: column;
    gap: 1.2rem;
    max-width: 95vw;
  }
  .info-box {
    padding: 1.5rem 1rem 1.2rem 1rem;
    font-size: 1rem;
  }
  .info-value {
    font-size: 2rem;
  }
}
