:root {
    --neon-pink: #ff1984;
    --neon-blue: #00b4ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #f8f8f8;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.logo {
    max-height: 60px;
    
}

h2, .track-title {
    text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-blue);
}

.track-tile {
    border: 1px solid rgba(0, 180, 255, 0.3);
    box-shadow: 0 0 12px rgba(0, 180, 255, 0.2), 0 4px 20px rgba(255, 25, 132, 0.2);
}

.track-tile:hover {
    box-shadow: 0 0 20px rgba(255, 25, 132, 0.5), 0 0 25px rgba(0, 180, 255, 0.3);
}

.btn {
    background: var(--neon-pink);
    color: white;
    text-shadow: 0 0 4px white;
    box-shadow: 0 0 10px var(--neon-pink);
}
.btn:hover {
    background-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.album-art {
    box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-pink);
}

.current-track-info {
  display: flex;
  align-items: center;
  gap: 20px;
    margin-left: auto;
  margin-right: auto;

  width: 90%;
  max-width: 90%;
  flex: 0 0 90%;
}

.current-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

:root {
  --pink: #ff1984;
  --blue: #00b4ff;
  --dark: #0a0a0a;
  --light: #f8f8f8;
  --card-bg: #111;
  --highlight: #1a1a1a;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--dark);
  color: var(--light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

header {
  text-align: center;
  margin-bottom: 15px;
}

.logo {
  max-height: 159px;
  
}

h2 {
  color: var(--pink);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.btn {
  background-color: var(--pink);
  border: none;
  padding: 4px 12px;
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px var(--pink);
  transition: 0.3s ease;

}
.btn:hover {
  background-color: var(--blue);
  box-shadow: 0 0 15px var(--blue);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.track-tile {
	display: grid;
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--highlight);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}


.track-cover {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.track-number {
	display: none;
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--blue);
  color: white;
  padding: 4px 8px;
  border-radius: 50%;
  font-weight: bold;
}

.track-info {
  padding: 15px;
}
.track-title {
	margin-top: 10px;
	width: 100%;   
  font-size: 16px;
  font-weight: bold;
  color: var(--pink);
    position: relative;
  overflow: hidden;
  white-space: nowrap;
    height: 24px;            /* Höhe fixieren, z. B. passend zum Text */
  line-height: 24px;       /* vertikal zentrieren */
}

.track-title span {
  position: absolute;
  white-space: nowrap;
  will-change: transform;

}
.track-title.scroll span {
  animation: marquee 10s linear infinite;
  animation-delay: 5s; /* optional */
}
/* Die eigentliche Bewegung */
@keyframes marquee {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-70%);
  }
}
.track-artist {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 10px;
}
.track-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #ccc;
}
.track-duration {
  color: var(--blue);
}
.track-stat {
  margin-left: 8px;
}

footer {
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  font-size: 9px;
  color: #333;
  border-top: 1px solid var(--highlight);
}

.now-playing {
position: fixed;
bottom: 0;
z-index: 2000;
width: 90%;
background-color: #181818;
padding: 8px 0 1px 0;
margin-top: 5px;
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 0px;

/* Sichtbarer Glanz & Tiefe */
box-shadow:
  inset 0 2px 4px rgba(255, 255, 255, 0.08),  /* heller Glanz oben */
  0 0 10px rgba(255, 25, 132, 0.3),           /* pinker Glow */
  0 6px 20px rgba(0, 0, 0, 0.5);              /* tiefer dunkler Schatten */

background-image: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(0,0,0,0.1));


}
.current-title {
  font-weight: bold;
  font-size: 18px;
}
.current-artist {
  font-size: 14px;
  color: #aaa;
}
.album-art {
margin: 3px;
  width: 65px;
  height: 65px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 0 3px rgba(0,180,255,0.4);
  flex: 0 0 65px !important;
}
.player-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.control-btn {
  background: var(--highlight);
  color: var(--light);
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}
.control-btn:hover {
  background-color: var(--blue);
}
.play-btn {
  background-color: var(--pink);
}

