body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(148.24% 87.02% at 17.05% 9.55%, #1D242D 0%, #13141B 63.54%, #1D242D 99.04%);
    margin: 0;
    padding: 0;
}

:root {
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Monument Extended', sans-serif;
    --primary-color: #06F0F6;
    --secondary-color: #EC29FC;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.wpcf7-spinner {
    display: none;
}

.text-center {
    text-align: center;
}

.hero-container {
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-section {
    position: relative;
    min-height: 1000px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
    margin-bottom: 100px;
    padding-top: 100px;
    flex-direction: column;
}

.hero-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    text-align: left;
    margin-top: -65px;
}

.hero-content h1 {
    font-size: 74px;
    margin-bottom: 0px;
    font-weight: 400;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 60px;
    width: 100%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons .neon-button {
    margin: 0;
}

.hero-buttons .neon-button.secondary {
    background-color: transparent;
    border: 2px solid #EC29FC;
    color: #EC29FC;
}

.hero-images-collage {
    position: relative;
    width: 50%;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-collage-item {
    position: absolute;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 70rem;
}

.collage-image-wrapper {
    position: relative;
    overflow: hidden;
}

.collage-image-wrapper img {
    display: block;
    width: 96%;
    height: auto;
    transition: all 0.5s ease;
    margin-left: -60px;
    margin-top: 35px;
}

.collage-position-1 {
    top: 10%;
    right: 20%;
    z-index: 11;
    animation-delay: 0.2s;
}

.collage-position-2 {
    top: 5%;
    right: 55%;
    z-index: 12;
    animation-delay: 0.4s;
}

.collage-position-3 {
    bottom: 10%;
    right: 15%;
    z-index: 13;
    animation-delay: 0.6s;
}

.collage-position-4 {
    bottom: 25%;
    right: 50%;
    z-index: 14;
    animation-delay: 0.8s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-collage-item::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-collage-item:hover::after {
    opacity: 0;
}

.hero-collage-item:hover:not(.active)::before {
    filter: grayscale(70%);
}

.team-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
}

.team-card:not(.active) .team-card-image {
    height: calc(100% - 143px);
    top: 118px;
    left: -18px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease-in-out;
}

.team-card.animating .team-card-image img {
    animation: cardImageSlideIn 0.4s ease-in-out forwards;
}

@keyframes cardImageSlideIn {
    0% {
        opacity: 0.7;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card.active .border-line {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 99%;
    height: 190px;
    background-color: transparent;
    z-index: 10;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    border-left: 3px solid rgb(255 255 255 / 28%);
    border-right: 3px solid rgb(255 255 255 / 28%);
    border-bottom: 3px solid rgb(255 255 255 / 28%);
}

.team-card.active .border-line-left,
.team-card.active .border-line-right,
.team-card.active .border-line-left::after,
.team-card.active .border-line-right::after {
    display: none;
}

.team-card:not(.active) .team-card-image img {
    object-position: center;
    transform: scale(1.01);
}

.team-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d1116;
    text-align: center;
    z-index: 2;
}

.team-card:not(.active) .team-card-content {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px 0px;
}

.team-card.active .team-card-content {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px 0px;
}

.team-card-content h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card.active .social-links {
    opacity: 1;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    transform: none;
}

.social-link i {
    font-size: 16px;
}

.social-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.latest-news-section {
    position: relative;
    padding: 105px 0;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    margin-bottom: 131px;
}

.latest-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.latest-news-section .container {
    position: relative;
    z-index: 2;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.news-card {
    background-color: #29303E;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding: 24px;
}

.news-card::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #06F0F6;
    top: 28px;
    left: 24px;
}

.news-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-meta {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
    color: #9aa0a7;
}

.news-reading-time {
    font-size: 14px;
    color: #9aa0a7;
}

.news-card-content h3 {
    margin-bottom: 53px;
    font-size: 24px;
    line-height: 1.5;
    max-height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans';
}

.news-card-content h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.news-excerpt {
    color: rgba(135, 140, 145, 1);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-excerpt p {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 80%;
}

.news-excerpt-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-footer {
    display: none;
}

.news-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px 15px 30px;
    border-radius: 65px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    border: 1px solid rgba(236, 41, 252, 1);
    background-color: rgba(236, 41, 252, 1);
}

.arrow-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.neon-button {
    display: inline-block;
    padding: 17px 37px;
    background-color: #EC29FC;
    color: #0e1117;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 18px;
}

.team-preview-section {
    position: relative;
    border-radius: 8px;
}

.team-preview-section .container {
    position: relative;
    z-index: 1;
    margin-bottom: 131px;
    padding: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 45px;
    color: #ffffff;
    margin: 0;
}

.section-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-description {
    margin-bottom: 30px;
}

.team-description p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
}

.team-preview-grid {
    display: flex;
    gap: 23px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.team-preview-grid::-webkit-scrollbar {
    display: none;
}

.team-card {
    position: relative;
    height: 470px;
    width: 180px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: width 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
    cursor: pointer;
}

.team-card.active {
    width: 387px;
    opacity: 1;
}

.team-card:hover:not(.active) {
    opacity: 0.7;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 0;
}

.team-card.active::before {
    filter: grayscale(0%);
}

.team-card:hover:not(.active)::before {
    filter: grayscale(100%);
}

.latest-news-section .section-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.streamers-section {
    padding: 0px 0px 80px 0px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.streamers-section .section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 45px;
    margin-bottom: 30px;
}

.streamers-description {
    margin-bottom: 36px;
    color: rgba(229, 231, 236, 1);
    line-height: 1.7;
    font-size: 20px;
}

.streamers-content {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.streamers-info {
    flex: 0 0 27%;
    background-color: rgba(1, 2, 5, 1);
    border-radius: 30px;
    padding: 48px 18px 34px 30px;
}


.streamers-counter {
    margin-bottom: 81px;
}

.counter-number {
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-family: 'Monument Extended';
}

.counter-number::after {
    content: "+";
    color: #EC29FC;
    font-size: 78px;
    position: absolute;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    top: -27px;
}

.counter-text {
    color: rgba(135, 140, 145, 1);
    font-size: 20px;
}

.streamers-avatars {
    display: flex;
}

.streamer-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    position: relative;
    margin-bottom: 15px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
    cursor: default;
}

.streamer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 36px;
    min-height: 36px;
}

.streamer-avatar:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.streamer-avatar.more-streamers {
    background-color: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 69px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    transition: none;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
    letter-spacing: -3%;
    margin-top: -7px;
}

.streamer-avatar.more-streamers span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 69.14px;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: -3%;
}

.twitch-banner {
    flex: 1;
    height: 220px;
    position: relative;
}

.twitch-banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: none;
    border: 2px solid #EC29FC;
}

