<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Allgemeine Stile */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Wrapper fÃ¼r den gesamten Seiteninhalt */
.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hauptinhalt */
.main-content {
    flex: 1; /* FÃ¼llt den verfÃ¼gbaren Platz */
    padding-bottom: 20px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto; /* Zentriert den Inhalt horizontal */
    padding: 0 20px; /* FÃ¼gt etwas Padding auf den Seiten hinzu */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 20px;
}

header .logo h1 {
    margin: 0;
    display: none;
}

.logo a {
  width: 200px;
  height: 40px;
  display: block;
  background-image: url(./img/logo.png);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Suchleiste */
.search-bar {
    position: relative;
}

.search-bar input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 200px; /* StandardgrÃ¶ÃŸe der Suchleiste */
    transition: width 0.4s ease-in-out; /* Weiche Transition */
}

.search-bar input:focus {
    width: 400px; /* VergrÃ¶ÃŸert die Suchleiste beim Fokussieren */
    outline: none;
}

/* Hero Section */
.hero {
    background: #663399;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.cta-button, .cta_grey {
    background-color: #ff6600;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    display: inline-block;
}

.cta-msg {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Remix Grid */
.remix-grid {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
    line-height: 1.5;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamische Anpassung fÃ¼r volle Breite */
    gap: 20px;
    width: 100%;
}

.grid-item {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    width: 100%; /* Immer 100% Breite */
    box-sizing: border-box;
    justify-items: center; /* Horizontale Ausrichtung */
    align-items: center; /* Vertikale Ausrichtung */

    /* Flexbox fÃ¼r zentrierte Ausrichtung */
   display: flex;
   justify-content: center; /* Horizontale Ausrichtung */
   align-items: center; /* Vertikale Ausrichtung */
   flex-direction: column; /* Stellt sicher, dass der Inhalt untereinander gestapelt wird */
}

.grid-item img {
    width: 100%;
    border-radius: 10px;
}

.grid-item a {
  color: #000000;
  text-decoration: none;
}

.grid-item a:hover {
  text-decoration: underline;
}

.play-button, .download-button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #ff6600;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}


/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a,
footer a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover,
footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Allgemeine Stile fÃ¼r das Formular */
.styled-form {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.styled-form-without-deco {
  box-shadow: none !important;
  background: none;
  border-radius: none;
  padding: 0;
}

.styled-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form input[type="password"],
.styled-form textarea,
.styled-form select {
    width: 93%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.styled-form input[type="text"]:focus,
.styled-form input[type="email"]:focus,
.styled-form input[type="password"]:focus,
.styled-form textarea:focus,
.styled-form select:focus {
    border-color: #ff6600;
    outline: none;
}

.styled-form textarea {
    height: 150px;
    resize: vertical;
}

/* Checkboxen und Radiobuttons */
.styled-form input[type="checkbox"],
.styled-form input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

/* Buttons */
.styled-form button, .styled-form input[type="submit"] {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.styled-form button:hover {
    background-color: #e65c00;
}

.styled-form button:active {
    background-color: #cc5200;
}

/* Login Section */
.login-section {
    background-color: #f4f4f4;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Full height minus header height */
}

.login-form {
    max-width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.login-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #ff6600;
    outline: none;
}

.login-form button {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.login-form button:hover {
    background-color: #e65c00;
}

.login-form p {
    margin-top: 20px;
    font-size: 14px;
}

.login-form p a {
    color: #ff6600;
    text-decoration: none;
}

.login-form p a:hover {
    text-decoration: underline;
}

/* User Dashboard Section */
.user-dashboard {
    padding: 10px 20px;
    background-color: #dddddd;
    text-align: center; /* Zentriert den Inhalt */
}

.user-actions h2 {
    font-size: 24px; /* Kleinere SchriftgrÃ¶ÃŸe fÃ¼r den Titel */
    margin: 0;
    color: #333;
    padding-top: 6px;
    padding-right: 20px;
}

.user-actions p {
    font-size: 16px; /* Kleinere SchriftgrÃ¶ÃŸe fÃ¼r Benutzerinfo */
    margin: 0; /* Weniger Margin fÃ¼r eine kompaktere Darstellung */
}

.user-actions {
    display: flex;
    justify-content: center; /* Zentriert die SchaltflÃ¤chen */
    flex-wrap: nowrap; /* Verhindert das Umwickeln */
}

.user-actions .cta-button, .grid-item .cta-button, .user-actions .cta-grey {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 15px; /* Kleinere Polsterung fÃ¼r eine schmalere SchaltflÃ¤che */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 0 5px; /* Kleiner Abstand zwischen den SchaltflÃ¤chen */
    cursor: pointer;
}

.user-actions .cta-button:hover, .grid-item .cta-button:hover {
    background-color: #e65c00;
}

.grid-item .cta-button {
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: 80%;
}

.cta-grey {
  background-color: #777777 !important;
}

a.reporterror {
  background-color: #ffffff;
  color: #c20a12;
  padding: 10px 15px; /* Kleinere Polsterung fÃ¼r eine schmalere SchaltflÃ¤che */
  border: 1px solid #c20a12;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 5px; /* Kleiner Abstand zwischen den SchaltflÃ¤chen */
  width: 80%;
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: 80%;
}

.searchresult {
  display: block;
  padding: 5px;
  margin: 5px;
}

.searchresult_v2 {
  border: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
  border-radius: 4px;
  min-width: 100%;
  display: inline-block !important;
  font-size: 20px;
}

a.searchresult_v2:hover {
  text-decoration: none;
  background: #F8F8FF;
}

h2 {
  margin: 0;
}

span.genre {
  font-weight: bold;
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
}

span.rating {
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 3px;
  border: 1px solid #dbd400;
  color: #dbd400;
  display: block;
  float: left;
  margin-right: -60px;
}

.pages_list a {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 3px 6px;
  margin-left: 2px;
}

.pages_list a.active {
  background-color: #ddd;
}

#cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

#cookie-banner button {
    background: #007BFF;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.blink {
  animation: blinker 2s linear infinite;
}


.optimized_for_desktop {
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  font-size: 10px;
  display: none;
}

.chartvote {
  padding: 5px 0px;
  margin: 5px 0px;
  background: #F9F9F9;
  width: 100%;
  min-height: 80px;
}

.chartvote b, .searchresult_v2 b {
  display: block;
  height: auto;
  float: left;
  background: #e65c00;
  color: #fff;
  padding: 10px;
  font-size: 14px;
}

.chartvote div {
  float: left;
  text-align: left;
  padding: 5px;
}

.clear {
  clear: both;
}

#adblock-message {
  display: none;
  margin-bottom: 20px;
}

#adblock-message .grid-item {
  background: #c20a12;
  color: #fff;
  padding: 5px;
  font-weight: bold;
}

#notification-box {
  background: #F5F5F5;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}

#notification-box a {
  color: #000;
  text-decoration: none;
}

.notification-header {
  max-width: 500px;
  margin: auto;
}

a.mark-all-read {
  float: right;
}

.notification-list a, .notification-list p {
  display: block;
  max-width: 500px;
  margin: auto;
}

.notification-list a {
  border: 2px solid #dddddd;
  border-bottom: 3px solid #dddddd;
  background: #fff;
  font-size: 14px;
  margin: 15px auto;
  text-align: center;
}

.notification-list a span {
  display: block;
  padding: 10px;
}

.notification-list p {
  padding: 5px;
  text-align: center;
}

.badge {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: inline-block;
  margin-right: 10px;
}

.rating-stars table tr td {
  padding: 15px;
  font-weight: bold;
}

.rating-star-icon {
  color: #dbd400;
  font-size: 30px;
}

.rating-stars label {
  padding: 5px;
}

#showmobile {
  display: none;
}

#usermenu_mobile {
  padding: 10px;
}

.goto_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  min-width: 50%;
  background: #111111;
  text-decoration: none;
  color: #fff !important;
  border-radius: 5px;
  padding: 25px;
}

.goto_link span {
  font-weight: bold;
  font-size: 1.5em;
}

i.goto_i {
  color: #aaa !important;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.7em;
}
</pre></body></html>