/* Farbe definieren */
:root {
  --link-farbe: #383838; /* Variable für die Farbe des Unterstrichs unter dem Link */
  --link-farbe-hover: #000000; /* Variable für die Farbe des Unterstrichs unter dem Link */
  --icon-color: #383838; /* Variable für die Farbe der Icons nach dem Link */
  --link-unterstrich-color: #383838; /* Variable für die Farbe des Unterstrichs unter dem Link */
}
.text-marker {
  background-color: rgba(182, 221, 75, 0.75) !important; /* Marker-Farbe */
  box-shadow: 0 2px 6px rgba(182, 221, 75, 0.4), 
              0 -2px 6px rgba(182, 221, 75, 0.4); /* Unregelmäßige Schatten */
  border-radius: 3px; /* Für etwas weichere Kanten */
  padding: 0 2px; /* Platz für den Marker-Effekt */
}
/* Links auf der allgemeinen Seiten mit Icon markieren */
.link-icon-blog a {
  text-decoration: none;
  color: #2b2b2b !important;
  position: relative;  
}
.link-icon-blog a:hover {
  color: var(--link-farbe-hover) !important; /* Die Farbe beim Hover */
}
/* Google Links */
.link-icon-blog a[href*=".google."]:not([href*="play.google."])::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f1a0";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}
/* GooglePlaystore Links */
.link-icon-blog a[href*="play.google."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f3ab";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* AppStore Links */
.link-icon-blog a[href*="apps.apple."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f370";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Wikipedia Links */
.link-icon-blog a[href*="wikipedia."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f266";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Wunschliste Links */
/* https://www.amazon.de/hz/wishlist/ls/FZUHI7CEUWDG?ref_=wl_share */
.link-icon-blog a[href*="amazon."][href*="/wishlist/"]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f06b";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Links */
.link-icon-blog a[href*="amazon."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f270";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* PayPal Links */
.link-icon-blog a[href*="paypal."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f1ed";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Interne Links */
.link-icon-blog a[href*="seelen-tagebuch."]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f0c6";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Externe und alle anderen Links */
.link-icon-blog a[href^="http"]:not([href*="paypal."]):not([href*="play.google."]):not([href*="apps.apple"]):not([href*="google."]):not([href*="wikipedia."]):not([href*="amazon."]):not([href*="seelen-tagebuch.de"])::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  content: "\f08e";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}

/* Links in Beiträgen mit Icon maskieren*/
.link-icon a {
  text-decoration: dottet;
  color: #2b2b2b !important;
  position: relative; 
  
}
.link-icon a:hover {
  color: var(--link-farbe-hover) !important; /* Die Farbe beim Hover */
}
.link-icon a:hover::before {
  bottom: 0;
  height: 100%;
}
/* Google Links */
.link-icon a[href*=".google."]:not([href*="play.google."])::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f1a0";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}
/* GooglePlaystore Links */
.link-icon a[href*="play.google."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f3ab";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* AppStore Links */
.link-icon a[href*="apps.apple."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f370";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Wikipedia Links */
.link-icon a[href*="wikipedia."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f266";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Wunschliste Links */
/* https://www.amazon.de/hz/wishlist/ls/FZUHI7CEUWDG?ref_=wl_share */
.link-icon a[href*="amazon."][href*="/wishlist/"]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f06b";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Links */
.link-icon a[href*="amazon."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f270";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* PayPal Links */
.link-icon a[href*="paypal."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f1ed";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Interne Links */
.link-icon a[href*="seelen-tagebuch."]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f0c6";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Externe und alle anderen Links */
.link-icon a[href^="http"]:not([href*="paypal."]):not([href*="play.google."]):not([href*="apps.apple"]):not([href*="google."]):not([href*="wikipedia."]):not([href*="amazon."]):not([href*="seelen-tagebuch.de"])::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  content: "\f08e";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}


/* Toogle Switsch Button */
.onoffswitch {
  position: relative; width: 77px;
  -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
input[type="checkbox"]:disabled + label,
input[type="radio"]:disabled + label {
cursor: not-allowed;
}
.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.onoffswitch-label {
  display: block; overflow: hidden; cursor: pointer;
  border: 2px solid #FFFFFF; border-radius: 15px;
}
.onoffswitch-inner {
  display: block; width: 200%; margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block; float: left; width: 50%; height: 32px; padding: 0; line-height: 32px;
  font-size: 24px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
  box-sizing: border-box;
}
.onoffswitch-inner:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  content: "\f00c";
  padding-left: 18px;
  background-color: #EEEEEE; color: #34A7C1;
}
.onoffswitch-inner:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  content: "\f00d";
  padding-right: 18px;
  background-color: #EEEEEE; color: #999999;
  text-align: right;
}
.onoffswitch-switch {
  display: block; width: 24px; margin: 6px;
  background: #999999;
  position: absolute; top: 0; bottom: 0;
  right: 41px;
  border: 2px solid #FFFFFF; border-radius: 50px;
  transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px; 
  background-color: #3BC76A; 
}
/*Toogle Switch Button Ende */

.widget-follow li a.shop{background:#d0002c}
.widget-follow li a.paypalmefollow{background:#00704a}
.widget-follow li a.amazonwi{background:#ff9900}
.widget-follow li a.amazonwi1{background:#146eb4}
.widget-follow li a.rsswi{background:#ee802f}
.widget-follow li a.podcastwi{background:#a086d3}
.widget-follow li a.telegram{background:#08c}
.widget-follow li a.reddit{background:#ff4500}
.widget-follow li a.portfolio{background:#a5c500}

.rund {
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
}

.alert-signatur {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  color: #3f3f3f;
  background-color: #c0c0c0;
  border: 0 !important;
  box-sizing: border-box;
  white-space: normal;
  overflow: hidden;
  line-height: 1.3 !important; /* Optional: Kontrolle des Zeilenabstands */
}
.alert-signatur a {
  border-bottom: 1px dotted;
  border-bottom-color: #9a9a9a !important;
  color: #52565e !important;  
}
.alert-signatur a:hover {
  border-bottom-color: #f0f0f0 !important;
  color: #f0f0f0 !important; /* Die Farbe beim Hover */
}
/*
.alert-signatur.link-icon {
    position: relative;
    padding-top: 20px;  
}

.alert-signatur.link-icon::before {
    content: "Signatur"; 
    position: absolute;
    top: 0;
    left: 20px; 
    font-weight: bold;
    background-color: #f8f9fa; 
    padding: 0 5px; 
    transform: translateY(-50%); 
    color: #333; 
}
*/

.counter-item {
  padding-left: 1px !important; /* Platz zwischen Icons und Text */
  padding-right: 5px; /* Platz zwischen Icons und Text */
  font-size: small;
}

.alert-custom {
  display: block !important;
  width: 100%;
  max-width: 100%;
  margin-top: 5px !important;
  border-radius: 8px !important;
  padding: 5px;
  overflow: hidden; /* Inhalt an die abgerundeten Ecken anpassen */
  font-size: small;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: #f0f0f0;
}

.input-group {
  position: relative !important;
}

.emoji-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  color: #333; /* Standardfarbe */
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* Abdunkeln des Icons, wenn das Eingabefeld fokussiert oder nicht leer ist */
.input-group .form-control:focus ~ .emoji-btn,
.input-group .form-control:not(:placeholder-shown) ~ .emoji-btn {
  opacity: 0.5;
}

.emoji-btn::before {
  content: "💡";
}

.conter-btn {
  position: absolute;
  line-height: 1;
  right: 8px;
  transform: translateY(-50%);
  font-size: 1.0rem;
  z-index: 10;
  color: #000000ce; /* Standardfarbe */
  background-color: rgb(255, 255, 255);
  box-shadow: none;
  padding: 1px 5px !important;
  border-radius: 2px;
  display: inline-block; 
  top: 13% !important;
  border-radius: 8px;
}

span.spoiler {
    text-shadow: 0 0 8px #000;
    color: rgba(255, 255, 255, 0);
    margin-left: 0;
    padding: 0.2rem;
    filter: DXImageTransform.Microsoft.Blur(pixelradius=2);
    zoom: 1;
    pause-before: 2s;
    transition: 1s text-shadow linear;
}
  
span.spoiler:hover {
    text-shadow: none;
    color: #000;
    filter: none;
}

 
 


.tags {
    list-style: none;
    margin: 0;
    overflow: hidden; 
    padding: 0;
  }
  
  .tags li {
    float: left; 
  }
  
  .tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
  }
  
  .tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
  }
  
  .tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .tag:hover {
    background-color: #8db9ca;
    color: white;
  }
  
  .tag:hover::after {
     border-left-color: #8db9ca; 
  }

  




  .doCapital {
    text-transform: capitalize;
 }


 /* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #e6e6e6 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 6px;
  }

  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    border-radius: 10px;
    border: 3px none #ffffff;
    height: 10px;
  }

/*
.post-text p:first-child::first-letter{
  font-family: "Lobster Two";
  
  font-size: 60px;
  float: left;
  line-height: 50px;
  padding-right: 8px;
  margin-top: -3px;
}
*/

/*Blockquoute*/
blockquote {
  font-size: 1em;
  font-style: italic;
  margin: 0 1.5em;
  padding: 0.5em;
  border-left: 3px solid #d7d7d8;
}

blockquote p {
  margin: 0;
}

blockquote:before {
  content: "\201C";
  font-size: 2.5em;
  line-height: 0.1em;
  margin-right: 0.12em;
  vertical-align: -0.4em;
}

blockquote:after {
  content: "\201D";
  font-size: 2.5em;
  line-height: 0.1em;
  margin-left: 0.10em;
  vertical-align: -0.4em;
}

blockquote cite {
  display: block;
  font-size: 0.8em;
  font-style: normal;
  margin-top: 1em;
}

blockquote cite:before {
  content: "\2014 \2009";
}

blockquote cite a {
  text-decoration: none;
}

/*Fun begins*/
.tab_container {
	width: 90%;
	margin: 0 auto;
	padding-top: 70px;
	position: relative;
}

.tap-input, .tap-section {
  clear: both;
  padding-top: 10px;
  display: none;
}

.label1 {
  font-size: 18px;
  display: block;
  float: left;
  width: 20%;
  padding: 1.5em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #f0f0f0;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding: 20px;
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  border-left: 2px solid #f0f0f0;
  border-right: 2px solid #f0f0f0;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.7s ease-in-out;
  -moz-animation: fadeInScale 0.7s ease-in-out;
  animation: fadeInScale 0.7s ease-in-out;
}
.tab_container .tab-content h3  {
  text-align: center;
}

.tab_container [id^="tab"]:checked + label {
  background: #fff;
  border-left: 2px solid #f0f0f0;
  border-right: 2px solid #f0f0f0;
  box-shadow: inset 0 3px #f0f0f0;
}

.tab_container [id^="tab"]:checked + label .fa {
  color: rgb(170, 71, 71);
}

label .fa {
  font-size: 1.3em;
  margin: 0 0.4em 0 0;
}

/*Media query*/
@media only screen and (max-width: 900px) {
  label span {
    display: none;
  }
  
  .tab_container {
    width: 98%;
  }
}

/*Content Animation*/
@keyframes fadeInScale {
  0% {
  	transform: scale(0.9);
  	opacity: 0;
  }
  
  100% {
  	transform: scale(1);
  	opacity: 1;
  }
}

.dummy-container {
  height: 380px;
  margin: 0 auto;
  max-width: 100%;
}




/* Standard CSS für Firefox */
@media (min-width: 768px) {
  textarea {
    scrollbar-width: none; /* Für Firefox */
  }
  
  /* WebKit-spezifische Anpassungen für Chrome, Safari und Edge */
  textarea::-webkit-scrollbar {
    display: none; /* Scrollbar ausblenden */
  }
}

/* Responsive Anpassungen Hilfe*/
@media (max-width: 768px) {
  /* Listengruppencontainer wird als Grid dargestellt */
  #list-example {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten gleicher Breite */
    gap: 0.5rem; /* Abstand zwischen den Elementen */
  }

  /* Listenelemente mit abgerundeten Ecken */
  .list-group-help {
    text-align: center;
    padding: 0.75rem 0.5rem; /* Anpassung der Abstände für bessere Darstellung */
    border-radius: 8px; /* Abgerundete Ecken */
    padding: 5px 5px !important;
    background-color: #b1b1b1;
    border: none;
    color: #313131 !important;
  }
  .list-group-help.active {
    background-color: #6b6b6b; /* Hintergrundfarbe für den aktiven Zustand */
    color: rgb(70, 70, 70); /* Textfarbe für den aktiven Zustand */
  } 

  /* Scrollbereich bei kleiner Ansicht angepasst */
  .scrollspy-example {
    overflow-y: visible; /* Kein Scrollen erforderlich auf Mobilgeräten */
    height: 300px !important; /* Höhe auf 300px setzen */
  }
}

.list-group-help {
  text-align: center;
  padding: 0.75rem 0.5rem; /* Anpassung der Abstände für bessere Darstellung */
  padding: 5px 5px !important;
  background-color: #e7e7e7dc !important;
  border: none;
  color: #313131 !important;
}

/* Das erste Item oben links und oben rechts abgerundet */
.list-group-help:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Das letzte Item unten links und unten rechts abgerundet */
.list-group-help:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.list-group-help.active {
  background-color: #969696dc !important; /* Hintergrundfarbe für den aktiven Zustand */
  color: rgb(255, 255, 255) !important; /* Textfarbe für den aktiven Zustand */
}

.scrollspy-example {
  border-color: #9696967a !important;
  background-color: #e7e7e7dc !important;
  scrollbar-width: thin; /* "auto", "thin", oder "none" für die Breite */
  scrollbar-color: #96969638 #e7e7e700; /* Daumenfarbe und Spurfarbe */
}

/* Gesamte Scrollbar */
.scrollspy-example::-webkit-scrollbar {
  width: 3px !important; /* Breite der Scrollbar */
}

/* Daumen (Schieberegler) */
.scrollspy-example::-webkit-scrollbar-thumb {
  background-color: #39ac31 !important; /* Hintergrundfarbe des Daumens */
  border-radius: 10px; /* Abgerundete Ecken für den Daumen */
}

/* Die Spur der Scrollbar */
.scrollspy-example::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* Hintergrundfarbe der Spur */
  border-radius: 10px; /* Abgerundete Ecken für die Spur */
}

.text-stumm{color:#4d4d4da4}

.icon-social {
  height: 18px;
  width: 18px;
  font-style: normal;
  font-weight: normal;
}

.icon-social-pixelfed {
  height: 24px;
  width: 24px;
  font-style: normal;
  font-weight: normal;
}

.icon-follow {
  height: 24px;
  width: 24px;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
}

.icon-normal {
  height: 15px;
  width: 15px;
  font-style: normal;
  font-weight: normal;
}

.icon-slider {
  height: 65%;
  width: 65%;
  font-style: normal;
  font-weight: normal;
}

.icon-slider-zoom:hover {
  transform: scale(0.2); /* Vergrößert das Icon auf 120 % der ursprünglichen Größe */
  transition: transform 0.3s ease; /* Übergangsgeschwindigkeit */
  color: #cd595a;
}

.icon-zoom:hover {
  transform: scale(1.3); /* Vergrößert das Icon auf 120 % der ursprünglichen Größe */
  transition: transform 0.2s ease; /* Übergangsgeschwindigkeit */
}

.icon-wave {
  animation: shake 0.5s ease-in-out infinite; /* Animation alle 0.5 Sekunden */
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

/* Standardmäßige Shake-Animation ähnlich Font Awesome */
.icon-shake {
  display: inline-block;
  animation: fa-shake 0.8s ease 20; /* Laufzeit 0.8s, Endlosschleife */
}

@keyframes fa-shake{0%,100%{transform:rotate(0)}10%,30%,50%,70%,90%{transform:rotate(-10deg)}20%,40%,60%,80%{transform:rotate(10deg)}}

/* Icons für Datenschutz */
.icon-datenschutz {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 8px;
}

.icon-datenschutz-footer {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 3px;
}

.badget-check-big {
  width: 0.8em;
  height: 0.8em;
  color: #007dc3;
  vertical-align: top;
  margin-left: 1px;
}

.badget-check-small {
  width: 1em;
  height: 1em;
  color: #007dc3;
  vertical-align: top;
  margin-left: 1px;
}

.badget-ki-big {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 8px;
}
.help-section{padding:2rem 0}.help-section h1,.help-section h2{font-family:'Arial',sans-serif;font-weight:bold}.helpline-card h4{color:#333333;font-weight:600}.helpline-card{border:1px solid #eaeaea;border-radius:8px;height:100%;box-shadow:0 4px 6px rgba(0,0,0,.1);transition:transform .2s,box-shadow .2s}.helpline-card li i{font-size:1rem}.helpline-card:hover{transform:scale(1.02);box-shadow:0 4px 8px rgba(0,0,0,.1)}.helpline-icon{font-size:3rem;color:#4CAF50}.emergency-alert{background-color:#fce8e6;border-left:5px solid #d9534f;padding:1rem;margin-bottom:2rem;border-radius:5px}.contact-list ul{padding-left:1.2rem}.contact-list li i{padding-right:2px!important;font-size:1rem}.list-unstyled i{padding-right:2px!important;font-size:1rem}.card{border:none;border-radius:10px}.card-body{padding:30px}.help-section{border:1px solid #dee2e6;border-radius:8px;padding:30px;margin-bottom:20px;box-shadow:0 4px 6px rgba(0,0,0,.1)}.help-header{background:linear-gradient(to right,#c98f00,#ed7902);color:#fff;padding:20px;border-radius:8px 8px 0 0;font-size:1.5rem;text-align:center}.help-section i{color:#0d6efd;font-size:1.8rem;margin-right:10px}.faq-list{list-style:none;padding:0}.faq-list li{margin-bottom:15px}.faq-list li i{align-items:center!important;margin-right:4px;font-size:1.2rem;color:#198754}.hero-section{background:linear-gradient(to right,#0d6efd,#6610f2);color:#ffffff;padding:50px 20px;text-align:center;border-radius:8px;margin-bottom:30px}.hero-section h1{font-size:2.5rem;margin-bottom:20px}.steps-section{padding:30px 20px;border:1px solid #dee2e6;border-radius:8px;box-shadow:0 4px 6px rgba(0,0,0,.1)}.steps-section h3{margin-bottom:20px}.step{margin-bottom:20px;display:flex;align-items:center}.step i{font-size:2rem;color:#198754;margin-right:15px;align-items:center!important}.cta-section{text-align:center;margin-top:30px}.cta-section a{background:linear-gradient(to right,#0d6efd,#6610f2);color:#ffffff!important;padding:10px 20px;border-radius:5px;border:none;text-decoration:none;font-size:1.2rem}.cta-section a::after{content:none!important}.rules-container{margin:30px auto;max-width:90%;padding:20px;border-radius:10px}.rules-header{background:linear-gradient(to right,#c334b3,#8a4ecd);color:#ffffff;padding:50px 20px;text-align:center;border-radius:8px;margin-bottom:30px}.rules-header i{font-size:2.5rem;margin-bottom:10px}.rule{margin-bottom:20px}.rule-title{display:flex;align-items:center;font-weight:bold;font-size:1.2rem;margin-bottom:5px}.rule-title i{font-size:2rem;margin-right:10px;color:#dc3545}.rule-content ul{list-style:none;padding-left:0}.rule-content ul li{margin-bottom:10px;display:flex;align-items:center}.rule-content ul li i{font-size:1.3srem;margin-right:10px;color:#6c757d;flex-shrink:0}.rule-footer{text-align:center;font-size:.9rem;color:#6c757d;margin-top:20px}.gradient-container{display:flex;align-items:center;justify-content:space-between;padding:20px;border-radius:15px;background:linear-gradient(45deg,#ff9a9e,#fad0c4,#fbc2eb,#a18cd1);background-size:300% 300%;animation:gradient-animation 8s ease infinite;color:#000000;box-shadow:0 4px 6px rgba(0,0,0,.1);max-height:120px;max-width:800px;margin:20px auto}.gradient-text{font-size:.9rem;font-weight:500;margin:0;flex:1}.gradient-btn{margin-left:20px;padding:10px 20px;border-radius:25px;font-size:1rem;font-weight:bold;text-decoration:none;transition:background-color .3s ease,transform .2s ease}.gradient-btn:after{content:none!important}.gradient-btn:before{content:none!important}.gradient-btn:hover{background-color:#fff!important;color:#4a4a4a!important;transform:translateY(-3px)}@keyframes gradient-animation{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}.mobile-gradient-container{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px;border-radius:15px;background:linear-gradient(135deg,#ff9a9e,#fad0c4,#fbc2eb,#a18cd1);background-size:300% 300%;animation:mobile-gradient-animation 8s ease infinite;color:#000000;box-shadow:0 4px 6px rgba(0,0,0,.1);width:330px;height:150px;margin:10px auto;overflow:hidden}.mobile-gradient-text{font-size:1rem;font-weight:500;text-align:center;margin-bottom:20px}.mobile-gradient-btn{padding:10px 20px;border-radius:25px;font-size:.9rem;font-weight:bold;text-decoration:none;white-space:nowrap;transition:background-color .3s ease,transform .2s ease}.mobile-gradient-btn:hover{background-color:#fff!important;color:#4a4a4a!important;transform:translateY(-3px)}@keyframes mobile-gradient-animation{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}