@charset "utf-8";
/* CSS Document */


   html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      background-image: url(../bg-temp/bg.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      display: flex;
      flex-direction: column;
      min-height: 100vh;
      font-family: 'Inter', sans-serif;
      color: white;
    }

    body {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
      box-sizing: border-box;
    }
	
	@media (max-width: 1024px) {
    html, body {
      margin-top: 0 !important;
   }

    main {
      padding-top: 10px !important;
      }
   }

    .player-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      box-sizing: border-box;
    }

    .video-js {
      width: 900px;
      max-width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    }

    .vjs-big-play-button {
      display: none !important;
    }

    .video-js.vjs-theme-fantasy .vjs-control-bar {
      background-color: rgba(0, 0, 0, 0.4) !important;
      backdrop-filter: blur(2px);
      transition: background-color 0.3s;
    }

    .video-js:hover .vjs-control-bar,
    .video-js.vjs-user-active .vjs-control-bar {
      background-color: rgba(0, 0, 0, 0.6) !important;
    }
    
    .video-js .vjs-play-control {
      margin-top: 2px;
    }

    .vjs-live-control {
      display: flex !important;
      align-items: center !important;
      padding-left: 10px;
      height: 100%;
      position: relative;
      top: 1px;
      font-weight: 600;
      font-size: 1rem;
      color: #ff4c4c;
    }

    .video-preview-label {
      text-align: center;
      font-size: 1.6rem;
      font-weight: 600;
      margin: 1.5rem auto 3rem auto;
      color: #ffffff;
      width: 100%;
      font-family: 'Inter', sans-serif !important;
    }

    /* Responsive scaling */
    @media (min-width: 480px) {
      .video-preview-label {
        font-size: 1.8rem;
      }
    }

    @media (min-width: 768px) {
      .video-preview-label {
        font-size: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .video-preview-label {
        font-size: 2.2rem;
      }
    }

    footer {
      font-family: Arial, sans-serif;
      font-size: 12px;
      color: #999999;
      text-align: center;
      background: transparent;
      flex-shrink: 0;
      line-height: 1.4;
	  height:40px;
	  padding-left: 4px;
	  padding-right:4px;
    }

    footer p {
      margin: 0;
      padding: 0;
    }