html {
    font-size: 16px;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-VariableFont_wdth,wght.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section h2 {
    font-size: 1.8rem;
}

body {
    background-color: #040714;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
	color: #fff;
}

main {
    display: flex;
    flex-direction: column;
	gap: 60px;
}

@view-transition {
    navigation: auto;
}

@keyframes zoom-out-blur {
    from {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }

    to {
        transform: scale(0.9);
        opacity: 0;
        filter: blur(10px);
    }
}

@keyframes zoom-in-clear {
    from {
        transform: scale(1.1);
        opacity: 0;
        filter: blur(10px);
    }

    to {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

::view-transition-old(main),
::view-transition-new(main) {
    animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

::view-transition-old(main) {
    animation-name: zoom-out-blur;
}

::view-transition-new(main) {
    animation-name: zoom-in-clear;
}

.hello-world-link {
    color: yellow;
    transition: color 0.2s ease;
}

.hello-world-link:hover {
    color: #CCCC00;
}

.hero-container {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

/*Header->*/

.main_logo {
	width: 45px;
  	height: 45px;
}

header {
    flex-shrink: 0;
}

.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #5800FF;
    padding: 20px;
    color: white;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
}

.tagline {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #040714;
    color: #FFF;
    text-decoration: none;
    transition: background-color 0.2s ease;
	cursor: pointer;
}

.social-icon:hover {
    background-color: #4B5165;
}

/*<-Header*/

/*Footer->*/

.footer {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #0E0B14;
    color: #FFF;
}

.footer ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.footer ul li {
    margin: 1rem;
    box-sizing: border-box;
}

.footer a {
    color: #FFF;
    text-decoration: none;
}

.footer p {
    width: 100%;
}

#footer-logo {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#footer-politics {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    list-style: none;
}

#footer-actions li a:hover{
	color: #FF1A75ff;
}

#footer-politics li a:hover{
	color: #FF1A75ff;
    
}

.footer-icons:hover {
  	fill: #FF1A75;
  	transition: fill 0.2s;
    transform: translateY(-2px);
}

/*<-Footer*/

/*section-politics->*/

@media (width >= 640px) {
    .section-politics {
        grid-column: 1 / -1;
    }

    .section-politics > * {
        width: fit-content;
        max-width: 66.666%;
    }
}

.section-politics {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 40px;
  	padding-right: 40px;
  	flex: 1;
	width: 100%;
}

.section-politics h2 {
	margin-bottom: 30px;
	text-align: center;
}


.section-politics p {
	line-height: 2rem;
	font-size: 1rem;
	font-weight: 400;
}

.footer-icons:hover {
	fill:#FF1A75ff; 
	transition: fill 0.2s;
    transform: translateY(-2px);
}

.titles{
	color: #FF1A75ff;
	transition: fill 0.2s;
}

.tab {
	position: relative;
}

.tab input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.tab__content {
	color:white;
	max-height: 0;
	overflow: hidden;
	transition: all 0.35s;
}

.tab input:checked ~ .tab__content {
	max-height: 200rem;
}

.accordion {
	color: #5800FF;
	border: 0.5px solid;
	border-radius: 0.5rem;
	overflow: hidden;
}

.tab__label,
.tab__close {
	display: flex;
	color: white;
	background: #5800FF;
	cursor: pointer;
}

.tab__label {
	justify-content: space-between;
	padding: 1rem;
}

.tab__label::after {
	content: "\276F";
	width: 1em;
	height: 1em;
	text-align: center;
	transform: rotate(90deg);
	transition: all 0.35s;
}

.tab input:checked + .tab__label::after {
	transform: rotate(270deg);
}

.tab__content p {
	color: white;
	margin: 0;
	padding: 1rem;
}

.tab__content ul {
	color: white;
	margin: 0;
	padding: 1rem;
}

.tab__content ol {
	color: white;
	margin: 0;
	padding: 1rem;
}

.tab__close {
	justify-content: flex-end;
	padding: 0.5rem 1rem;
	font-size: 1rem;
}

.accordion--radio {
	--theme: white;
}

.tab input:not(:checked) + .tab__label:hover::after {
	animation: bounce .5s infinite;
}

@keyframes bounce {
	25% {
	  transform: rotate(90deg) translate(.25rem);
	}
	75% {
	  transform: rotate(90deg) translate(-.25rem);
	}
}

#footer-actions li a:hover{
	color: #FF1A75ff;
	transition: color 0.2s;
}