.twitch-banner a:hover .play-button {
    background-color: #EC29FC;
    transform: scale(1.1);
}

.to-top-button-container {
    margin-top: 56px;
}

.to-top-button {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background-color: #EC29FC;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans';
}

.to-top-arrow {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 5% auto;
    height: 80%;
}

.video-modal-close {
    position: absolute;
    right: -30px;
    top: -30px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

body.modal-open {
    overflow: hidden;
}

.twitch-banner-wrapper {
    position: relative;
    width: 100%;
    height: 356px;
    overflow: hidden;
    border-radius: 30px;
}

.twitch-banner-wrapper .video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: none;
}

.play-button:hover {
    transform: none;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: none;
}

.play-button:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

body.video-modal-open {
    overflow: hidden;
}

.twitch-banner-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.twitch-banner-wrapper .play-button:before {
    content: none;
    display: none;
}

.twitch-banner-wrapper .play-button:after {
    content: none;
    display: none;
}

.twitch-banner-wrapper .play-button:hover {
    background-color: rgba(227, 6, 19, 0.8);
}

.inner-page-header .main-header {
    padding: 15px 0;
}

.inner-page-header .main-navigation ul li a {
    color: #ffffff;
}

.inner-page-header .main-navigation ul li.current-menu-item a {
    color: #0066cc;
}

