body {
    /* background: #000; */
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
}

.partnership-banner {
    background: rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partnership-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #9b7dd8;
    font-size: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

.company-name {
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.partnership-connector {
    margin: 0 10px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-connector svg {
    width: 40px;
    height: 20px;
}

.partnership-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.promo-badge {
    background: linear-gradient(45deg, #ea33eb, #ff6bf2);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.pricing-card {
    background: #242424;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card-col {
    margin-bottom: 20px;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ea33eb 0%, #ff6bf2 100%);
    color: white;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured::before {
    content: "BEST OFFER";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ea33eb, #ff6bf2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f9f9f9;
}
h5{
    font-size: 10px;
    font-weight: 600;
    color: #f9f9f9;
}
.featured .plan-name {
    color: white;
    opacity: 0.95;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f9f9f9;
}

.featured .price {
    color: white;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.features li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #f9f9f9;
    font-weight: 500;
}

.features li:last-child {
    border-bottom: none;
}

.featured .features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: white;
    opacity: 0.9;
}

.btn-learn-more {
    background: #ea33eb;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-learn-more:hover {
    background: #ea33eb;
    transform: translateY(-2px);
    color: white;
}

.featured .btn-learn-more {
    background: white;
    color: #ea33eb;
}

.featured .btn-learn-more:hover {
    background: #f8f9fa;
    color: #ea33eb;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .partnership-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .logos-container {
        gap: 15px;
        margin: 20px 0;
    }
    .logo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 11px;
    }

    .company-name {
        font-size: 16px;
    }

    .partnership-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .promo-badge {
        font-size: 13px;
        padding: 10px 18px;
    }

    .pricing-card.featured {
        transform: none;
    }
}
@media(max-width:350px){
    .logos-container {
        flex-direction: column;
    }
    .partnership-connector {
        transform: rotate(90deg);
    }
}
@media(max-width:400px){
    .partnership-connector {
        margin: 0;
    }
    .partnership-connector svg {
        width: 20px;
        height: 10px;
    }
}
@media (max-width:500px){
    .site-logo{
        max-width: 100px;
    }
}
@media (min-width:500px){
    .site-logo{
        max-width: 140px;
    }
}
@media (min-width: 992px) {
    .pricing-card.featured {
        transform: scale(1.08);
    }

    .rounded-start-lg-4 {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
    }

    .rounded-end-lg-4 {
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
}

@media (max-width: 992px) {
    .rounded-md-4 {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
}
/****************/
.navbar.bg-dark {
    background: #000000 !important;
}
.navbar {
    padding: 0.9375rem;
    width: 100%;
    z-index: 1050;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}
.navbar .navbar-brand {
    position: relative;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
}
/****************/
.fullscreen-video-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
.fullscreen-video-container video {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
/****************/
.page-header .title {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.05;
    font-size: 2.0625rem;
}
/****************/
body .flip-clock-wrapper ul li a div div.inn, body .flip-clock-small-wrapper ul li a div div.inn {
  color: #CCCCCC;
  background-color: #333333;
}

body .flip-clock-dot, body .flip-clock-small-wrapper .flip-clock-dot {
  background: #323434;
}
body .flip-clock-wrapper .flip-clock-meridium a, body .flip-clock-small-wrapper .flip-clock-meridium a {
  color: #323434;
}
.flip-clock-label{
  font-family: 'Orbitron' !important;
    color: white !important;
    text-shadow: 0 0 black !important;
}

.flip-clock-wrapper {
  margin-left: 0px !important;
}
@media screen and (max-width: 768px) {
    .flip-clock-wrapper ul {
      font-size: 40px !important;
      height: 50px !important;
      line-height: 47px !important;
      width: 40px !important;
      margin: 5px !important;
    }
    .flip-clock-wrapper ul li a div div.inn{
      font-size: 40px !important;
    }
    .flip-clock-divider {
      height: 57px !important;
      padding-left: 0.4rem !important;
      padding-right: 0.6rem !important;
    }
    .flip-clock-label {
      right: -76px !important;
    }
}
/****************************/
.cyber-monday h1, .cyber-monday h2, .cyber-monday h3,
.cyber-monday h4, .cyber-monday h5, .cyber-monday h6 {
    font-family: 'Orbitron' !important;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 30;
    text-shadow:
      0 0 7px #000,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #0fa,
      0 0 82px #0fa,
      0 0 92px #0fa,
      0 0 102px #0fa,
      0 0 151px #0fa;
}

.text-effect{
  overflow: hidden;
  position:relative;
  -webkit-filter: contrast(110%) brightness(190%);
          filter: contrast(110%) brightness(190%);
    padding-left: 0;
    padding-right: 0;
}
.neon{
  position: relative;
  background: black;
  color: transparent;
  font: 100 50px 'Orbitron' !important;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.neon::before, .neon::after{
  content: attr(data-text);
  color: white;
  -webkit-filter:blur(0.02em);
          filter:blur(0.02em);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
}
.neon::after{
  mix-blend-mode: difference;
}
.neon:focus{
  outline: none;
  border: 1px solid white;
}
.gradient, .spotlight{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}
.gradient{
  background: linear-gradient(45deg,red,blue);
  mix-blend-mode: multiply;
}
.spotlight{
  -webkit-animation: light 5s infinite linear;
          animation: light 5s infinite linear;
  background: radial-gradient(circle,white,transparent 25%)
  0 0 / 25% 25%, radial-gradient(circle,white,black 25%)
  50% 50% / 12.5% 12.5%;
  top: -100%;
  left: -100%;
  mix-blend-mode: color-dodge;
}
@-webkit-keyframes light{
  100%{
    transform: translate3d(50%,50%,0);
  }
}
@keyframes light{
  100%{
    transform: translate3d(50%,50%,0);
  }
}
h4, .h4 {
    line-height: 1.45em;
    margin-bottom: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
}
/****************************/
.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
}
