body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Schriftart hinzugefügt */
    background-color: #0D0D0D; /* Hintergrundfarbe geändert */
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px 20px 100px; /* Padding angepasst */
    backdrop-filter: blur(10px); /* Hintergrund verschwommen */
    position: sticky; /* Navbar mit dem Viewport mitgehen lassen */
    top: 0;
    z-index: 1000;
}

nav .logo img {
    height: 8vw; /* Dynamische Größe basierend auf der Breite des Viewports */
    max-height: 70px; /* Maximale Höhe für größere Bildschirme */
    min-height: 40px; /* Minimale Höhe für kleinere Bildschirme */
    margin-left: -40px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 16px;
    align-content: center;
}

nav .nav-links li {
    display: inline;
}

nav .nav-links a {
    display: inline-block; /* Required for transform to work */
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    transition: transform 0.3s ease; /* Add transform transition */
}

nav .nav-links a:hover {
    transform: scale(1.1); /* Slightly enlarge the link */
}

nav .language-selector button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
}

nav .dropdown {
    position: relative;
}

nav .dropdown-menu {
    display: none; /* Revert to hiding the dropdown menu by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0D0D0D;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-radius: 9px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 220px;
    padding-bottom: 10px;
    padding-left: 5px;
}

nav .dropdown-menu li {
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    gap: 10px;
    margin-bottom: 10px;
}

nav .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    padding-right: 10px;
    border-radius: 9px;
    width: 180px;
}

nav .dropdown-menu li a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    border: 1.5px solid #444; /* Add border for the frame */
    border-radius: 9px; /* Rounded corners for the frame */
    padding: 5px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

nav .dropdown-menu li a:hover img {
    border-color: #00a000; /* Change border color on hover */
    transform: scale(1.0); /* Slightly enlarge the image on hover */
}

nav .dropdown-menu li a:hover .creepmedia {
    border-color: #7f0dcb !important; /* Change border color on hover */
    transform: scale(1.0); /* Slightly enlarge the image on hover */
}

nav .dropdown-menu li a:hover .creepmusikstudios {
    border-color: #D4AF37 !important; /* Change border color on hover */
    transform: scale(1.0); /* Slightly enlarge the image on hover */
}

nav .dropdown-menu li a:hover .all {
    border-color: #284628 !important; /* Change border color on hover */
    transform: scale(1.0); /* Slightly enlarge the image on hover */
}

nav .dropdown-menu li a:hover {
    background-color: #333;
    border-radius: 9px;
}

nav .dropdown:hover .dropdown-menu {
    display: block; /* Show the dropdown menu on hover */
}

header {
    text-align: left; /* Text linksbündig ausrichten */
    padding: 100px; /* Padding angepasst */
    padding-top: 140px; /* Platz für die feste Navbar */
    margin-top: -70px;
}

header .header-content h1 {
    font-size: 64px;
    margin-bottom: 16px;
    font-family: 'League Spartan', sans-serif; /* Schriftart hinzugefügt */
    font-weight: 900; /* Black-Variante verwendet */
}

header .header-content p {
    font-size: 18px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif; /* Schriftart hinzugefügt */
    color: #D6D6D6;
    line-height: 1.8em;
}

.buttons-full, .buttons-hollow, .buttons-hollow-lila{
    position: relative;
    display: inline-block;
    padding: 16px 17px;
    margin: 0 8px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 11px; /* Abgerundete Ecken hinzugefügt */
    overflow: hidden;
    transition: transform 0.3s; /* Übergang hinzugefügt */
}

.buttons-full {
    background-color: #006400;
    color: #fff;
    border: none;
}

.buttons-gold {
    background: linear-gradient(90deg, #D4AF37 60%, #b8860b 100%);
    color: #111;
    border: none;
}
.buttons-gold:hover {
    background: linear-gradient(90deg, #b8860b 60%, #D4AF37 100%);
}

.buttons-hollow {
    background-color: transparent;
    color: #fff;
    border: 1px solid #006400;
}
.buttons-hollow-lila {
    background-color: transparent;
    color: #fff;
    border: 1px solid #006400;
}

.buttons-full:hover, .buttons-hollow:hover {
    transform: scale(1.05); /* Vergrößerung bei Hover */
}

.buttons-hollow:hover {
    color: #006400; /* Textfarbe bei Hover geändert */
}

.buttons-hollow-lila:hover {
    color: #6453ff; /* Textfarbe bei Hover geändert */
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
    border: 1px solid #006400;
    border-radius: 11px;
}

.dropdown-content a {
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-family: 'Inter', sans-serif;
}

.dropdown-content a:hover {
    background-color: #333;
    border-radius: 11px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

header .header-logos {
    display: flex;
    gap: 16px;
}

header .header-logos img {
    height: 50px;
    margin: 16px 0;
}

.ticker {
    height: 152px;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
    padding-top: 20px;
    padding-bottom: 0px;
}

.ticker::before, .ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.ticker::before {
    left: 0;
    background: linear-gradient(to right, #0D0D0D, transparent);
}

.ticker::after {
    right: 0;
    background: linear-gradient(to left, #0D0D0D, transparent);
}

.ticker-content {
    display: flex;
    align-items: center;
    height: 40%;
    animation: ticker 17s linear infinite;
    justify-content: space-between; /* Gleichmäßige Verteilung der Bilder */
}

.ticker-content img {
    height: 100%;
    flex: 0 0 auto; /* Bilder gleichmäßig verteilen */
    margin: 0 20px; /* Abstand zwischen den Bildern vergrößert */
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.blurry-gradient {
    position: fixed;
    top: 0;
    right: 0;
    width: 1500px;
    height: 600px;
    z-index: -1; /* Hinter anderen Elementen */
    border-radius: 0% 32% 50% 80%;  
    filter: blur(100px);
    background: radial-gradient(circle at 50% 50%, #006400, rgba(76, 0, 255, 0));
    opacity: 0.2;
}

.blurry-gradient-creepmedia {
    position: fixed;
    top: 0;
    right: 0;
    width: 1500px;
    height: 600px;
    z-index: -1; /* Hinter anderen Elementen */
    border-radius: 0% 32% 50% 80%;  
    filter: blur(100px);
    background: radial-gradient(circle at 50% 50%, #5830ea, rgba(76, 0, 255, 0));
    opacity: 0.2;
}

.blurry-gradient-gold {
    position: fixed;
    top: 0;
    right: 0;
    width: 1500px;
    height: 600px;
    z-index: -1; /* Hinter anderen Elementen */
    border-radius: 0% 32% 50% 80%;  
    filter: blur(100px);
    background: radial-gradient(circle at 50% 50%, #D4AF37, rgba(212, 175, 55, 0));
    opacity: 0.2;
}

footer {
    padding: 100px;
    display: flex;
        justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto; /* Zentrierung des Footers im Viewport */
}

.footer-left {
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    align-items: flex-start; /* Links ausrichten */
    gap: 10px; /* Abstand zwischen den Elementen */
}

.footer-left .logo-and-name {
    display: flex; /* Logo und Name nebeneinander anordnen */
    align-items: center; /* Vertikale Ausrichtung */
    gap: 10px; /* Abstand zwischen Logo und Name */
    margin-bottom: 20px;
}

.footer-left img {
    height: 50px;
    margin-bottom: 0; /* Entferne zusätzlichen Abstand */
}

.footer-left h2 {
    font-size: 18px;
    margin: 0; /* Entferne zusätzlichen Abstand */
}

.footer-left button {
    background-color: #006400;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.footer-left button:hover {
    background-color: #004d00;
}

.footer-right {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 20px;
    margin-left: 20px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.person{
    gap: 10px;
    align-items: center;
}

.about-section {
    text-align: center;
    padding-left: 90px;
    padding-right: 90px;
    margin-top: 0px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
/* --- Marco Rey Page: Hero + Platform Cards + Social/Contact --- */
.hero-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: center;
    padding: 80px 20px;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
.hero-content h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 42px;
    margin: 0 0 12px 0;
    color: #fff;
}
.hero-content p {
    color: #d6d6d6;
    margin-bottom: 18px;
    line-height: 1.6;
}
.hero-cta { /* small wrapper for the two CTA buttons */
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.platforms-grid, .studio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    align-items: start;
    justify-items: center;
    width: 100%;
    margin-top: 12px;
}
.platform-card, .studio-card-small {
    background: linear-gradient(180deg, #121212, #0f0f0f);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    width: 100%;
    max-width: 220px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(212,175,55,0.06) inset;
    border-color: rgba(212,175,55,0.12);
}
.platform-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.platform-card img {
    height: 38px;
    width: auto;
    opacity: 0.98;
    transition: transform 180ms ease, opacity 180ms ease;
}

.platform-card .amazonmusic-logo {
    height: 52px;
    width: auto;
    opacity: 0.98;
    transition: transform 180ms ease, opacity 180ms ease;
}

.platform-card h3 {
    font-size: 14px;
    margin: 2px 0 6px 0;
    color: #fff;
    font-weight: 600;
}
.platform-card .buttons-full {
    padding: 6px 12px;
    font-size: 13px;
}
.platform-card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}
.platform-card-header {
    margin-top: 4px;
}
.platform-card-footer {
    margin-top: 6px;
}
.platform-card .platform-amazon img {
    height: 38px; /* Slightly smaller for Amazon branding */
}

.artist-cards { /* reuse existing type but ensure better spacing */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-item img {
    height: 160px;
}

.contact-form input, .contact-form textarea {
    background: rgba(26,26,26,1);
    border: 1px solid rgba(255,255,255,0.04);
}

/* responsive rules for small screens */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 20px;
    }
    header { padding-top: 110px; padding-left: 20px; padding-right: 20px; }
    .hero-content h1 { font-size: 34px; }
    .platforms-grid, .studio-cards { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
    .gallery-item img { height: 140px; }
}

/* small utility tweaks */
.text-muted { color: #bfbfbf; }

.footer-creator {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-creator img {
    height: 18px;
    width: 18px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
    padding-right: 60px;
    padding-left: 60px;

}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #D6D6D6;
    margin-bottom: 20px;
    margin-top: 20;
}

.about-section strong {
    color: #fff;
}

.studios-section {
    max-width: 200%;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.studios-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.studios-section p {
    font-size: 16px;
    color: #D6D6D6;
    margin-bottom: 40px;
}

.studio-cards {
    display: flex;
    justify-content: center; /* Center all cards */
    gap: 20px;
    flex-wrap: wrap;
    max-width: 200%; /* Adjust width for better centering */
    margin: 0 auto; /* Center the section */
    margin-bottom: 20px;
}

.studio-card {
    position: relative; /* Ensure tooltip is positioned relative to the card */
    background-color: #0F0F0F;
    border-radius: 10px;
    border: 0.01px solid #2d2d2d; /* Weißer Rand viel dünner gemacht */
    height: 300px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: default; /* Ensure the default cursor is visible */
}

.studio-card::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 50%, #00a000, rgba(0, 0, 0, 0));
    opacity: 0;
    border-radius: 50%;
    filter: blur(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.studio-card:hover::after {
    opacity: 0.6;
    transform: translate(30px, 30px);
}

.tooltip {
    position: fixed; /* Use fixed positioning for global cursor tracking */
    background-color: #00310096;
    color: #fff;
    border: 1px solid #006400; /* Changed border to 1px */
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none; /* Prevent tooltip from interfering with cursor */
    opacity: 0;
    visibility: hidden; /* Ensure tooltip is hidden initially */
    transition: opacity 0.7s ease-in, visibility 0.2s ease-in; /* Faster disappearance */
    z-index: 1000; /* Ensure tooltip is above other elements */
}

.studio-card:hover .tooltip {
    opacity: 1;
    visibility: visible; /* Make tooltip visible on hover */
}

.studio-card-header {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

.studio-card-header h3 {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 0;
}

.studio-card-body {
    display: flex; /* Flexbox für Zentrierung */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
    height: 100%; /* Sicherstellen, dass der Container die gesamte Höhe einnimmt */
}

.studio-card-body img {
    max-width: 230px; /* Bildgröße anpassen */
    max-height: 100%; /* Bildgröße anpassen */
    object-fit: contain; /* Bild proportional skalieren */
    transition: transform 0.5s ease; /* Smooth transition for scaling */
}

.studio-card:hover .studio-card-body img {
    transform: scale(1.05, 1.1); /* Slightly stretch in width first, then height */
}

.artists-section {
    max-width: 200%;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.artists-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.artists-section p {
    font-size: 16px;
    color: #D6D6D6;
    margin-bottom: 40px;
}

.artist-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 1200px;
}

.artist-card {
    background-color: #0F0F0F;
    border-radius: 10px;
    border: 0.01px solid #2d2d2d;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: scale(1.05);
}

.artist-card-body {
    height: 200px;
    overflow: hidden;
}

.artist-card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card-header {
    padding: 15px;
}

.artist-card-header h3 {
    font-size: 18px;
    margin: 0 0 5px;
    font-family: 'Inter', sans-serif;
}

.artist-card-header p {
    font-size: 14px;
    color: #D6D6D6;
    margin: 0;
}

.artist-card-footer {
    padding: 15px;
    text-align: center;
}

.artist-card-footer a {
    text-decoration: none;
}

.artist-card-footer .buttons-full {
    background-color: #D4AF37;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.artist-card-footer .buttons-full:hover {
    background-color: #B8860B;
}

.team-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #0D0D0D;
    color: #fff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.team-section p {
    font-size: 16px;
    color: #D6D6D6;
    margin-bottom: 40px;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-card {
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    font-family: 'Inter', sans-serif;
}

.team-card p {
    font-size: 14px;
    color: #D6D6D6;
    margin-bottom: 10px;
}

.faqs-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #0D0D0D;
    color: #fff;
}

.faqs-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.faqs-section p {
    font-size: 16px;
    color: #D6D6D6;
    margin-bottom: 40px;
}

.faq-items {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1A1A1A;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #444;
}

.faq-toggle {
    color: #00a000;
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #1A1A1A;
    padding: 0 20px;
    font-size: 14px;
    color: #D6D6D6;
    line-height: 1.6;
}