.inner-page-header .main-navigation ul li a:hover {
    color: #0066cc;
}

.neon-accent .highlight {
    background-color: rgba(6, 240, 246, 1);
    color: #000000;
    padding: 5px 40px 8px;
    border-radius: 12px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-left: -40px;
    position: relative;
    overflow: visible;
}

.neon-accent .bienvenido {
    background-color: rgba(6, 240, 246, 1);
    color: #000000;
    padding: 5px 40px 8px;
    border-radius: 12px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-left: -40px;
    position: relative;
    overflow: visible;
}

.neon-accent .highlight::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background-color: rgba(6, 240, 246, 1);
    transform: skew(-10deg);
    border-radius: 12px;
}

.neon-accent .bienvenido::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background-color: rgba(6, 240, 246, 1);
    transform: skew(-10deg);
    border-radius: 12px;
}

.team-card.active .team-card-image {
    transition: all 0.4s ease;
    height: calc(100% - 0px);
}

.team-card.active .team-card-image img {
    object-position: center;
    height: 394px;
    width: 307px;
    position: absolute;
    top: 65px;
    left: 2px;
    transition: all 0.4s ease;
}

.twitch-banner-wrapper {
    position: relative;
    width: 100%;
    height: 356px;
    overflow: hidden;
    border-radius: 30px;
}

.twitch-banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: none;
    border: 2px solid #EC29FC;

}

.play-button:hover {
    transform: none;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: none;
}