#footer-politics li a:hover{
	color: #FF1A75ff;
	transition: color 0.2s;
}

.tab__content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
}

.section-politics li {
    margin-left: 0;
}

.tab__content ul, 
.tab__content ol {
    padding-left: 1rem;
    width: 100%;
}

.tab__label {
    padding: 0.8rem;
    font-size: 1rem;
}

/* buy-card-section */

.buy-card-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
}

@media (min-width: 640px) {
    .buy-card-section {
        grid-column: 1 / -1;
        padding: 0px 40px;
    }
}

.buy-card-section .card {
    width: 100%;
    max-width: 620px;
    margin: 20px auto;
    background: #ffffff;
    border: 1px solid #5800FF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(4, 7, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.buy-card-section .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(4, 7, 20, 0.12);
}


/* Imagen */

.buy-card-section .photo {
    width: 100%;
    padding: 0;
    line-height: 0;
    position: relative;
}

.buy-card-section .photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}


/* Contenido */

.buy-card-section .description {
    width: 100%;
    padding: 32px 34px 30px;
    text-align: center;
    border-top: none;
}


/* Club */

.buy-card-section .description h2 {
    margin: 0 0 8px;
    color: #040714;
    font-weight: 700;
    letter-spacing: -0.02em;
}


/* Cancha */

.buy-card-section .description h4 {
    margin: 0 0 22px;
    color: #5800FF;
    font-weight: 600;
    letter-spacing: 0.03em;
}


/* Precio */

.buy-card-section .description h1 {
    margin: 0 0 22px;
    color: #040714;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -0.04em;
}


/* Información del partido */

.buy-card-section .match-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto 24px;
    padding: 16px 18px;
    background: #f7f7fa;
    border-radius: 10px;
    color: #040714;
    font-size: 1rem;
}

.buy-card-section .match-info strong {
    font-weight: 650;
}


/* Textos */

.buy-card-section .description p {
    margin: 0 0 18px;
    padding: 0;
    color: #5f6270;
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 400;
}

.buy-card-section .description p:last-of-type {
    margin-bottom: 24px;
}


/* Link */

.buy-card-section .purchase-link {
    color: #5800FF;
    text-decoration: none;
    font-weight: 650;
    transition: opacity 0.2s ease;
}

.buy-card-section .purchase-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}


/* Botón de pago */

#payment_button {
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    border: none;
    border-radius: 9px;
    background: #5800FF;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 650;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(88, 0, 255, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease,
                box-shadow 0.2s ease;
}

#payment_button:hover {
    background: #4700d9;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(88, 0, 255, 0.28);
}

#payment_button:active {
    transform: translateY(0);
}


/* Iconos */

.inline-icon {
    position: relative;
    top: 2px;
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}


/* Inputs */

.input-gen {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #dcdde5;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-gen:focus {
    border-color: #5800FF;
    box-shadow: 0 0 0 3px rgba(88, 0, 255, 0.1);
}

.input-gen::placeholder {
    font-size: 14px;
}


/* Responsive */

@media (max-width: 639px) {

    .buy-card-section {
        padding: 0px 40px;
    }

    .buy-card-section .card {
        margin: 10px auto;
        border-radius: 14px;
    }

    .buy-card-section .photo img {
        height: 190px;
    }

    .buy-card-section .description {
        padding: 26px 22px 24px;
    }

    .buy-card-section .description h1 {
        font-size: 2.25rem;
    }
}


