 :root {
      --primary-grad: linear-gradient(135deg, #ff2f75 0%, #e50914 100%);
      --glass-bg: rgba(20, 15, 20, 0.45);
      --glass-border: rgba(255, 255, 255, 0.12);
      --neon-glow: 0 0 24px rgba(255, 47, 117, 0.5);
      --gold-grad: linear-gradient(135deg, #ffd15c 0%, #f39c12 100%);
      /* Increased footer space to accommodate the larger form */
      --footer-space: 260px; 
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    body, html {
      height: 100%;
      width: 100%;
      overflow: hidden; /* STRICTLY NO SCROLLING */
    }

    body {
      font-family: 'Poppins', 'sans-serif';
      background: #050505;
      color: #fff;
      width: 100%;
      min-height: 100dvh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      -webkit-font-smoothing: antialiased;
    }

    /* PROPER MOBILE VIEW ONLY */
    .device-container {
      width: 100vw;
      max-width: 430px;
      min-width: 320px;
      height: 100dvh;
      min-height: 100dvh;
      margin: 0 auto;
      background: #000;
      position: relative;
      overflow: hidden;
    }

    /* 3D CAROUSEL HERO BACKGROUND */
    .hero-carousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 44dvh;
      min-height: 315px;
      max-height: 410px;
      z-index: 1;
      perspective: 1200px;
      overflow: hidden;
      background: #000;
    }

    .hero-carousel::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 60%, #000 100%);
      z-index: 5;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center top;
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      opacity: 0;
      transform: translateZ(-300px);
    }

    .carousel-slide.active {
      opacity: 1;
      transform: translateZ(0) scale(1.05);
      z-index: 3;
    }

    .carousel-slide.prev {
      opacity: 0.3;
      transform: translateX(-50%) translateZ(-200px) rotateY(15deg);
      z-index: 2;
    }

    .carousel-slide.next {
      opacity: 0.3;
      transform: translateX(50%) translateZ(-200px) rotateY(-15deg);
      z-index: 2;
    }

    /* PREMIUM ORB BACKLIGHT */
    .premium-orb {
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255,47,117,0.2) 0%, transparent 70%);
      filter: blur(40px);
      z-index: 2;
      pointer-events: none;
    }

    /* MAIN CONTENT LAYOUT */
    .main-content {
      position: relative;
      z-index: 10;
      width: 100%;
      height: 100dvh;
      padding: 15px 15px calc(var(--footer-space) + 5px);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* HEADER & BANNER INFO */
    .top-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: 0;
      flex: 1 1 auto;
      overflow: hidden;
    }

    /* INCREASED LOGO SIZE */
    .logo-img {
      width: clamp(150px, 45vw, 220px);
      max-width: 250px;
      max-height: 80px;
      height: auto;
      object-fit: contain;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 15px rgba(255, 47, 117, 0.6));
      position: relative;
      z-index: 20;
      display: block;
      flex-shrink: 0;
    }

    .banner-title {
      font-size: clamp(20px, 3dvh, 26px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: clamp(10px, 1.5dvh, 15px);
      background: linear-gradient(180deg, #FFFFFF 0%, #D1D1D1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    }

    /* DEDICATED SEPARATE SHOW BANNERS SECTION - SMALLER CARDS */
    .shows-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 0;
      min-height: 0;
      flex: 1 1 auto;
    }

    .shows-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 4px;
    }

    .shows-header span.section-title {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
    }

    .shows-carousel-viewport {
      width: 100%;
      overflow: hidden;
      position: relative;
      min-height: 0;
      flex: 1 1 auto;
      mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }

    .shows-track {
      display: flex;
      gap: 12px;
      width: max-content;
      padding: 6px 4px; 
      animation: scrollShows 25s linear infinite;
    }

    .shows-track:hover {
      animation-play-state: paused;
    }

    @keyframes scrollShows {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-50% - 6px)); }
    }

    /* SMALLER PREMIUM CARD DESIGNS */
    .show-banner-card {
      width: clamp(110px, 30vw, 140px);
      height: clamp(155px, 24dvh, 205px);
      border-radius: 12px;
      background-size: cover;
      background-position: center top;
      position: relative;
      flex-shrink: 0;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .show-banner-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 12px;
      padding: 1px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 47, 117, 0.4) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 3;
      transition: all 0.3s ease;
    }

    .show-banner-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 100%);
      z-index: 1;
      transition: all 0.3s ease;
    }

    .show-banner-card:active {
      transform: scale(0.96) translateY(2px);
    }

    /* AUTHENTICATION BOX - ENLARGED */
    .auth-container,
    .mobile-footer {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 12px;
      z-index: 50;
      width: auto;
      max-width: calc(100% - 20px);
      margin: 0;
      padding: 16px 16px calc(14px + env(safe-area-inset-bottom));
      background:
        radial-gradient(circle at 18% 0%, rgba(255, 47, 117, 0.30), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(229, 9, 20, 0.22), transparent 33%),
        linear-gradient(145deg, rgba(35, 17, 30, 0.94), rgba(10, 8, 12, 0.94));
      backdrop-filter: blur(26px);
      -webkit-backdrop-filter: blur(26px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 28px;
      box-shadow:
        0 -16px 45px rgba(0, 0, 0, 0.72),
        0 16px 40px rgba(0, 0, 0, 0.55),
        0 0 34px rgba(255, 47, 117, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -18px 30px rgba(0, 0, 0, 0.22);
      transform: translateZ(0);
      animation: footerFloat3D 4.6s ease-in-out infinite;
    }

    .auth-container::before,
    .mobile-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: inherit;
      background: linear-gradient(120deg, rgba(255,255,255,0.28), rgba(255,47,117,0.68), rgba(229,9,20,0.36), rgba(255,255,255,0.14));
      background-size: 240% 240%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
      animation: footerBorderMove 5s linear infinite;
    }

    .auth-container::after,
    .mobile-footer::after {
      content: "";
      position: absolute;
      top: -60%;
      left: -45%;
      width: 70%;
      height: 220%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
      transform: rotate(24deg);
      pointer-events: none;
      z-index: 1;
      animation: footerShine 4.2s ease-in-out infinite;
    }

    @keyframes footerFloat3D {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-3px) scale(1.006); }
    }

    @keyframes footerBorderMove {
      0% { background-position: 0% 50%; }
      100% { background-position: 240% 50%; }
    }

    @keyframes footerShine {
      0%, 48% { left: -75%; opacity: 0; }
      55% { opacity: 1; }
      72% { left: 115%; opacity: 0; }
      100% { left: 115%; opacity: 0; }
    }

    .plan-section {
      position: relative;
      z-index: 3;
      margin: 0 0 14px;
    }

    .plan-section-header {
      display: flex;
      align-items: center;
      justify-content: center; /* Centered the title */
      gap: 8px;
      margin-bottom: 12px;
    }

    .plan-title {
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      text-align: center;
    }

    /* 3 CARDS LAYOUT */
    .plan-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      align-items: stretch;
      max-width: 100%; 
      margin: 0 auto; 
    }
	 
	 
    .plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 105px;
      padding: 14px 8px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      border: 1px solid rgba(255,255,255,0.15);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 22px rgba(0,0,0,0.22);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      text-align: center; /* Center general text */
      cursor: pointer;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 40%);
      pointer-events: none;
    }

    /* FEATURED CARD WITH ATTRACTIVE ANIMATION */
    .plan-card.featured {
      background: linear-gradient(145deg, rgba(255, 47, 117, 0.28), rgba(229, 9, 20, 0.2), rgba(255,255,255,0.05));
      border-color: rgba(255, 96, 145, 0.5);
      z-index: 10;
      animation: pulseGlow 2.5s infinite alternate ease-in-out;
    }

    @keyframes pulseGlow {
      0% {
        box-shadow: 0 8px 20px rgba(229, 9, 20, 0.25), 0 0 15px rgba(255, 47, 117, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
        transform: scale(1) translateY(0);
      }
      100% {
        box-shadow: 0 14px 28px rgba(229, 9, 20, 0.45), 0 0 35px rgba(255, 47, 117, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
        transform: scale(1.02) translateY(-2px);
      }
    }
	
	
	
	
	.plan-grid-one 	 {
		display: flex;
		justify-content: center;
		max-width: 100%;
		margin: 0 auto;
		
	 }
	 
	 .plan-card-one {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 105px;
    padding: 14px 10px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 47, 117, 0.28), rgba(229, 9, 20, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 96, 145, 0.5);
    box-shadow: 0 14px 28px rgba(229, 9, 20, 0.25), 0 0 24px rgba(255, 47, 117, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    z-index: 10;
    width: 90%;
    animation: pulseGlow 2.5s infinite alternate ease-in-out;
	 }
	 
	  .plan-card-one::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 40%);
      pointer-events: none;
    }

    /* FEATURED CARD WITH ATTRACTIVE ANIMATION */
    .plan-card-one.featured {
      background: linear-gradient(145deg, rgba(255, 47, 117, 0.28), rgba(229, 9, 20, 0.2), rgba(255,255,255,0.05));
      border-color: rgba(255, 96, 145, 0.5);
      z-index: 10;
      animation: pulseGlow 2.5s infinite alternate ease-in-out;
    }


