:root {
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-primary: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.7);
  --accent: #A855F7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.4) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 60%), linear-gradient(180deg, #0f0a1a 0%, #1a0f2e 50%, #0f1a2a 100%);
  z-index: -2;
}

.orb {
  position: fixed;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #EC4899 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #06B6D4 0%, transparent 70%);
  top: 40%;
  left: 55%;
}
h1, h2, h3, h4, a, p, span, button {
  font-family: "Outfit", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.announcement-container {
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 12px 20px;
  font-size: 15px;
  color: #1a0f2e;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.announcement-container a {
  color: #7C3AED;
  font-weight: 600;
  text-decoration: none;
}

.announcement-container a:hover {
  text-decoration: underline;
}

.announcement-container.error {
  background: rgba(255, 112, 112, 0.95);
  color: #ffffff;
}

.announcement-container.success {
  background: rgba(42, 249, 155, 0.95);
  color: #1a0f2e;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

.hide {
  display: none !important;
}

.clipsey-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.clipsey-container .header {
  padding-bottom: 8px;
}

.clipsey-container .header a {
  color: var(--text-primary);
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
  text-decoration: none;
  font-weight: 700;
  display: block;
}

.clipsey-container .subheader {
  display: block;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 48px 0;
  font-weight: normal;
}

.clipsey-container .subheader h1 {
  display: inline;
  font-size: 20px;
  line-height: 1.3;
  font-weight: normal;
}

.clipsey-container .content-container {
  background: rgba(15, 10, 30, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 22px;
}

.clipsey-container .input-container h1,
.clipsey-container .input-container h2 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.clipsey-container .clip-url-input,
.clipsey-container .redgifs-url-input,
.clipsey-container .pinterest-url-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 20px 20px 56px;
  font-size: 16px;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
}

.clipsey-container .clip-url-input::placeholder,
.clipsey-container .redgifs-url-input::placeholder,
.clipsey-container .pinterest-url-input::placeholder {
  color: var(--text-muted);
}

.clipsey-container .clip-url-input:focus,
.clipsey-container .redgifs-url-input:focus,
.clipsey-container .pinterest-url-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3), 0 0 30px rgba(168, 85, 247, 0.2);
}

.clipsey-container .invalid-url-container,
.clipsey-container .api-error-container {
  background: rgba(255, 112, 112, 0.2);
  border: 1px solid rgba(255, 112, 112, 0.4);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.clipsey-container .invalid-url-container p,
.clipsey-container .api-error-container p {
  color: #ffcccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.clipsey-container .invalid-url-container i {
  font-style: italic;
}

.clipsey-container .invalid-url-container span {
  display: block;
  padding: 10px 0;
  font-style: italic;
}

.clipsey-container .invalid-url-container span:last-child {
  padding-bottom: 0;
}

.clipsey-container .issue-contact-us-container p {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 24px;
}

.clipsey-container .issue-contact-us-container a {
  color: var(--accent);
  text-decoration: none;
}

.clipsey-container .issue-contact-us-container a:hover {
  text-decoration: underline;
}

button,
.button {
  width: 100%;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  border: none;
  border-radius: 16px;
  padding: 20px 32px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  text-decoration: none;
}

button::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

button:hover::before,
.button:hover::before {
  left: 100%;
}
button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
  text-decoration: none;
}

button svg,
.button svg {
  width: 22px;
  height: 22px;
}

a svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  filter: invert(100%);
}

.clipsey-container .get-download-link-button,
.clipsey-container .get-redgifs-download-link-button {
  max-width: 630px;
  margin-top: 24px;
}

.clipsey-container .loading-container {
  text-align: center;
}

.clipsey-container .loading-text {
  padding-top: 50px;
  font-size: 30px;
  color: #FFFFFF;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.clipsey-container .downloaded-clip-container {
  text-align: left;
}

.clipsey-container .clip-broadcaster {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
  width: 100%;
}

.clipsey-container .clip-title {
  margin: 0;
  padding: 0;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-primary);
  text-align: left;
  font-weight: 700;
}

.clipsey-container .clip-thumbnail,
.clipsey-container .clip-iframe {
  width: 100%;
  height: auto;
  min-height: 300px;
  aspect-ratio: 16 / 9;
  margin: 0 0 24px 0;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.clipsey-container .streamladder-button,
.clipsey-container .download-clip-button,
.clipsey-container .download-full-vod-button {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto 12px;
  padding: 18px 0;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 16px;
  color: #ffffff;
  letter-spacing: 0px;
}

.clipsey-container .streamladder-button.tiktok-button {
  background: #000000;
  background-image: none;
}

.clipsey-container .streamladder-button.shorts-button {
  background: #FF0000;
  background-image: none;
}

.clipsey-container .streamladder-button.reels-button {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  background-image: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.clipsey-container .download-clip-button span {
  display: block;
  text-transform: none;
  font-size: 13px;
}

.clipsey-container .right-click-info {
  margin: 16px 0 4px;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: var(--text-muted);
  width: 100%;
}

.clipsey-container .service-shoutout {
  display: block;
  width: 100%;
  margin: 0 auto 16px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  background: rgba(222, 241, 255, 0.1);
  border: 1px solid rgba(19, 137, 251, 0.3);
  border-radius: 12px;
}

.clipsey-container .service-shoutout p {
  font-size: 17px;
  margin: 0;
  width: 100%;
  line-height: 1.8rem;
  color: var(--text-primary);
}

.clipsey-container .ads-container {
  margin: 40px auto 0;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}

.clipsey-container .ads-container #ad-image,
.clipsey-container .ads-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.clipsey-container .go-back-link {
  color: var(--text-muted);
  font-size: 23px;
  margin-top: 40px;
  cursor: pointer;
  width: 100%;
}

.clipsey-container .go-back-link:hover {
  color: var(--text-primary);
}

.clipsey-container .spacer {
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 100px;
  margin: 75px auto 40px;
}

.clipsey-container h3 {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 16px;
  margin-top: 40px;
  color: var(--text-primary);
  font-weight: 600;
}

.clipsey-container p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-muted);
  width: 90%;
  max-width: 1090px;
  margin: 0 auto;
  word-break: break-word;
}

