@import url('https://fonts.googleapis.com/css2?family=Red+Rose&display=swap');

/* ========================================
   CSS Custom Properties (Variables)
   ======================================== */
:root {
  /* Primary Colors */
  --color-gold: #f1b533;
  --color-gold-light: #f1c056;
  --color-cyan: #03b9bb;
  --color-red: #bb3d03;

  /* Background Colors */
  --color-dark: #1a1a1a;
  --color-dark-gray: #3a3a3a;
  --color-slider-bg: #313131;

  /* Text Colors */
  --color-text-light: lightgray;
  --color-text-white: white;

  /* Gradients */
  --gradient-gold: linear-gradient(to right, #7c5500, var(--color-gold));
  --gradient-cyan: linear-gradient(180deg, #fff, var(--color-cyan));
  --gradient-red: linear-gradient(180deg, #fff, var(--color-red));

  /* Shadows */
  --shadow-gold: 0 0 20px var(--color-gold);
  --shadow-cyan: 0 0 4px rgba(3, 185, 187, 0.6);
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Red Rose', serif;
  font-weight: bold;
  -ms-user-select: None;
  -moz-user-select: None;
  -webkit-user-select: None;
  user-select: None;
  font: 400 18px/32px Red Rose, sans-serif;
}

body {
  background-image: url("../img/bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 30px;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.no-client-connected-parent {
  position: relative;
  width: 354px;
  min-height: 54px;
  margin-bottom: 150px;
  background-image: url("../img/group-36637.svg");
  background-repeat: none;
  text-align: center;
}

.no-client-connected {
  position: relative;
  top: 10px;
  background: linear-gradient(180deg, #fff, #03b9bb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  font-size: .87rem;
}

.client-disconnected{
  background: linear-gradient(180deg, #fff, #bb3d03);
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.status-pulse-alert {
  color: #ff3c3c !important;
  -webkit-text-fill-color: #ff3c3c !important;
  background: none !important;
  font-weight: bold;
  display: inline-block;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.container-fluid {
  max-width: 1920px;
}

#logo {
  margin-top: -55px;
}

.down20px {
  margin-bottom: 20px;
}

.shellMenu {
  color: lightgray;
  text-align: right;
  text-transform: uppercase;
}

.hotkeys {
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1b533;
}

.gw-box-1 {
  height: 120px;
  border-radius: 37px;
  background-image: url(../img/box_bg_1.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 20px;
  padding: 10px 0 0 30px;
}

.gw-box-2 {
  height: 120px;
  border-radius: 37px;
  background-image: url(../img/box_bg_2.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 0 0 0 30px;
}

.gw-box-2:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.gw-box-2:active {
  background-color: rgba(255, 255, 255, 0.15);
}

a.gw-box-bg:last-child {
  margin-bottom: 0;
}

.border-gradient {
  border-style: solid;
  border-width: 4px;
  border-image: linear-gradient(90deg, #f1b533, transparent, #f1b533) 1;
  border-right: 8px solid #f1b533;
  border-left: 8px solid #f1b533;
}

.gw-menu {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.gw-menu div.gw span.title {
  font-size: 10pt;
  color: white;
  display: block;
}

.gw-menu div.gw span.info {
  font-size: 27pt;
  color: #177ef4;
  display: block;
  line-height: 27pt;
}

.checkBox {
  -webkit-appearance: none;
}

.checkBox ~ .checkBoxText::before{
  content: '✗'
}
.checkBox:checked ~ .checkBoxText::before{
  content: '✓'
}

input:checked + span {
  text-shadow: 0 0 10px #f1b533;
  color: #f1b533;
  border-color: #f1b533;
  border-radius: 50px;
  box-shadow: 0 0 20px #f1b533, inset 0 0 20px #f1b533;
}

.switch {
  position: relative;
  width: 70px;
  height: 34px;
  float: left;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d2d2d2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #00fa00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #00fa00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(36px);
  -ms-transform: translateX(36px);
  transform: translateX(36px);
}

.slider:after {
  content: "OFF";
  color: white;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 67%;
  font-size: 12pt;
  font-family: "ExoSemiBold";
}

input:checked + .slider:after {
  content: "ON";
  left: 30%;
  transform: translate(-50%, -50%);
  color: #00b84b;
}

div.desc {
  margin-left: 90px;
}

.sliderText {
  text-align: right;
  color: #f1b533;
  font-size: 11pt;
  line-height: 11pt;
  white-space: nowrap;
}

.gw-rangeValue {
  color: #f1b533;
  font-size: 11pt;
}

.gw-rangeSlider {
  margin-bottom: 8px;
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  width: 100%;
}

.custom-select-wrapper select {
  display: none;
}

.hw-select {
  display: block;
  width: 30%;
  padding: 10px 7px 7px 7px;
  font-size: 12pt;
  line-height: 10pt;
  color: black;
  background: #f1b533;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid #f1c056;
  text-align: center;
  margin-bottom: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.hw-select option {
  background: #f1c056;
  color: black;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 30%;
  margin-bottom: 10px;
  background: #f1b533;
}

.custom-select-trigger {
  position: relative;
  display: block;
  padding: 10px 7px 7px 7px;
  font-size: 12pt;
  line-height: 10pt;
  color: black;
  background: #f1b533;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid #f1c056;
  text-align: center;
  width: 100%;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 15px 0;
  border: 2px solid #f1c056;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  background: #f1c056;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-options:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 100%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-bottom: -4px;
  border-top: 2px solid #f1c056;
  border-left: 2px solid #f1c056;
  background: #f1c056;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.option-hover:before {
  background: #f1c056;
}

.custom-option {
  position: relative;
  display: block;
  border-bottom: 1px solid #f1c056;
  padding: 10px 7px 7px 7px;
  font-size: 12pt;
  line-height: 10pt;
  text-align: center;
  color: black;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
  background: #f1b533;
}

/* Alternate Select */
.select2 select {
  appearance: none;
  outline: 0;
  border: 0;
  box-shadow: none;
  flex: 1;
  color: black;
  background-color: #f1c056;
  background-image: none;
  cursor: pointer;
  text-align: center;
  font-size: 8pt;
  line-height: 8pt;
  padding: 10px 7px 7px 7px;
}

/* Remove IE arrow */
.select2 select::-ms-expand {
  display: none;
}

.select2 {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid #f1c056;
  text-align: center;
}

/* Arrow */
.select2::after {
  content: "\25BC";
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  background-color: transparent;
  transition: 0.25s all ease;
  pointer-events: none;
}

/* Transition */
.select2:hover::after {
  color: #1966c8;
}

/* Tooltip */
.tooltip-container {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  font-size: 8pt;
  padding: 2px;
  margin-right: -30px;
  background-color: #1a478a;
  border: 2px solid #1966c8;
  width: 20px;
  border-radius: 3px;
  height: 20px;
  text-align: center;
}

.tooltip-container2 {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 999;
}

.tooltip-container3 {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 999;
  margin-top: -30px;
  margin-left: 75px;
}

.texttext {
  margin-bottom: 13px;
}

/* Button */
.gw-button {
  position: relative;
  display: block;
  padding: 10px 7px 7px 7px;
  font-size: 12pt;
  line-height: 10pt;
  color: black;
  background: #f1b533;
  /*border-radius: 5px;*/
  cursor: pointer;
  border: 2px solid #f1c056;
  text-align: center;
  width: 30%;
  margin-bottom: 10px;
}

/* Rangeslider */
.gwSlider {
  -webkit-appearance: none;
  display: block;
  appearance: none;
  width: 100%;
  margin: 0;
  height: 30px;
  cursor: pointer;
  float: left;
  /* Gradient wird durch JS gesetzt, zeigt nur im Track-Bereich */
  background-color: transparent;
  background-size: 100% 6px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
}

.gwSlider:focus {
  outline: none;
}

/* Slider Track - transparent, damit Slider-Background durchscheint */
.gwSlider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: transparent;
}

/* Slider Thumb (Ziehgriff) - größer als Track */
.gwSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 22px;
  width: 14px;
  margin-top: -8px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  background: url("https://s20.directupload.net/images/220216/rcqvqysp.png") center center no-repeat;
  background-size: contain;
  transition: transform 150ms ease;
}

.gwSlider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Firefox: Track (dünn) */
.gwSlider::-moz-range-track {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #3a3a3a;
}

/* Firefox: Progress (gefüllter Bereich links vom Thumb) */
.gwSlider::-moz-range-progress {
  height: 6px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to right, #7c5500, #f1b533);
}

/* Firefox: Thumb - größer als Track */
.gwSlider::-moz-range-thumb {
  appearance: none;
  height: 22px;
  width: 14px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  background: url("https://s20.directupload.net/images/220216/rcqvqysp.png") center center no-repeat;
  background-size: contain;
}

/* MS Edge/IE: Track */
.gwSlider::-ms-track {
  width: 100%;
  height: 6px;
  border: 0;
  border-radius: 3px;
  color: transparent;
  background: transparent;
}

/* MS Edge/IE: Gefüllter Bereich (links vom Thumb) */
.gwSlider::-ms-fill-lower {
  background: linear-gradient(to right, #7c5500, #f1b533);
  border-radius: 3px 0 0 3px;
}

/* MS Edge/IE: Ungefüllter Bereich (rechts vom Thumb) */
.gwSlider::-ms-fill-upper {
  background: #3a3a3a;
  border-radius: 0 3px 3px 0;
}

/* MS Edge/IE: Thumb - größer als Track */
.gwSlider::-ms-thumb {
  appearance: none;
  height: 22px;
  width: 14px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 0;
  background: url("https://s20.directupload.net/images/220216/rcqvqysp.png") center center no-repeat;
  background-size: contain;
}
.phoneOnly{
  display:none;
}
.col-xxl-3{
  text-align: left;
}
.col-xxl-12{
  text-align: left;
}

/** NEW GUI **/
.row{
  --bs-gutter-x:0;
}
.gw-menu{
  padding:0;
  margin:0;
}
.tabcontainer{
  grid-template-columns: 2fr 9fr;
  display:grid;
  align-items: start;
}
.raptor-tabs{
  display:flex;
  flex-direction: column;
  justify-content: space-around;
  overflow-y: auto;
  position: sticky;
  top: 0;
  align-self: start;
}
.raptor-tabs h3{
  height:33.33%;
  display: grid;
  place-items: center;
  cursor:pointer;
  font-size:1.2em;
}
.gw-rangeValue{
  text-align:center;
}
.raptor-tabs .active{
  background-color: #f1b533;
  color:white;
}
.raptor-tab{
  border-bottom:2px solid rgba(241, 181, 51, 0.5);
  border-right:2px solid rgba(241, 181, 51, 0.5);
  color: #f1b533;
  display: flex;
 justify-content: center;
align-items: center;
height:100%;
min-height:75px;
}
.raptor-tab-content{
  padding:1em 1.5em;
}
.raptor-tab-content .rap-content{
  display:none;
}
.raptor-tab-content .active{
  display:block;
}

@media only screen and (max-width: 1400px) {
  main {
    height: auto;
    margin-top: 100px;
  }
}

/* Tablet */
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .hideOnMobile{
    display:none;
   }
  .col-xxl-9{
    width:25%;
  }
  .col-xxl-3{
    width:75%;
  }
  .hotkeys{
    padding: 0;
  }
  .custom-select{
    width:100%;
  }
  .texttext {
    margin-bottom: 7px;
}
.no-client-connected-parent{
  margin-bottom:50px;
}
.slideText{
  width:100%;
  text-align:left;
}
.col-xxl-8{
  width:90%;
}
.col-xxl-1{
  width:10%;
}
  body{
    padding:0;
  }
  .gw-menu{
    padding:0;
  }
  .gw-button{
    width:100%;
  }
}
@media only screen and (max-width: 1024px) {
  .hideOnMobile{
    display:none;
   }
  .hotkeys{
    padding: 0;
  }
  .custom-select{
    width:100%;
  }
  .texttext {
    margin-bottom: 7px;
}
.no-client-connected-parent{
  margin-bottom:50px;
}
.phoneOnly{
  display:flex;
}
.hideOnPhone{
  display:none;
}
.slideText{
  width:100%;
  text-align:left;
}
.col-xxl-8{
  width:90%;
}
.col-xxl-1{
  width:10%;
}
  body{
    padding:0;
  }
  .gw-menu{
    padding:0;
  }
  .gw-button{
    width:100%;
  }
  .tabcontainer{
    display:block;
  }
  .raptor-tab{
    min-height:45px;
  }
}

/* Phone */
@media only screen and (max-width: 480px) {
  .hideOnMobile{
    display:none;
   }

  .hotkeys{
    padding: 0;
  }
  .custom-select{
    width:100%;
  }
  .no-client-connected-parent{
    margin-bottom:50px;
  }
  .phoneOnly{
    display:flex;
  }
  .hideOnPhone{
    display:none;
  }

  .slideText{
    width:100%;
    text-align:left;
  }
  .col-xxl-8{
    width:90%;
  }
  .col-xxl-1{
    width:10%;
  }
  body{
    padding:0;
  }
  .gw-menu{
    padding:0;
  }
  .tabcontainer{
    display:block;
  }
  .raptor-tab{
    min-height:45px;
  }
}
.subscription-status-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      align-items: center;
      margin-bottom: 25px;
    }

    /* Client Status (wie bisher) */
    .no-client-connected-parent {
      position: relative;
      width: 354px;
      min-height: 54px;
      margin-bottom: 0; /* Entfernt alten Margin */
      background-image: url(../img/group-36637.svg);
      background-repeat: no-repeat;
      text-align: center;
    }

    /* Subscription Timer (neues Design - kompakt, neben Status) */
    .subscription-timer {
      background-image: linear-gradient(135deg, rgba(241,181,51,0.2), rgba(3,185,187,0.15));
      border: 3px solid transparent;
      border-image: linear-gradient(90deg, #f1b533, #03b9bb, #f1b533) 1;
      border-radius: 25px;
      padding: 12px 22px;
      min-width: 180px;
      backdrop-filter: blur(12px);
      box-shadow: 0 6px 25px rgba(241,181,51,0.2);
      transition: all 0.3s ease;
    }

    .subscription-timer:hover {
      box-shadow: 0 8px 35px rgba(241,181,51,0.4);
      transform: translateY(-2px);
    }

    .timer-label {
      font-size: 0.75rem;
      color: #f1b533;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 0.8px;
      margin-bottom: 2px;
      opacity: 0.9;
    }

    .timer-value {
      font-size: 1.1rem;
      font-weight: bold;
      background: linear-gradient(135deg, #f1b533, #03b9bb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0;
      white-space: nowrap;
    }

    .timer-expired .timer-value {
      background: linear-gradient(135deg, #bb3d03, #ff6b35) !important;
    }

    .timer-expired .timer-label {
      color: #bb3d03 !important;
    }

    /* Mobile: Stack vertikal */
    @media (max-width: 768px) {
      .subscription-status-row {
        flex-direction: column;
        gap: 15px;
      }
      .subscription-timer {
        width: 100%;
        max-width: 280px;
        padding: 10px 18px;
      }
      .timer-value {
        font-size: 1rem;
      }
    }


.subscription-inline{
  text-align: right;
  pointer-events: none;
}

.subscription-text{
  font-size: 0.7rem;
  font-weight: bold;
  color: #03b9bb;
  text-shadow: 0 0 4px rgba(3,185,187,0.6);
  white-space: nowrap;

}

 .feature-tooltip { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.tooltip-icon { content: '?';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(2px);
  background: #f1b533;
  color: #1a1a1a;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  margin-left: 4px;
  box-shadow: 0 1px 4px rgba(241,181,51,0.4);
  z-index: 10;
  transition: all 0.2s ease; }
.tooltip-popup{
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 6px;
  display: none;
  background: rgba(26,71,138,0.95);
  border: 2px solid #1966c8;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  width: 260px;
  white-space: normal;
  z-index: 1001;
  font-size: 12px;
  line-height: 14px;
}
.feature-tooltip:hover .tooltip-popup { display: block; }

/* ============================================
   Config Generator Tab - Spezielle Styles
   ============================================ */

/* Config Generator Select-Boxen: Volle Breite */
#config-generator-tab .custom-select {
  width: 100%;
}

#config-generator-tab .custom-select-trigger {
  width: 100%;
}

#config-generator-tab .gw-select {
  width: 100%;
}

/* Abstand zwischen linker und rechter Spalte */
#config-generator-tab .col-xxl-6 {
  padding: 0 1rem;
}

#config-generator-tab .col-xxl-6:first-child {
  padding-left: 0;
}

#config-generator-tab .col-xxl-6:last-child {
  padding-right: 0;
}

/* Glass-Effekt für Config Generator - transparent ohne Border */
.glass-effect {
  background: transparent;
  border: none;
  border-radius: 0;
}


/* ===========================
   Launcher Overlay Styles
   =========================== */

.launcher-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0a0a0f;
}

.launcher-container {
  background: rgba(15, 15, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  width: 420px;
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.launcher-logo h1 {
  color: #e0e0e0;
  font-size: 28px;
  letter-spacing: 6px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.launcher-status {
  color: #888;
  font-size: 14px;
  margin: 0 0 24px 0;
}

.launcher-form h2 {
  color: #ccc;
  font-size: 18px;
  margin: 0 0 20px 0;
  font-weight: normal;
  letter-spacing: 2px;
}

.launcher-input-group {
  margin-bottom: 14px;
}

.launcher-input-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 15px;
  font-family: 'Red Rose', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.launcher-input-group input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.launcher-input-group input::placeholder {
  color: #666;
}

.launcher-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 16px;
  font-family: 'Red Rose', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
}

.launcher-btn:hover {
  background: linear-gradient(135deg, #3a3a4e, #2a2a3e);
  border-color: rgba(255, 255, 255, 0.3);
}

.launcher-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.launcher-error {
  color: #e55;
  font-size: 13px;
  min-height: 18px;
  margin-bottom: 6px;
}

.launcher-success {
  color: #5e5;
  font-size: 13px;
  min-height: 18px;
  margin-bottom: 6px;
}

.launcher-links {
  margin-top: 16px;
}

.launcher-links a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}

.launcher-links a:hover {
  color: #bbb;
}

.launcher-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin: 20px 0 12px;
  overflow: hidden;
}

.launcher-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #444, #888, #444);
  background-size: 200% 100%;
  animation: progressPulse 1.5s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes progressPulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =====================================================================
   License Tab
   ===================================================================== */

.license-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 4px 0 8px;
}

.license-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  width: 180px;
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.license-card-active {
  border-color: rgba(100, 220, 100, 0.4);
}

.license-card-expired {
  border-color: rgba(220, 80, 80, 0.35);
  opacity: 0.65;
}

.license-card-empty {
  color: #888;
  font-size: 13px;
  border-style: dashed;
  min-width: 180px;
  max-width: 100%;
  flex: 0 1 auto;
}

.license-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.license-card-status {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.license-card-active .license-card-status {
  color: #6ddc6d;
}

.license-card-expired .license-card-status {
  color: #e05555;
}

.license-card-valid {
  font-size: 12px;
  color: #888;
}

/* Activate Key Section */
.license-activate-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 20px 24px;
  max-width: 600px;
}

.license-activate-section h4 {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.license-activate-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.license-key-input {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  color: #ddd;
  font-size: 13px;
  padding: 8px 12px;
  outline: none;
  font-family: monospace;
  letter-spacing: 0.08em;
  transition: border-color 0.2s;
}

.license-key-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.license-key-input::placeholder {
  color: #555;
  letter-spacing: 0.06em;
}