.plan-card-one.featured .plan-tag
 {
    background: linear-gradient(135deg, #ffd15c, #f39c12);
    color: #111;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 14px rgba(243, 156, 18, 0.3);
    font-size: 10px;
	
 }
   .plan-name-one {
      font-size: 1.05em;
      line-height: 1.1;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
    }

   .plan-amount-one {
      font-size: 2.0em;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .plan-currency-one {
      font-size: 1.25em;
      font-weight: 800;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
    }
	
		.best-value-badge{
		  position: absolute;
			top: 2px;
			right: 2px;
			background: linear-gradient(135deg, #ffb400, #ff7b00);
			color: #fff;
			font-size: 11px;
			font-weight: 700;
			padding: 5px 6px;
			border-radius: 40px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
			white-space: nowrap;
			z-index: 10;
		}

    .plan-card-top {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center; /* Horizontally center content */
      gap: 8px;
    }

    .plan-name {
      font-size: 11px;
      line-height: 1.1;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
    }

    .plan-tag {
      align-self: center; /* Center the tag horizontally */
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 8px;
      font-weight: 900;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
      border: 1px solid rgba(255,255,255,0.15);
    }

    .plan-card.featured .plan-tag {
      background: linear-gradient(135deg, #ffd15c, #f39c12);
      color: #111;
      border-color: rgba(255,255,255,0.2);
      box-shadow: 0 6px 14px rgba(243, 156, 18, 0.3);
      font-size: 9px;
    }

    .plan-price {
      position: relative;
      z-index: 2;
      margin-top: 20px;
      display: flex;
      justify-content: center; /* Horizontally center price elements */
      align-items: baseline;
      gap: 3px;
      flex-wrap: wrap;
    }

    /* EQUALIZED PRICE TEXT */
    .plan-amount {
      font-size: 20px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .plan-currency {
      font-size: 10px;
      font-weight: 800;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
    }

    .plan-duration {
      font-size: 9px;
      font-weight: 700;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      width: 100%;
      text-align: center;
      margin-top: 2px;
    }

    .auth-content {
      position: relative;
      z-index: 3;
    }

    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* ENLARGED FORM INPUT */
    .input-group input {
      width: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.35));
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      padding: 14px 16px;
      min-height: 52px;
      border-radius: 16px;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      outline: none;
      transition: all 0.3s ease;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.2);
    }

    .input-group input:focus {
      border-color: #ff2f75;
      background: rgba(0, 0, 0, 0.7);
      box-shadow: 0 0 0 4px rgba(255, 47, 117, 0.2);
    }

    .input-group input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    /* ENLARGED SHIMMER BUTTON */
    .btn-submit {
      position: relative;
      width: 100%;
      background: linear-gradient(135deg, #ff2f75 0%, #e50914 55%, #ff5a3d 100%);
      color: #fff;
      border: none;
      padding: 14px 16px;
      min-height: 54px;
      border-radius: 16px;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.5px;
      cursor: pointer;
      box-shadow:
        0 12px 24px rgba(229, 9, 20, 0.35),
        0 0 22px rgba(255, 47, 117, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
      transition: transform 0.2s;
      overflow: hidden;
    }

    .btn-submit::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
      transform: skewX(-25deg);
      animation: shimmer 4s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      20% { left: 200%; }
      100% { left: 200%; }
    }

    .btn-submit:active {
      transform: translateY(2px) scale(0.97);
      box-shadow: inset 0 5px 12px rgba(0,0,0,0.3);
    }

    .terms-text {
      text-align: center;
      font-size: 10px;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 12px;
    }

    .terms-text a {
      color: #ff4caf;
      text-decoration: none;
      font-weight: 600;
    }

    /* TOAST NOTIFICATION */
    #toast-container {
      position: absolute;
      top: 20px;
      left: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
    }

    .toast {
      background: rgba(20, 20, 20, 0.95);
      color: #fff;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      border-left: 4px solid #ff2f75;
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
      transform: translateY(-20px);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-align: center;
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    /* TALL SCREENS */
    @media (min-height: 840px) {
      .show-banner-card { width: 135px; height: 200px; }
      .logo-img { width: 220px; margin-bottom: 16px; } 
      .banner-title { font-size: 28px; margin-bottom: 22px; }
    }

    /* iPHONE XR, 14 PRO MAX & EXTRA LARGE SCREENS (Fill empty space) */
    @media screen and (min-width: 414px) and (min-height: 890px) {
      :root { --footer-space: 340px; }
      .main-content { padding-top: 25px; }
      
      /* Make behind banner larger so more of the slides/lines are visible */
      .hero-carousel { height: 55dvh; max-height: 550px; }
      
      .logo-img { width: 300px; max-width: 350px; margin-bottom: 20px; }
      .banner-title { font-size: 34px; margin-bottom: 25px; line-height: 1.2; }
      .show-banner-card { width: 150px; height: 230px; }
      
      .auth-container, .mobile-footer {
        padding: 24px 20px calc(20px + env(safe-area-inset-bottom));
        border-radius: 36px;
      }
      .plan-card { min-height: 125px; }
      .plan-amount { font-size: 30px; }
      
      .input-group input { min-height: 64px; font-size: 18px; padding: 18px 20px; border-radius: 20px; }
      .btn-submit { min-height: 66px; font-size: 18px; border-radius: 20px; }
    }

    /* SMALL MOBILE SCREENS */
    @media (max-width: 380px), (max-height: 700px) {
      :root { --footer-space: 240px; }
      .main-content { padding-top: 10px; }
      .logo-img { width: 150px; margin-bottom: 8px; } 
      .banner-title { font-size: 22px; margin-bottom: 10px; }
      .show-banner-card { width: 100px; height: 145px; }
      
      .auth-container, .mobile-footer {
        padding: 12px 12px calc(10px + env(safe-area-inset-bottom));
      }
      .plan-card { padding: 10px 8px; min-height: 95px; }
      .plan-amount { font-size: 18px; }
      .plan-name { font-size: 10px; }
      .plan-tag { font-size: 8px; }
      
      .input-group input { min-height: 48px; font-size: 15px; padding: 12px; }
      .btn-submit { min-height: 50px; font-size: 15px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .mobile-footer,
      .auth-container,
      .btn-submit::after,
      .mobile-footer::before,
      .mobile-footer::after,
      .plan-card.featured {
        animation: none !important;
      }
    }
	
	.phone-group{
    display:flex;
    align-items:center;
    gap:10px;
}

.country-code{
    min-width:72px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    border-radius:14px;
    color:#fff;
    font-size:16px;
    font-weight:600;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    user-select:none;
}

.phone-input{
    flex:1;
    height:52px;
    border:none;
    outline:none;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    border-radius:14px;
    padding:0 16px;
    color:#fff;
    font-size:16px;
    font-weight:500;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.phone-input::placeholder{
    color:rgba(255,255,255,.6);
}




	/* FULLSCREEN OVERLAY */
.redirect-loader{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;

    display: none;
    align-items: center;
    justify-content: center;
}

/* CENTER BOX */
.loader-box{
    width: 280px;
    padding: 30px 25px;
    border-radius: 24px;

    background: rgba(20,20,20,0.85);
    border: 1px solid rgba(255,215,0,0.15);

    text-align: center;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.45),
        0 0 30px rgba(255,204,0,0.08);
}

/* SPINNER */
.modern-spinner{
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;

    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.1);
    border-top: 5px solid #ffcc00;

    animation: spinLoader 1s linear infinite;
}

/* TITLE */
.loader-box h3{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* SUBTITLE */
.loader-box p{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}

/* TOP BAR */
#pageLoader{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:rgba(255,255,255,0.08);
    z-index:9999999;
}

#loaderBar{
    width:0%;
    height:100%;
    background: linear-gradient(90deg,#ffcc00,#ff8800);
    transition: width .3s ease;
    box-shadow: 0 0 15px #ffcc00;
}

/* SPIN */
@keyframes spinLoader{
    100%{
        transform: rotate(360deg);
    }
}