/* NEON-EFFEKTE */
h2, .track-title {
  text-shadow: 0 0 5px var(--pink), 0 0 10px var(--pink), 0 0 20px var(--blue);
}
.track-tile {
  border: 1px solid rgba(0, 180, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 180, 255, 0.2), 0 4px 20px rgba(255, 25, 132, 0.2);
}
.track-tile:hover {
  box-shadow: 0 0 20px rgba(255, 25, 132, 0.5), 0 0 25px rgba(0, 180, 255, 0.3);
}
.btn {
  text-shadow: 0 0 5px white;
}
.logo {
  
}
.album-art {
  box-shadow: 0 0 10px var(--blue), 0 0 15px var(--pink);
}
footer {
  text-shadow: 0 0 5px var(--blue);
}

/* Buttons kleiner auf kleineren Geräten */
@media (max-width: 480px) {
    .button-container .btn {
        padding: 8px 12px;
        font-size: 13px;
        flex: 1 1 auto;
    }
}

/* 3-Kachel-Layout */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .tracks-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 600px) {
    .tracks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tracks-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 400px) {
    .tracks-grid {
        grid-template-columns: 1fr;
    }
}

.track-cover {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.track-tile {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: GRID;
    flex-direction: column;
}

.tracks-grid {
    gap: 1rem;
}

.track-tile {
    transform: scale(0.95);
    margin: auto;
}

.track-cover {
    flex: 1;
    aspect-ratio: 1 / 1 !important;
    height: auto;
    background-size: cover;
    background-position: center;
}

.fixed-player {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Sicherstellen, dass auf Smartphones zwei Kacheln nebeneinander bleiben */
@media (max-width: 480px) {
  .tracks-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.bars {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 30px;
  margin: 0; /* Kein Margin unten */
  z-index: 5; /* Damit es über dem Hintergrund liegt */
}



.bar {
  width: 6px;
  height: 8px;
  background: #39ff14;
  border-radius: 3px;
  animation: pulse 1s ease-in-out infinite;
  animation-play-state: paused;
}

.bar:nth-child(2) {
  animation-delay: 0.1s;
}
.bar:nth-child(3) {
  animation-delay: 0.2s;
}
.bar:nth-child(4) {
  animation-delay: 0.3s;
}
.bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% { height: 8px; }
  50% { height: 24px; }
}

.filter-area {
position: sticky;
top: 0;

  left: 0;
  width: 100%;
  background: #111;
  padding: 5px 10px;
  z-index: 3999;
  border-top: 1px solid #ff69b4;

  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0px;

}
 .dropdownright {

  right: 0;
 
}


.filter-block {

  position: relative;
  display: inline-block;
}

.filter-title {
  color: #ff1984;
  font-size: 11px;
  margin-bottom: 3px;
  font-weight: bold;
  margin-left: 6px;
}

.filter-button {
  background-color: #111;
  color: #fff;
  border: 1px solid #ff1984;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease;
}

.filter-button:hover {
  background-color: #ff1984;
  color: #000;
}

.arrow svg {
  fill: currentColor;
}

.dropdown {
  position: absolute;
  top: 100%;     /* Statt top */

  background: #111;
  border: 1px solid #ff1984;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 6px; /* Abstand zum Button */
  box-shadow: 0 0 10px #ff1984;
  min-width: 160px;
  z-index: 3300;
    max-height: 70vh;           /* Maximal halbe Bildschirmhöhe */
  overflow-y: auto;           /* Scrollbar nur bei Bedarf */
  scrollbar-width: thin;      /* Optional für Firefox */

}
.dropdownleft {
 
  left: 0;
 

}

.dropdown-btn {
  background: #222;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px;
  margin: 4px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-btn:hover {
  background: #ff1984;
  color: black;
}

.dropdown-btn.active {
  background: #39ff14;
  color: black;
}

.filter-area {

}

.filter-block {
  position: relative;
  flex: 1; /* verteilt gleichmäßig */
  min-width: 0;
}

.filter-button {
  width: 100%; /* volle Breite im Block */
  padding: 4px 8px; /* etwas kompakter */
  font-size: 12px;
}
.cover-time {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background-color: black;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.install-btn {
  background: #ff2fa0;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 20px;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 0 12px 0 #ff2fa088;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s, box-shadow 0.3s;
  outline: none;
  z-index: 10;
  animation: pulse-btn 1.5s infinite alternate;
}
@keyframes pulse-btn {
  0% { box-shadow: 0 0 12px 0 #ff2fa066; transform: scale(1); }
  100% { box-shadow: 0 0 24px 4px #ff2fa0aa; transform: scale(1.07); }
}
.install-modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-modal-content {
  background: #181818;
  color: #fff;
  border-radius: 12px;
  padding: 2em 2em 1.5em 2em;
  box-shadow: 0 0 32px #000b;
  min-width: 280px;
  text-align: center;
  position: relative;
}
.close-btn {
  background: none;
  color: #ccc;
  border: none;
  font-size: 1em;
  margin-left: 10px;
  margin-top: 20px;
  cursor: pointer;
}
.close-btn:hover {
  color: #ff2fa0;
}
.button-leiste {
  display: flex;
  gap: 5px;
  justify-content: left;
  margin-bottom: 5px;
    box-sizing: border-box;    /* padding mit einrechnen */
  padding: 5px 0;           /* vertikaler Abstand */
  margin: 0;                 /* kein ungewollter Außenabstand */
  background: #111;          /* optional Hintergrund */

}

.tab-button {
  background-color: #333;
  color: #aaa;
  border: 1px solid #ff1984;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tab-button.active {
  background-color: #ff1984;
  color: #fff;
}

.inhalt-box {
  background: #111;
  color: #fff;
  padding: 10px;

  border-radius: 6px;
  text-align: center;
}
 .button-container {
  width: 100%;
  display: block;
}

.radio-start-button {
  background-color: #ff1984;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 25, 132, 0.4);
}

.radio-start-button:hover {
  background-color: #e01170; /* Etwas dunkler beim drüberfahren */
}

.radio-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 99vw;
  height: 99vh;
  background: url('back.png') no-repeat center center;
  background-size: cover;
  z-index: 5001;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  border: 2px solid #ff1984; /* Neon-Rand */
  box-shadow: 0 0 15px #ff1984;
   overflow: hidden;         /* verhindert überlaufende Inhalte */
  box-sizing: border-box;   /* damit Border nicht die Größe sprengt */
}

.radio-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.radio-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.radio-close-button {
  background-color: #ff1984;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 25, 132, 0.4);

  position: absolute; /* Neu: Absolut im Overlay positioniert */
  bottom: 100px;        /* Abstand vom unteren Rand */
}


.radio-close-button:hover {
  background-color: #e01170;
}

.fav-button {

margin-top: 5px;
  background-color: #444;
  color: white;
  border: 1px solid #00A650;         /* <<< Rahmen hinzugefügt */
  font-size: 15px;
  padding: 0px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1000;
  opacity: 1;
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
 


}


.fav-button.favorit {
  background-color: #00aadd;
  color: yellow;
}

.fav-button.fav-active {
  background-color: #00aadd;
  color: yellow;
}

.player-controls-svg {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 5px 0;
}

.svg-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  color: #ff1984;
}

.svg-btn:hover {
  background-color: rgba(255, 25, 132, 0.15);
}

.svg-btn svg {
  width: 20px;
  height: 28px;
  fill: currentColor;
}

.now-playing-bgc {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    transition: background-image 0.3s, opacity 0.3s;
}


.now-playing-bgc {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    transition: background-image 0.3s, opacity 0.3s;
}
.now-playing-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    transition: background-image 0.3s, opacity 0.3s;
}


.now-playing-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    transition: background-image 0.3s, opacity 0.3s;
}

   /* Modal Overlay Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 4200;
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background-color: #050505;
        border-radius: 12px;
        padding: 30px;
        width: 80%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        border: 1px solid #ff1984;
        box-shadow: 0 0 25px rgba(255, 25, 132, 0.4);
        position: relative;
    }

    .modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 25, 132, 0.3);
    }

    .modal-title {
        color: #ff1984;
        font-size: 24px;
        font-weight: 600;
    }

    .modal-body {
        line-height: 1.6;
        color: #f8f8f8;
        margin-bottom: 25px;
    }

    .modal-close-btn {
        background-color: #ff1984;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: block;
        margin: 0 auto;
        box-shadow: 0 0 15px rgba(255, 25, 132, 0.5);
    }

    .modal-close-btn:hover {
        box-shadow: 0 0 25px rgba(255, 25, 132, 0.8);
        transform: translateY(-2px);
    }

    .footer-links {
        text-align: center;
        margin-top: 0px;
    }

    .footer-link {
        color: #00b4ff;
        text-decoration: none;
        font-size: 9px;
        transition: color 0.2s ease;
        margin: 0 5px;
    }

    .footer-link:hover {
        color: #ff1984;
        text-decoration: underline;
    }
	
	.zweispalten {
  display: flex;
   align-items: stretch;
}
.spalte3 {
  width: 30px;
  height: 100%;               /* gleiche Höhe wie der Eltern-Container */
  background-color: #ff3e80;
  display: flex;
  flex-direction: column;     /* Kinder untereinander */
  flex-shrink: 0;
  flex-grow: 0;
display: inline-block;
text-align: center;
line-height: normal; /* optional zur Sicherheit */
}

.spalte1 {
  width: 95px;
  flex-shrink: 95px;
 
}

.spalte2 {
  flex: 1; /* nimmt den restlichen Platz ein */
  min-width: 0; /* wichtig für Flexbox, damit Inhalte umbrechen dürfen */
}


.current-title {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 24px;
  line-height: 24px;
}

.current-title .inner {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
}

.current-title.scroll .inner {
  animation: marquee 10s linear infinite;
  animation-delay: 1s;
}

.emoji-reaction-container {
  display: flex;
  justify-content: center; /* zentriert horizontal */
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--light-text);
  opacity: 0.85;
}

