*{
  box-sizing: border-box;
  padding: 0px;
}
body{
  background-color: black;
}
.container{
  display: grid;
}
.navmain{
  margin-top: 10px;
}
.studio-title{
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem; 
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: #ffffff;
}
#default-carousel {
    margin-top: 0px;
    padding-top: 0;
}
.mb-6{
  color: white;
}
.news-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
  justify-content: center;
  gap: 1.5rem;      
  margin-top: 5rem; 
}
.footer{
  margin-top: 100px;
}
.footer a, 
.footer span, 
.footer li {
  color: #cccccc;
}
.footerspn{
  color: white;
}
.timeline{
  margin-top: 100px;
}
.timelinetext{
  color: white;
}
.timeline-red-title {
    color: #dc2626 !important;
}
.timeline-white-text {
    color: #ffffff !important;
}
.timeline div.bg-neutral-quaternary {
    background-color: #404040 !important; 
}
.timeline-white-text:hover {
    color: #ffffff !important;
}
/* Grund-Layout */
body {
    background-color: #000000 !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 10px 20px 40px 20px; /* Minimaler Abstand nach oben */
}

.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Das Grid-System */
.cyber-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 5px;
}

@media only screen and (min-width: 35em) {
    .cyber-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 64em) {
    .cyber-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.cyber-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 60px;
}

/* Der "Abhebe-Effekt" mit rotem Neon-Glow */
.cyber-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.15);
}

/* Bild-Container mit Zoom-Effekt beim Hover */
.cyber-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.cyber-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cyber-card:hover .cyber-img {
    transform: scale(1.05); /* Bild zoomt minimal rein */
}

/* Stilvolles Genre-Tag oben rechts */
.cyber-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    border: 1px solid #333;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text-Inhalt */
.cyber-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

/* Ein kleiner roter Design-Strich links neben dem Titel */
.cyber-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    width: 3px;
    height: 20px;
    background-color: #dc2626;
    transition: height 0.3s ease;
}

.cyber-card:hover .cyber-content::before {
    height: 35px; /* Strich wächst beim Hover */
}

/* Titel - Edel, Fett, Rot */
.cyber-title {
    color: #dc2626;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    padding-left: 10px; /* Platz für den roten Strich */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Beschreibungstext - Minimal abgedunkeltes Weiß für bessere Lesbarkeit */
.cyber-desc {
    color: #e5e5e5;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 10px;
}




/* Container-Verbindung zu deiner restlichen Seite */
.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Einfaches, responsives Grid (1 Spalte mobil, 3 auf Desktop) */
/* Mobil-First: Standardmäßig auf dem Handy alles untereinander */
.gamepass-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    margin-top: 10px;
}

/* Ab Tablet-Größe oder PC (ab 768px Breite) schön nebeneinander */
@media only screen and (min-width: 48em) {
    .gamepass-grid {
        grid-template-columns: repeat(3, 1fr); /* Genau 3 Spalten nebeneinander */
    }
}

/* Die Gamepass-Karte im dunklen Design */
.pass-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s ease;
}

/* Hover-Effekt: Karte hebt sich ab und glüht rot */
.pass-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.15);
}

/* Option: Die mittlere Karte dauerhaft hervorheben */
.pass-card.featured {
    border-color: #dc2626;
    background: #121212;
}

/* Oberer Bereich der Karte */
.pass-header {
    padding: 25px;
    background: #050505;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
}

/* Abzeichen (Core, Beliebt, Elite) */
.pass-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    border: 1px solid #333;
    padding: 2px 6px;
}

.pass-badge.hot {
    color: #ffffff;
    background: #dc2626;
    border-color: #dc2626;
}

/* Titel und Preis */
.pass-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 15px 0 5px 0;
    text-transform: uppercase;
}

.pass-price {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 800;
}

.pass-price span {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Inhaltsbereich & Features */
.pass-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pass-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pass-features li {
    color: #e5e5e5;
    font-size: 0.95rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

/* Kleiner roter Punkt vor jedem Feature */
.pass-features li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #dc2626;
}

/* Cyber-Button unten */
.pass-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333;
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pass-card:hover .pass-btn,
.pass-card.featured .pass-btn {
    background: #dc2626;
    border-color: #dc2626;
}

.pass-btn:hover {
    background: #b91c1c !important;
}





/* Container */
.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Haupt-Grid für die About-Sektion */
.about-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobil: Alles untereinander */
    gap: 40px;
    margin-top: 20px;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 40px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

/* Ab PC-Größe (768px): Text links (2 Teile), Stats-Box rechts (1 Teil) */
@media only screen and (min-width: 48em) {
    .about-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* --- LINKE SPALTE: STORY --- */
.about-subtitle {
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.about-title {
    color: #dc2626; /* Dein Cyber-Rot */
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 25px 0;
    letter-spacing: 0.5px;
}

.about-text {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text strong {
    color: #ffffff;
    border-bottom: 1px solid #dc2626;
}

/* --- RECHTE SPALTE: STATS-BOX --- */
.about-stats-box {
    background: #050505;
    border-left: 3px solid #dc2626; /* Roter Design-Strich links */
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-title {
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.stat-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

.stat-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.stat-value {
    color: #e5e5e5;
    font-size: 1.05rem;
    font-weight: 600;
}





/* Sektions-Abstände */
.partners-section {
    margin-top: 50px;
    padding: 20px 0;
}

.partners-subtitle {
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.partners-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
}

/* Grid-System: Mobil 1 Spalte, ab PC (768px) 3 Spalten nebeneinander */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media only screen and (min-width: 48em) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Die Partner-Karte */
.partner-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    transition: all 0.3s ease;
}

/* Hover-Effekt: Roter Rand beim Drüberfahren */
.partner-card:hover {
    border-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.1);
}

/* Bildbereich: Quadratisch und zentriert (perfekt für Logos) */
.partner-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #1a1a1a;
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8); /* Macht Logos standardmäßig edel grau */
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-img {
    filter: grayscale(0%) brightness(1); /* Zeigt Originalfarben beim Hover */
}

/* Partner-Text-Bereich */
.partner-info {
    padding: 20px;
    text-align: center;
}

.partner-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.partner-desc {
    color: #dc2626; /* Dein Cyber-Rot für die Beschreibung */
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}
