/* Global text selection styles */
/* *, 
*::before, 
*::after {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  cursor: auto !important;
  pointer-events: auto !important;
} */

body {
  margin: 0;
  /*height: 100%;*/
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  cursor: auto !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 20px;*/
  width: 100%;
  padding-left: clamp(6px,4vw,2rem);
  padding-right: clamp(6px,4vw,2rem);
}

.hero-section {
  padding: 60px 0;
  text-align: center;
}

.contact-section {
  padding: 60px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.gap-middle{
  gap: 1rem;
}


* {
  box-sizing: border-box;
  /*border: 1px solid #80FF1C;*/
}
section{
  width: 100%;
}

main{
  width: 100%;
}

.flex-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wrapper {
  /* padding-top: 5rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}


.full-height {
  height: 100%;
}

.homepage-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.justify-content-sb {
  flex-grow: initial;
}

.top-bar{
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  padding-left: clamp(1rem,4vw,1.2rem);
  padding-right: clamp(1rem,4vw,1.2rem);
  background: #fafafa;
  align-items: center;
  position: fixed;
  z-index: 10000;
  gap: 2rem;
}


.hero-active-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  color: var(--pfc-color-bg);
}

.hero-button-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

footer {
  width: 100%;
  background-color: black;
  /* height: 100px; */
  align-items: center;
  display: flex
;
  flex-direction: column;
  justify-content: center;
  /* min-height: 200px; */
}

.text-button {
  text-decoration: none;
  color: white;
}

.button-default {
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  border: black;
  color: black;
  background-color: #cccccc;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0.5rem;
}

.button-default:hover {
  border: black;
  color: #fdfdfd;
  background-color: black;
  cursor: pointer;
}

.trailer {
  /*height: 300px;*/
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  border: 0;
  aspect-ratio: 16/9;
}

.banner {
  height: 380px;
  background-color: #184BE5;
  border-radius: 36px;
  display: flex;
  flex-direction: row-reverse;
  padding: 0 10% 0 0;
  color: white;
}

.banner-part {
  display: flex;
  align-items: center;
  justify-content: center;
}


.sm-button {
  background: rgba(256, 256, 256, 0.2);
  border-radius: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  /*width: 70px;*/
  /*height: 70px;*/
  padding: 0;
  transition: all 0.1s ease-in-out;
}

.sm-button:hover {
  content: '';
  background: rgba(256, 256, 256, 0.4);
  transition: all 0.1s ease-in-out;
  transform: scale(1.1)
}

.store-button {
  transition: all 0.1s ease-in-out;
  width: 100%;
  max-width: 190px;
  height: auto;
}

.store-button:hover {
  transition: all 0.1s ease-in-out;
  transform: scale(1.1);
}

.sm-icon {
  width: 60px;
  height: auto;
}

.platform-icon {
  width: 40px;
  height: auto;
  opacity: 0.5;
}

.page-navigation-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.page-text-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #C8C8C8;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 25px;
}

.page-text-button:hover {
  color: black;
}

.first-container-padding {
  padding-top: 80px;
  /*min-height: 90vh;*/
}

/* Table container */
.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}

table {
  width: 100%;
  min-width: 100%;
  border-spacing: 0;
  table-layout: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}

/*}*/
thead{
  position: sticky;
  top: 0;
  background-color: #fafafa;
  border: 2px solid gray;
  height: 25px;
}

tr{
  text-align: left;;
  word-break: break-word;
}
td {
  min-width: 300px;
  max-width: 600px;
  vertical-align: top;
  text-align: left;
  border: 1px solid gray;
  padding: 8px 12px;
  word-break: break-word;
}

/* Optional: Add a subtle shadow to indicate scrollability */
.table-container::-webkit-scrollbar {
  height: 8px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}


.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.fullscreen-section {
  position: relative;
  height: 100vh;
  max-height: 1080px;
  overflow: hidden;
}

.section-70vh{
  height: 70vh;
  max-height: 700px;
  min-height: 700px;
}

.hero-video{
  /*position: relative;*/
  /*aspect-ratio: 16.9;*/
  height: 100%;
  object-fit: cover;

  position: relative;
  /*object-fit: cover;*/
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  filter: brightness(20%);
}

.hero-block-info {
  /*padding-top: 10vh;*/
  /*padding-bottom: 10vh;*/
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  /*background-color: rgb(0 0 0 / 52%);*/
  width: 100%;
  height: 100%;

  /*z-index: 1;*/
  /*position: relative;*/

  /*height: 100%;*/
  /*width: fit-content;*/
  /*max-width: 60%;*/
  /*padding-left: 10%;*/
  /*display: flex;*/
  /*flex-direction: column;*/
  /*justify-content: center;*/
  /*align-content: flex-end;*/
  /*pointer-events: auto;+*/
}

#videoMessage{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-block{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  width: 100%;
  padding: 0 clamp(6px, 4vw, 2rem);
  justify-items: center;
  align-items: center;
}
.on{
  display: block !important;
}

.off{
  display: none !important;
}

.top-padding{
  padding-top: 5rem;
}

/* Button and link styles - prevent text selection and ensure pointer cursor */
a,
button, 
.button, 
[role="button"],
.btn,
.btn-download,
.store-button,
.sm-button,
.asset-item a,
.asset-preview {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  cursor: pointer !important;
}


.red{
  background-color: var(--pfc-color-red);
}


/* Social Buttons Section */
.follow-block {
  width: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  gap: 1rem;
  border-radius: 2rem;
  background-color: white;
  margin: 2rem 0;
}

.row-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.circle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  background-color: var(--pfc-color-bg);
  border: 2px solid var(--pfc-color-border);
  border-radius: 50%;
  box-shadow: 0 5px 0 var(--pfc-color-border);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.circle-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 0 var(--pfc-color-border);
}

.social-icons {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}

.on{
  display: block !important;
}

.off{
  display: none !important;
}