.emoji-help {
  cursor: pointer;
  font-size: 18px;
  color: var(--neon-blue);
  transition: color 0.2s;
}
.emoji-help:hover {
  color: var(--neon-pink);
}

.emoji-label {
  font-weight: normal;
  font-size: 13px;
  opacity: 0.75;
  letter-spacing: 0.5px;
}

.emoji-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.emoji-img {
  width: 26px;
  height: 26px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 0 2px #000);
}

.emoji-img:hover {
  opacity: 0.75;
  transform: scale(1.1);
}

.emoji-img.active {
  opacity: 1;
  outline: 1px solid var(--neon-pink);
  border-radius: 4px;
  background-color: rgba(255, 25, 132, 0.1);
  box-shadow: 0 0 6px var(--neon-pink);
}


/* Overlay */
.emoji-info-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7001;
}

.emoji-info-content {
  background: #111;
  color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 25px var(--neon-blue);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.emoji-info-content h3 {
  color: var(--neon-pink);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  text-shadow: 0 0 6px var(--neon-blue);
}

.emoji-info-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.emoji-info-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.emoji-info-content ul li::before {
  content: "??";
  position: absolute;
  left: 0;
  top: 0;
}

.emoji-info-content button {
  background-color: var(--neon-pink);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon-pink);
  transition: 0.2s ease;
  display: block;
  margin: 0 auto;
}

.emoji-info-content button:hover {
  background-color: var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
}

.click-banner {
  display: flex;
  flex-direction: column;
width: 90%;
  grid-template-columns: 1fr; /* ?? genau eine Spalte */
  position: fixed;
  bottom: 0;
  z-index: 2100;
  background-color: #222;
  padding: 0px 0px;
  margin-top: 6px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    0 0 12px rgba(255, 85, 150, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.6);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(0,0,0,0.15));
}