.clipsey-container .text-content p {
  margin-bottom: 24px;
}

.clipsey-container .text-content a {
  color: var(--accent);
  text-decoration: none;
}

.clipsey-container .text-content a:hover {
  text-decoration: underline;
}

.clipsey-container .navigation-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 50px 0;
  margin-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.clipsey-container .navigation-links a {
  color: var(--text-muted);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.clipsey-container .navigation-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.clipsey-container .contact-form input,
.clipsey-container .contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  font-size: 26px;
  padding: 18px 20px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
}

.clipsey-container .contact-form button {
  width: 80%;
  max-width: 300px;
}

.clipsey-container .contact-form input::placeholder,
.clipsey-container .contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.clipsey-container .streamer-page-info h1 {
  text-transform: uppercase;
  font-size: 38px;
  line-height: 43px;
  color: var(--text-primary);
  text-align: center;
  padding-bottom: 20px;
  margin: 0;
  font-weight: 700;
}

.clipsey-container .streamer-page-info img {
  border-radius: 16px;
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
  border: 2px solid var(--glass-border);
}

.clipsey-container .streamer-page-info p {
  padding: 10px 0;
  font-size: 18px;
  line-height: 26px;
}

.clipsey-container .streamer-page-info .download-full-vod-button {
  display: block;
  margin-bottom: 20px;
}

.clipsey-container .single-clip {
  padding-bottom: 20px;
}

.clipsey-container .single-clip h2 {
  font-size: 20px;
  line-height: 26px;
  text-align: left;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-primary);
}

.clipsey-container .single-clip p {
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-muted);
}

.clipsey-container .single-clip .download-clip-button {
  font-size: 16px;
  padding: 8px 0;
  margin-top: 6px;
  width: 100%;
}

.clipsey-container .single-streamer {
  padding-bottom: 8px;
}

.faq-section {
  margin-top: 60px;
}

.faq-divider {
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 100px;
  margin: 0 auto 40px;
}

.faq-intro {
  text-align: center;
  margin-bottom: 40px;
}

.faq-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-intro p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item {
  background: rgba(15, 10, 30, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 24px 28px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.faq-item h2 {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 16px 0;
  padding: 0;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 16px;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
}

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

.survey-giveaway-section {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 50%, #093637 100%);
  border-radius: 12px;
  padding: 25px 20px;
  margin: 25px 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.survey-giveaway-section .survey-content {
  color: #fff;
}

.survey-giveaway-section .survey-title {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.survey-giveaway-section .survey-description {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.survey-giveaway-section .survey-button {
  display: inline-block;
  background: linear-gradient(135deg, #f368e0 0%, #ee5a24 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.survey-giveaway-section .survey-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.survey-giveaway-section .survey-button svg {
  margin-right: 8px;
}

@media screen and (max-width: 991px) {
  .announcement-container {
    display: block !important;
    font-size: 13px;
    padding: 10px 16px;
  }
  .clipsey-container .content-container {
    padding: 32px 24px;
  }
  .clipsey-container .header a {
    font-size: 42px;
  }
  .clipsey-container .subheader {
    font-size: 18px;
  }
  .clipsey-container .clip-title {
    text-align: center;
    margin-top: 10px;
    font-size: 28px;
  }
  .clipsey-container .clip-broadcaster {
    text-align: center;
  }
  .clipsey-container .streamladder-button,
  .clipsey-container .download-clip-button,
  .clipsey-container .download-full-vod-button {
    display: block;
  }
  .clipsey-container .right-click-info {
    text-align: center;
  }
  .faq-item {
    padding: 20px 20px;
  }
  .faq-item h2 {
    font-size: 16px;
  }
  .faq-item p {
    font-size: 15px;
  }
  .survey-giveaway-section {
    padding: 20px 15px;
  }
  .survey-giveaway-section .survey-title {
    font-size: 24px;
  }
  .survey-giveaway-section .survey-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 575px) {
  .clipsey-container .content-container {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .clipsey-container .header a {
    font-size: 36px;
  }
  .clipsey-container .subheader {
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