/*<- buy-card-section */


.installation{
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.red-effect {
  text-decoration: none; 
  color: white; 
  font-weight: 500;
  transition: color 0.2s;
}

.red-effect:hover {
  color: #FF1A75;
}

/*view transition*/

@view-transition {
  navigation: auto;
}

::view-transition-old(main),
::view-transition-new(main) {
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

/* Viejo contenido se aleja, se desenfoca y se desvanece */
::view-transition-old(main) {
  animation-name: zoom-out-blur;
}

/* Nuevo contenido entra con zoom y nitidez */
::view-transition-new(main) {
  animation-name: zoom-in-clear;
}

@keyframes zoom-out-blur {
  from {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  to {
    transform: scale(0.9);
    opacity: 0;
    filter: blur(10px);
  }
}

@keyframes zoom-in-clear {
  from {
    transform: scale(1.1);
    opacity: 0;
    filter: blur(10px);
  }
  to {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/*view transition*/

@media (orientation: portrait) {
  .article-subscription{
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .card {
    flex-direction: row;
  }

  .photo {
    width: 100%;
    padding: 30px;
    border-right: 2px solid #efefef;
  }

  .description {
    width: 65%;
    padding: 30px;
    border-top: none;
  }
}

@media (min-width: 768px) {
    
    .tab__content ul, 
    .tab__content ol {
        padding-left: 1.5rem;
    }
    
    .tab__label {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 800px) {
    .card1 {
		width: 100%;
	}
	.container b{
		font-size: 2rem;
	}
}

@media screen and (max-width: 480px) {
	.card1 {
		width: 100%;
	}
	.container b{
		font-size: 1rem;
	}
}

@media (min-width:800px) and (orientation: portrait){
    .responsive-three-column-grid {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width:1000px) and (orientation: landscape) {
    .responsive-three-column-grid {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (orientation: portrait) {
  .section-politics article ul{
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@keyframes cardAnimation {
  60% {
    background-size: 300px 420px;
    background-position-x: 60%;
    background-position-y: 60%;
  }
}

@keyframes cardGradient {
  0% { background-position: 0% 10%; }
  50% { background-position: 100% 91%; }
  100% { background-position: 0% 10%; }
}


/*section-cards->*/

.section-cards {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
  padding: 0px 40px;
}

.card-shorts {
  color: white;
  overflow: hidden;
  background-color: rgb(42, 41, 45);
  border-radius: 10px;
  height: 420px;
  width: 300px;
  position: relative;
  box-sizing: border-box;
  padding: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  -webkit-font-smoothing: antialiased;
  /*font-size: 14px;*/
  transition: all 0.3s;
  border: 1px solid #5800FF;
  color: rgb(255, 255, 255);

  &:before {
      content: "";
      width: 100%;
      height: 100%;
      box-shadow: 0 -1px 0 0 rgb(255 255 255 / 90%), 0 1px 0 0 rgb(0 0 0 / 20%);
      position: absolute;
      z-index: 1;
      border-radius: 10px;
	  background: linear-gradient(
          120deg,
          rgb(255 255 255 / 2%) 30%,
          rgb(255 255 255 / 25%) 40%,
          rgb(255 255 255 / 8%) 40%
        ),
        linear-gradient(0deg, rgb(255 255 255 / 20%), rgb(255 255 255 / 30%));
    }

  img {
      filter: drop-shadow(0px 1px 0px rgba(255, 255, 255, 0.3))
        drop-shadow(0 2px 16px rgba(0, 0, 0, 0.12))
        drop-shadow(0px 0px 12px rgba(255, 255, 255, 1));
      filter: drop-shadow(0px 1px 0px rgba(255, 255, 255, 0.3))
        drop-shadow(0 2px 16px rgba(0, 0, 0, 0.12))
        drop-shadow(0px 0px 12px rgba(255, 255, 255, 1));
      filter: drop-shadow(0px 1px 0px rgba(255, 255, 255, 0.3))
        drop-shadow(0 2px 16px rgba(0, 0, 0, 0.12))
        drop-shadow(0px 0px 12px rgba(255, 255, 255, 1));
    }
  
    &.one {
      background-image: url("shorts/backgrounds/fondo1.webp");
    }
	&.three {
      background-image: url("shorts/backgrounds/fondo3.webp");
    }
	&.four {
      background-image: url("shorts/backgrounds/fondo4.webp");
    }
	&.five {
      background-image: url("shorts/backgrounds/fondo5.webp");
    }
	&.six {
      background-image: url("shorts/backgrounds/fondo6.webp");
    }
	&.seven {
      background-image: url("shorts/backgrounds/fondo7.webp");
    }
	&.eight {
      background-image: url("shorts/backgrounds/fondo8.webp");
    }
	&.nine {
      background-image: url("shorts/backgrounds/fondo9.webp");
    }
	&.ten {
      background-image: url("shorts/backgrounds/fondo10.webp");
    }
    color: #1a1d21;
  }

.card-shorts:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4),
              0 4px 24px rgba(255, 255, 255, 0.25),
              0 8px 40px rgba(255, 255, 255, 0.2);
			  &.digital {
    background-size: 330px 450px;
    animation-name: cardAnimation;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    transform: translateZ(0);
    color: black;
    position: relative;
    
    
    &:after {
      content: "";
      width: 100%;
      height: 100%;
      border-radius: 10px;
      background: linear-gradient(
          120deg,
          rgb(255 255 255 / 2%) 30%,
          rgb(255 255 255 / 25%) 40%,
          rgb(255 255 255 / 8%) 40%
        ),
        linear-gradient(0deg, rgb(255 255 255 / 20%), rgb(255 255 255 / 30%));
      background-size: 150% 150%;
      animation: cardGradient 45s ease-in-out infinite;
      transform: translateZ(0);
      position: absolute;
    }
}
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: start;
  position: relative;
  z-index: 2;
  span {
    /*font-size: 14px;*/
	  font-weight: 900;
    text-transform: uppercase;
    /*letter-spacing: 1.5px;
    font-weight: 500;*/
  }
  img {
    height: 32px;
  }
}

.card-name {
  display: grid;
  grid-gap: 8px;
  p {
    margin: 0;
    /*letter-spacing: 1.5px;*/
    text-shadow: 0 0px 8px rgb(0 0 0 / 12%);
    font-weight: 700;
    max-width: 232px;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
  }
  p:first-child {
	  /*
    font-weight: 500;
    font-size: 10px;
    */
    text-transform: uppercase;
	  color: #FF1A75;
  }
  p:last-child {
    max-width: 232px;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
	  text-transform: uppercase;
	  color: white;
  }
}

.card-court-name {
  font-size: 20px;
}

.card-club-name {
  font-size: 20px;
}

.card-img {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover; /* para que rellene sin deformar */
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
}

.card-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  width: 100%;
}

.card-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.card-stats svg {
  cursor: pointer;
  fill: #FF1A75;
}

.like-number {
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  color: #FF1A75;
}

.redirects-article {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.redirects-img {
  height: 65dvh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mask-image: linear-gradient(to bottom, #040714 80%, transparent);
}

@media (max-width: 768px) {
  .redirects-img {
    height: auto;
    width: 100%;
    max-height: 65dvh;
  }
}

.subs-img {
  height: 65dvh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mask-image: linear-gradient(to bottom, #040714 80%, transparent);
}

@media (max-width: 768px) {
  .subs-img {
    height: auto;
    width: 100%;
    max-height: 65dvh;
  }
}

.club-tag {
  padding: 10px;
  border-radius: 10px;
  background-color: #3A3F50;
  text-decoration: none;
  color: white;
  transition: background-color 0.2s ease;
}

.club-tag.active{
  background-color: white;
  color: #040714;
}

.club-tag.active:hover{
  background-color: white;
  color: #040714;
}

.club-tag:hover {
  background-color: #4B5165;
}

.club-np {
  width: 40px;           
  height: 40px;
  border-radius: 50%;   
  border: none;          
  background-color: #3A3F50;
  color: white;
  cursor: pointer;
  display: flex;         
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.club-np:hover {
  background-color: #4B5165;
}

.club-tag-li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.club-tag-ul {
  display: flex;
  justify-content: center; 
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap; 
  gap: 10px; 
  margin-top: 10px;
  margin-bottom: 40px;
  row-gap: 30px;
}


/*<-section-cards*/

.cursores {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	margin-top: 30px;
}

.main_logo {
	width: 45px;
  height: 45px;
}

.carousel-header-up {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.hello-world-link {
    color: yellow;
    transition: color 0.2s ease;
}

.hello-world-link:hover {
    color: #CCCC00;
}

.purchase-link {
    color: #5800FF;
    transition: color 0.2s ease;
}

.purchase-link:hover {
    color: #FF1A75;
}


/*cta-section->*/

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #FF1A75;
    color: white;
    text-align: center;
    gap: 30px;
}

.cta-section p {
    max-width: 850px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Primary */

.cta-button-primary {
    background-color: white;
    color: #FF1A75;
}

.cta-button-primary:hover {
    background-color: #e5e5e5;
}

/* Secondary */

.cta-button-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .cta-button {
        width: 100%;
        box-sizing: border-box;
    }
}

/*<-cta-section*/

.lista-texto {
    width: 100%;
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 2rem;
}

.lista-texto span {
    display: block;
}

.lista-texto span::before {
    content: "•";
    margin-right: 0.6rem;
}


/*link->*/

.video-ready {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #040714;
    padding: 40px;
}

.video-ready-box {
    width: 100%;
    max-width: 520px;
    padding: 45px 40px 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.video-ready-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.video-ready-logo img {
    width: 150px;
    max-width: 60%;
    height: auto;
}

.video-ready-box h2 {
    margin: 0 0 12px;
    color: #040714;
    font-weight: 600;
}

.video-ready-description {
    margin: 0 auto 22px;
    max-width: 420px;
    color: #4A4E54;
    font-size: 1rem;
    line-height: 1.5;
}


/* LINK */

.video-ready-link-box {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px;
    border: 1px solid #d9d9dd;
    border-radius: 9px;
    background: #f7f7f9;
    text-align: left;
}

.video-ready-link {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;

    color: #0a2a66;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    transition: color 0.2s ease;
}

.video-ready-link:hover {
    color: #4a7dff;
}


/* BOTÓN COPIAR */

.video-copy-button {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 7px;

    background: #040714;
    color: white;

    font-size: 1rem;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.video-copy-button:hover {
    background-color: #FF1A75;
    transform: translateY(-1px);
}

.video-copy-button:active {
    transform: scale(0.95);
}


/* MENSAJE COPIADO */

.video-copy-message {
    display: block;

    height: 18px;
    margin-top: 7px;

    color: #5800FF;
    font-size: 0.85rem;
    font-weight: 500;

    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-copy-message.show {
    opacity: 1;
}


/* FOOTER REDES */

.video-social-footer {
    margin-top: 28px;
    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}

.video-social-footer > span {
    display: block;
    margin-bottom: 12px;

    color: #777777;
    font-size: 0.85rem;
}

.video-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.video-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #040714;

    font-size: 1.25rem;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.video-social-links a:hover {
    color: #FF1A75;
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 480px) {

    .video-ready-box {
        padding: 35px 22px 25px;
    }

    .video-ready-logo img {
        width: 130px;
    }

    .video-ready-description {
        font-size: 1rem;
    }

    .video-ready-link {
        font-size: 0.85rem;
    }

}

/*<-link*/
