/*!
 * Grayscale Modern - Updated 2025
 * Based on Start Bootstrap - Grayscale
 * Using original cyan/blue accent color
 */

/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   BASE STYLES
   ============================================ */
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f0f0f0;
  background-color: #0a0a0a;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 35px;
  text-transform: uppercase;
  font-family: "Inter", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
}
@media (min-width: 768px) {
  p {
    margin: 0 0 35px;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* Original cyan/blue accent color */
a {
  color: rgb(0, 204, 255);
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
  color: rgb(100, 220, 255);
}
.light {
  font-weight: 400;
}
@media (min-width: 768px) {
  .navbar-nav-li-a-small {
    padding:8px 10px!important;
  }
}

/* ============================================
   NAVIGATION - Modern glassmorphism style
   ============================================ */
.navbar-custom {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-family: "Inter", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar-custom .navbar-toggle {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  border-radius: 8px;
}
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:active {
  outline: none;
}
.navbar-custom .navbar-brand {
  font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
  outline: none;
}
.navbar-custom a {
  color: white;
}
.navbar-custom .nav li a {
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
.navbar-custom .nav li a:hover {
  color: rgb(0, 204, 255);
  outline: none;
  background-color: rgba(0, 204, 255, 0.1);
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
  outline: none;
  background-color: transparent;
}
.navbar-custom .nav li.active {
  outline: none;
}
.navbar-custom .nav li.active a {
  background-color: rgba(0, 204, 255, 0.2);
}
.navbar-custom .nav li.active a:hover {
  color: white;
}
@media (min-width: 768px) {
  .navbar-custom {
    padding: 10px 0;
    padding-bottom:0px;
    border-bottom: none;
    letter-spacing: 1px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  }
  .navbar-custom.top-nav-collapse {
    padding: 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  display: table;
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
  color: white;
  background: url(../img/intro-bg.jpg) no-repeat bottom center scroll;
  background-color: #0a0a0a;
  background-size: cover;
}
.intro .intro-body {
  display: table-cell;
  vertical-align: middle;
}
.intro .intro-body .brand-heading {
  font-size: 40px;
}
.intro .intro-body .intro-text {
  font-size: 18px;
}
@media (max-width: 768px) {
  li {
    text-align:center;
  }
}

@media (min-width: 768px) {
  .intro {
    height: 100%;
    padding: 0;
  }
  .intro .intro-body .brand-heading {
    font-size: 100px;
  }
  .intro .intro-body .intro-text {
    font-size: 26px;
  }
}

.btn-circle {
  width: 70px;
  height: 70px;
  margin-top: 15px;
  padding: 7px 16px;
  border: 2px solid white;
  border-radius: 100% !important;
  font-size: 40px;
  color: white;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.btn-circle:hover,
.btn-circle:focus {
  outline: none;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

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

.content-section {
  /*padding-top: 100px;*/
}
.download-section {
  width: 100%;
  padding: 50px 0;
  color: white;
  background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
  background-color: #0a0a0a;
  background-size: cover;
}

/* ============================================
   BUTTONS - Modern style with cyan
   ============================================ */
.btn {
  text-transform: uppercase;
  font-family: "Inter", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.btn-default {
  border: 1px solid rgb(0, 204, 255);
  outline: none;
  color: white;
  background: linear-gradient(135deg, rgb(0, 180, 230) 0%, rgb(0, 150, 200) 100%);
}
.btn-full-blue {
  border: 1px solid rgba(0, 204, 255, 0.9);
  outline: none;
  color: white;
  background: linear-gradient(135deg, rgb(0, 180, 230) 0%, rgb(0, 150, 200) 100%);
}
.btn-default:hover,
.btn-default:focus {
  border: 1px solid rgb(0, 204, 255);
  color: white;
  background: linear-gradient(135deg, rgb(0, 150, 200) 0%, rgb(0, 180, 230) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 204, 255, 0.4);
}
.btn-fill {
  border: 1px solid rgb(0, 204, 255);
  outline: none;
  color: white;
  background: linear-gradient(135deg, rgb(0, 180, 230) 0%, rgb(0, 150, 200) 100%);
}
.btn-fill:hover,
.btn-fill:focus {
  border: 1px solid rgb(0, 204, 255);
  color: white;
  background: linear-gradient(135deg, rgb(0, 150, 200) 0%, rgb(0, 180, 230) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 204, 255, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 50px 0;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer p {
  margin: 0;
  color: #888;
}

::selection {
  text-shadow: none;
  background: rgb(0, 204, 255);
  color: white;
}

/* ============================================
   CUSTOM SECTIONS
   ============================================ */
.section_title {
  font-size: 26px;
  font-family: "Inter", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0px 0px 35px;
  font-weight: 600;
}

.update_title {
  font-size: 18px;
  font-family: "Inter", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0px 0px 35px;
}

.update-item {
  text-align:left;
  padding-right:24px;
  padding-left:24px;
}

.update-image {
  margin-bottom:24px;
  border-radius: 12px;
  overflow: hidden;
}

/* Modern image hover effect */
.update-image img {
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 12px;
}
.update-image:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.preserve-newlines {
  white-space: pre-wrap;
}

.btn-dl {
  margin-left:16px;
}

input {
  color: white;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  width: 200px;
  transition: border-color 0.2s ease;
}
input:focus {
  border-color: rgb(0, 204, 255);
  outline: none;
}

.input_block {
  width:100%;
  max-width:430px;
  margin:auto;
  padding:32px;
  text-align:center;
}

.input_left { float:left; }
.input_right { float:right; }
.bottom_menu { display:inline-block !important; text-align:center; }
.no_float { float:none !important; }

/* ============================================
   PANELS - Modern card style
   ============================================ */
.panel {
  padding:24px 16px;
  margin-right:16px;
  background-color: #141414;
  border: 1px solid #222;
  border-radius: 12px;
  width:100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.panel-primary {
  background-color: #1a1a1a;
  border-color: rgb(0, 204, 255);
}

/* Price styling */
.price-holder {
  font-weight: 700;
  font-size: 70px;
  line-height: 75px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgb(0, 204, 255) 0%, rgb(0, 150, 200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.currency-sign { font-size: 35%; top: -32px; }
.price-cents { top: -32px; margin-left: 2px; font-size: 40%; }
.price-months { margin-left:-37px; font-size: 20%; line-height: 45%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }

/* Footer wrapper */
#wrapper { min-height:100%; position:relative; }
#body { padding-bottom:120px; }
#footer { bottom:0; position:absolute; width:100%; text-align:center; padding:12px 0px; font-size:12px; color: #666; }
@media (max-width: 768px) {
    #body { padding-bottom: 220px; }
    #footer { bottom: 90px; padding: 20px 15px; }
    #footer .navbar-nav li { display: inline-block; }
    #footer .navbar-nav li a { padding: 12px 16px; display: inline-block; min-height: 44px; line-height: 20px; }
}

/* Trailer */
.trailer-form-container {
  height: 512px;
  padding-bottom: 50px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.trailer-video {
  background: #111;
  width:100%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
}

.visible { }
.hidden { display:none; }

/* ============================================
   VIDEO THUMBNAILS - Modern card style
   ============================================ */
.video-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-thumbnail:hover img,
.video-thumbnail:focus img {
  filter: brightness(1.1);
}

.video-thumbnail img {
  transition: filter 0.3s ease;
  border-radius: 12px;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
  opacity: 1;
}

.thumbnail-overlay:before {
  content: ' ';
  display: block;
  height: 50%;
}

.thumbnail-overlay-bottom:before { height: 87%; }
.thumbnail-overlay-top:before { height: 0%; }

.btn-full-top {
  width:100%;
  border: none;
  outline: none;
  color: white;
  background: linear-gradient(135deg, rgb(0, 180, 230) 0%, rgb(0, 150, 200) 100%);
  border-radius: 8px 8px 0 0;
}

.play-button {
  height: 60px;
  width: 60px;
  margin: -30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgb(0, 180, 230) 0%, rgb(0, 150, 200) 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 204, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button:hover,
.play-button:focus {
  background: linear-gradient(135deg, rgb(0, 150, 200) 0%, rgb(0, 180, 230) 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 204, 255, 0.6);
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 24px;
  border-color: transparent transparent transparent #ffffff;
  margin: auto;
  margin-left: 8px;
}

.menu-bottom-line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   RIBBON - Modernized with cyan
   ============================================ */
.ribbon-wrapper-green {
  width: 140px;
  height: 140px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
}

.ribbon-green {
  font: bold 15px "Inter", Sans-Serif;
  color: white;
  text-align: center;
  transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -10px;
  top: 40px;
  width: 190px;
  background: linear-gradient(135deg, rgb(0, 180, 230) 0%, rgb(0, 150, 200) 100%);
  box-shadow: 0 2px 10px rgba(0, 204, 255, 0.4);
}

.ribbon-green:before, .ribbon-green:after {
  content: "";
  border-top: 3px solid rgb(0, 120, 160);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position:absolute;
  bottom: -3px;
}

.ribbon-green:before { left: 0; }
.ribbon-green:after { right: 0; }

.ribbon-change-to-white {
  background: linear-gradient(135deg, #f0f0f0 0%, #d6d6d6 100%);
  color: #333;
}
.ribbon-change-to-white:before, .ribbon-change-to-white:after {
  border-top: 3px solid #bbb;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
*:focus {
  outline: 2px solid rgb(0, 204, 255);
  outline-offset: 2px;
}