.play-icon {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border: none;
    box-shadow: none;
    outline: none;
    filter: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 0px;
    transition: transform 0.3s ease;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.inline-video-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.inline-video-close:hover {
    background-color: #EC29FC;
    transform: scale(1.1);
}


.video-play-button {
    cursor: pointer;
    border: none;
    box-shadow: none;
    outline: none;
    filter: none;
    transition: transform 0.3s ease;
}

.twitch-banner-wrapper .play-button:before,
.twitch-banner-wrapper .play-button:after,
.play-button-wrapper {
    display: none !important;
}

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

.acf-image-uploader .image-wrap img[src$=".svg"] {
    min-height: 25px !important;
    min-width: 25px !important;
}

.custom-subscribe-button {
    color: white;
    background-color: rgba(236, 41, 252, 1);
    width: 315px;
    height: 87px;
    text-align: center;
    display: flex;
    align-content: stretch;
    justify-content: center;
    flex-direction: column;
    border-radius: 45px;
    font-size: 32px;
    text-decoration: none;
    font-weight: 700;
    z-index: 10;
}

.contacts-join-team {
    background: transparent;
    padding: 180px 0 0;
}

@media (max-width: 376px) {

    .team-preview-grid .team-card .team-card-image img,
    .team-preview-grid .team-card.active .team-card-image img,
    .team-preview-grid .team-card:hover .team-card-image img,
    .team-preview-grid .team-card.animating .team-card-image img {
        top: 72px !important;
    }
}

@media (max-width: 767px) {
    .neon-accent .highlight::before {
        border-radius: 7px;
    }

    .neon-accent .highlight {
        background-color: transparent;
        padding: 5px 8px 5px 0px;
    }

    .hero-content h1 {
        font-size: 1.875rem;
        text-align: center;
    }

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

    .hero-content .neon-accent {
        text-align: center;
    }

    .hero-buttons .neon-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .subscribe-title {
        font-size: 1.72rem;
        margin-bottom: 60px;
    }

    .subscribe-section {
        padding: 60px 0 !important;
        border-radius: 0;
    }

    .subscribe-description {
        font-size: 14px;
        margin-bottom: 60px;
        color: rgba(221, 221, 221, 1);
    }

    .streamers-section .section-title {
        font-size: 30px;
    }

    .counter-number,
    .counter-number::after {
        font-size: 48px;
        top: -10px;
    }

    .hero-collage-item {
        width: 100%;
    }

    .hero-section {
        margin-bottom: 50px;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .neon-button {
        padding: 13px 0px;
    }

    .custom-subscribe-button {
        width: 73vw;
    }

    .collage-position-1 {
        top: 0;
        left: 5%;
    }

    .collage-position-2 {
        top: 0;
        left: 55%;
    }

    .collage-position-3 {
        bottom: 5%;
        left: 15%;
    }

    .collage-position-4 {
        bottom: 5%;
        left: 65%;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .join-button {
        display: none !important;
    }

    .neon-accent .highlight {
        margin-left: 0;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 54px;
        display: flex;
        flex-direction: column;
    }

    .hero-content h1 {
        order: 1;
        margin-bottom: 15px;
    }

    .hero-buttons {
        order: 4;
        width: 100%;
        margin-top: 117%;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .hero-images-collage {
        order: 3;
        position: absolute;
        margin: 28px 0;
        display: flex;
        justify-content: center;
        left: 0;
        top: 6%;
        width: 100%;
        z-index: 0;
    }

    .collage-image-wrapper img {
        margin-left: 0;
        margin-top: 0;
    }

    .collage-position-1 {
        top: 0;
        right: auto;
        left: 10%;
    }

    .collage-position-2 {
        top: 0;
        right: auto;
        left: 50%;
    }

    .collage-position-3 {
        bottom: 10%;
        right: auto;
        left: 20%;
    }

    .collage-position-4 {
        bottom: 10%;
        right: auto;
        left: 60%;
    }

    .custom-logo {
        height: 35px !important;
        width: 70px !important;
    }

    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .team-description p {
        font-size: 14px;
        line-height: 1.7;
        color: #E5E7EC;
        opacity: 1;
    }

    .social-link {
        width: 35px !important;
        height: 35px !important;
    }

    .streamers-info {
        padding: 47px 12px 34px 30px;
    }

    .play-icon {
        width: 35px !important;
        height: 35px !important;
    }

    .streamers-content {
        flex-direction: column;
        display: flex;
        gap: 30px;
        align-content: flex-start;
        flex-wrap: wrap;
    }

    .streamers-info {
        width: 100%;
        flex: none;
    }

    .hero-collage-item {
        width: 30rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        height: 350px;
        width: 140px;
    }

    .team-card.active {
        width: 220px;
    }

    .hero-content p {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 1.5rem;
        order: 2;
        width: 80%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .team-card {
        height: 400px;
        width: 160px;
    }

    .team-card.active {
        width: 260px;
    }

    .team-card-content h3 {
        font-size: 22px;
        font-weight: 400;
        margin: 0 0 0 0;
    }

    .hero-collage-item .collage-image-wrapper img {
        content: url('../images/background-mobile.webp');
    }

    .hero-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1,
    .hero-content p {
        text-align: left;
    }

    .section-header .section-button {
        display: none;
    }

    .team-preview-section::after {
        content: attr(data-button-text);
        position: absolute;
        bottom: -65px;
        left: 17px;
        padding: 12px 25px;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        z-index: 10;
        cursor: pointer;
    }

    .team-preview-grid {
        flex-direction: column;
        display: flex !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0;
        gap: 20px;
    }

    .team-preview-grid .team-card {
        width: 100% !important;
        opacity: 1 !important;
        margin-bottom: 30px;
        display: block !important;
        visibility: visible !important;
        height: 471px;
        position: relative !important;
        cursor: default !important;
        pointer-events: none !important;
    }

    .team-preview-grid .team-card .team-card-image {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        opacity: 1 !important;
    }

    .team-preview-grid .team-card .social-links {
        opacity: 1 !important;
        display: flex !important;
        visibility: visible !important;
    }

    .team-preview-grid .team-card:not(.active) .team-card-image img {
        object-position: center;
        transform: none !important;
        filter: grayscale(0%) !important;
    }

    .team-preview-grid .team-card::before {
        filter: grayscale(0%) !important;
        background-image: url("/wp-content/uploads/2025/04/809bbdaf279e73f8d6bc7429bbd104dd.png") !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .team-preview-grid .team-card:hover:not(.active)::before {
        filter: grayscale(0%) !important;
    }

    .team-preview-grid .team-card .team-card-image img,
    .team-preview-grid .team-card.active .team-card-image img,
    .team-preview-grid .team-card:hover .team-card-image img,
    .team-preview-grid .team-card.animating .team-card-image img {
        transform: none !important;
        transition: none !important;
        animation: none !important;
        position: relative !important;
        top: 12px;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    .team-card.active .team-card-image,
    .team-card.animating .team-card-image,
    .team-card:hover .team-card-image {
        transition: none !important;
        animation: none !important;
    }

    .team-preview-grid .team-card,
    .team-preview-grid .team-card:active,
    .team-preview-grid .team-card:focus,
    .team-preview-grid .team-card:hover {
        transform: none !important;
        transition: none !important;
        cursor: default !important;
        pointer-events: none !important;
        margin: 0;
    }


    .team-preview-grid .team-card .team-card-content,
    .team-preview-grid .team-card .social-links,
    .team-preview-grid .team-card .social-link {
        pointer-events: auto !important;
    }

    .latest-news-section .section-header .section-button {
        display: none;
    }

    .latest-news-section {
        position: relative;
        padding: 76px 0px 163px 0px;
        margin-bottom: 50px;
    }

    .latest-news-section::after {
        content: attr(data-button-text);
        position: absolute;
        left: 5%;
        bottom: 76px;
        display: block;
        padding: 12px 25px;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        text-align: center;
        z-index: 1;
        cursor: pointer;
    }

    .streamers-section {
        display: block !important;
        padding: 30px 0 80px 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        margin-top: 30px !important;
    }

    .streamers-section .container {
        padding: 0 20px;
        display: block;
    }

    .streamers-section .section-title {
        font-size: 30px;
        text-align: left;
        margin-bottom: 15px;
    }

    .streamers-content {
        flex-direction: column;
        gap: 30px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }

    .site-footer {
        display: none;
    }

    .streamers-info {
        width: 100% !important;
        height: 324px !important;
        padding: 25px 15px;
        box-sizing: border-box;
    }

    .twitch-banner {
        height: 158px !important;
    }

    .twitch-banner-wrapper {
        height: 158px !important;
        width: 89vw !important;
        margin: 0 auto;
        border-radius: 12px;
    }

    .streamers-description p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .to-top-button-container {
        text-align: left;
        margin-top: 40px;
    }

    .team-card.active {
        width: 300px;
    }

    .streamer-avatar {
        width: 4rem;
        height: 4rem;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .social-youtube span {
        position: absolute;
        left: 0;
        right: -6px;
        text-align: center;
    }

    .social-youtube {
        background-color: rgba(223, 42, 37, 1);
        position: relative;
        justify-content: flex-start;
    }

    .social-youtube .social-icon {
        margin-left: 3px;
        margin-right: 0;
    }

    .social-youtube span {
        position: absolute;
        left: 0;
        right: -18px;
        text-align: center;
    }

    .social-telegram {
        background-color: rgba(0, 173, 236, 1);
        position: relative;
        justify-content: flex-start;
    }

    .social-telegram .social-icon {
        margin-left: 3px;
        margin-right: 0;
    }

    .social-telegram span {
        position: absolute;
        left: 0;
        right: -18px;
        text-align: center;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-template-template-contacts .subscribe-section,
    .page-template-template-gallery .subscribe-section,
    .join-team-section {
        background-image: url(/wp-content/uploads/2025/04/background.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .hero-section {
        min-height: 1000px;
        margin-top: -105px;
    }

    .hero-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content .neon-accent {
        text-align: center;
        order: 1;
        font-size: 2rem;
        width: 70%;
    }

    .neon-accent .highlight {
        margin-left: 0;
    }

    .hero-content h1,
    .hero-content p {
        text-align: left;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
        color: rgba(221, 221, 221, 1);
        order: 2;
        width: 70%;
    }

    .hero-buttons {
        order: 4;
        width: 100%;
        margin-top: 75%;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .hero-buttons .neon-button {
        font-size: 12px;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0;
        width: 140px;
        height: 49px;
    }

    .hero-images-collage {
        order: 3;
        position: absolute;
        margin: 28px 0;
        display: flex;
        justify-content: center;
        left: 68px;
        top: 3%;
        width: 100%;
        z-index: 0;
    }

    .hero-collage-item {
        width: 48rem;
    }

    .collage-image-wrapper img {
        margin-left: -60px;
        margin-top: 11px;
    }

    .mobile-menu-open #primary-menu .mobile-join-button {
        display: none;
    }

    .team-preview-section .container {
        padding: 0 20px;
    }

    .news-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .streamers-content {
        flex-direction: column;
        align-items: normal;
    }

    .counter-number::after {
        top: -28px;
    }

    .site-footer {
        display: none;
    }

    .mobile-menu-open #primary-menu .mobile-join-button {
        display: none;
    }

    .gallery-page .team-preview-section .container {
        padding: 0 !important;
    }

    .team-preview-grid {
        gap: 19px !important;
    }

    .team-card.active {
        width: 350px !important;
    }

    .team-card.in-active-row:not(.active) {
        width: 166px !important;
    }

    .team-card {
        width: 227px !important;
    }

}

.stream-subscribe-section {
    padding-bottom: 140px;
    position: relative;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-subscribe-section .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stream-subscribe-section .container .back1,
.stream-subscribe-section .container .back2 {
    content: '';
    position: absolute;
    width: 600px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

.stream-subscribe-section .container .back1 {
    top: 2px;
    left: 3px;
    background-image: url(../images/back1.svg);
    width: 700px;
    height: 600px;
    z-index: 2;
}

.stream-subscribe-section .container .back2 {
    bottom: -50px;
    right: 0px;
    background-image: url('../images/back2.svg');
}

.stream-subscribe-wrapper {
    display: grid;
    gap: 30px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.stream-subscribe-image {
    position: relative;
    grid-column: 1;
    overflow: hidden;
}

.stream-subscribe-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.stream-subscribe-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    grid-column: 2;
    height: 100%;
    overflow: hidden;
}

.stream-subscribe-info {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px
}

.stream-subscribe-info p {
    font-weight: 400;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    text-align: right;
    margin-bottom: 0;
}

.stream-subscribe-section .container .star1,
.stream-subscribe-section .container .star2,
.stream-subscribe-section .container .star3 {
    position: absolute;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
}

.stream-subscribe-section .container .star1 {
    bottom: 20px;
    left: 20px;
    background-image: url('../images/star2.svg');
}

.stream-subscribe-section .container .star2 {
    bottom: 27%;
    right: 38%;
    background-image: url('../images/star1.svg');
}

.stream-subscribe-section .container .star3 {
    top: 54px;
    left: 50%;
    background-image: url('../images/star3.svg');
}

@media (max-width: 767px) {
    .stream-subscribe-section {
        height: auto;
        min-height: 660px;
    }

    .stream-subscribe-wrapper {
        grid-template-columns: 1fr;
        padding: 36px 0px 36px 0px;
    }

    .stream-subscribe-image {
        grid-column: 1;
        grid-row: 1;
    }

    .stream-subscribe-content {
        grid-column: 1;
        grid-row: 2;
        flex-direction: column;
    }

    .stream-subscribe-section .container .back1,
    .stream-subscribe-section .container .back2 {
        width: 40px;
        height: 40px;
    }

    .stream-subscribe-section .container .star1,
    .stream-subscribe-section .container .star2,
    .stream-subscribe-section .container .star3 {
        display: none;
    }

    .team-preview-section .container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .stream-subscribe-section {
        height: auto;
        padding: 40px 20px;
        min-height: 0;
        margin-bottom: 24px;
    }

    .stream-subscribe-section .container {
        height: auto;
    }

    .stream-subscribe-content {
        align-items: center;
        text-align: center;
    }

    .stream-subscribe-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stream-subscribe-info p {
        font-size: 14px;
        text-align: left;
        margin: 0;
    }

    .stream-subscribe-section .container .back1 {
        top: -5px;
        left: -5px;
    }

    .stream-subscribe-section .container .back2 {
        bottom: -5px;
        right: -5px;
    }

}

.watch-now-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -102px;
    position: relative;
    text-align: right;
}

.arrow-pointer {
    width: 133px;
    height: 137px;
    background-image: url(../images/arrow-after.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-5deg);
    margin-bottom: -17px;
    margin-right: -32px;
    z-index: 10;
}

.watch-now-text {
    color: #fff;
    font-size: 45px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Monument Extended';
}

@media (max-width: 768px) {
    .contacts-join-team .container {
        overflow: visible !important;
    }

    .watch-now-container {
        margin-top: 15px;
    }

    .arrow-pointer {
        width: 20px;
        height: 20px;
        margin-bottom: 8px;
    }

    .watch-now-text {
        font-size: 16px;
    }

    .join-team-section .container {
        max-width: 90% !important;
        overflow: hidden;
    }

    .neon-accent .bienvenido {
        border-radius: 7px;
        padding: 5px 9px 5px 9px;
    }

}

@media (max-width: 480px) {
    .watch-now-container {
        margin-top: -94px;
    }

    .arrow-pointer {
        width: 120px;
        height: 100px;
        margin-bottom: -10px;
    }

    .watch-now-text {
        font-size: 29px;
    }
}

@media (min-width: 1000px) and (max-width: 1400px) {
    .container {
        max-width: 1000px;
    }

    .hero-content h1 {
        font-size: 63px;
    }

    .collage-image-wrapper img {
        width: 75%;
        margin-left: 47px;
    }

    .neon-accent .highlight {
        padding: 5px 6px 8px;
        margin-left: -12px;
    }

    .neon-button {
        font-size: 15px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .stream-subscribe-info p {
        font-size: 17px;
    }

    .custom-subscribe-button {
        width: 301px;
        height: 75px;
    }

    .watch-now-text {
        font-size: 40px;
    }

    .watch-now-container {
        margin-top: -114px;
    }

    .arrow-pointer {
        width: 114px;
        height: 137px;
    }

    .stream-subscribe-info {
        gap: 37px;
    }

    .stream-subscribe-section .container .star3 {
        top: 105px;
        left: 44%;
    }

    .stream-subscribe-section .container .star2 {
        bottom: 35%;
        right: 43%;
    }

    .counter-number::after {
        top: -27px;
    }

    .contacts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

.single-post-content {
    padding: 150px 0 60px;
}

.single-article {
    margin-bottom: 60px;
}

.entry-header {
    margin-bottom: 30px;
    text-align: center;
}

.post-meta {
    display: flex;
    margin-bottom: 40px;
    color: #777;
    font-size: 1em;
}

.post-date {
    margin-right: 15px;
}

.post-reading-time {
    display: inline-flex;
    align-items: center;
}

.entry-title {
    font-size: 2em;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.3;
    font-family: var(--font-heading);
    text-align: left;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.entry-content p {
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-size: 1.2em;
    line-height: 1.3;
    color: #E5E7EC;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content a {
    color: #0056b3;
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

.entry-content blockquote {
    border-left: 4px solid #0056b3;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.entry-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 14px;
}

.post-categories,
.post-tags {
    margin-bottom: 10px;
}

.categories-label,
.tags-label {
    font-weight: 600;
    margin-right: 5px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.nav-previous,
.nav-next {
    max-width: 45%;
}

.nav-previous a,
.nav-next a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #0056b3;
}

.nav-arrow {
    margin: 0 5px;
}

.related-posts {
    margin-top: 60px;
    margin-bottom: 60px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: white;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: white;
}

.related-posts .section-title {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .single-post-content {
        padding: 150px 0 60px;
    }

    .entry-title {
        font-size: 28px;
    }

    .entry-content {
        font-size: 15px;
    }

    .post-navigation {
        flex-direction: column;
    }

    .nav-previous,
    .nav-next {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 375px) {
    .hero-images-collage {
        margin: 55px 0;
    }
}