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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: #0a0a0f;
    color: #ece2d0;
    overflow-x: hidden;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #0c021b;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.btn-discord {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #bb44f0;
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-discord:hover {
    opacity: 0.8;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.4) 0%,
        rgba(10, 10, 15, 0.4) 50%,
        rgba(10, 10, 15, 0.7) 75%,
        rgba(10, 10, 15, 1) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 20px rgba(187, 68, 240, 0.3)) drop-shadow(0 0 40px rgba(187, 68, 240, 0.2));
    animation: logoEntrance 1s ease-out;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.hero-logo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 0 25px rgba(187, 68, 240, 0.4)) drop-shadow(0 0 50px rgba(187, 68, 240, 0.25));
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ece2d0;
    font-weight: bold;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    min-width: 120px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 300;
    color: #ece2d0;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #ece2d0;
    opacity: 0.7;
    text-transform: lowercase;
}

.btn-ver-mas {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ece2d0;
    background: transparent;
    border: 1px solid #ece2d0;
    border-radius: 0;
    padding: 0.875rem 2.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-ver-mas:hover {
    opacity: 0.7;
}

.discord-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #0a0a0f;
}

.discord-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.discord-image-wrapper {
    flex: 0 0 auto;
    position: relative;
}

.discord-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(187, 68, 240, 0.5));
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.discord-image-wrapper:hover .discord-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(187, 68, 240, 0.8));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.features-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.features-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.85) 50%,
        rgba(10, 10, 15, 0.7) 100%
    );
    z-index: 2;
}

.features-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 5rem 2rem;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.features-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ece2d0;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.features-carousel {
    position: relative;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.carousel-track {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    padding-top: 0;
}

.track-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ece2d0;
    opacity: 0.2;
    transform: translateX(-50%);
}

.track-numbers {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4rem;
    z-index: 1;
    padding-top: 0;
}

.track-number {
    font-size: 1rem;
    font-weight: 300;
    color: #ece2d0;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    user-select: none;
    position: relative;
    border: 1px solid #ece2d0;
    border-radius: 8px;
    background-color: #0a0a0f;
}

.track-number::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ece2d0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-number:hover {
    opacity: 0.8;
    border-color: #ece2d0;
    background-color: #0a0a0f;
}

.track-number:hover::before {
    opacity: 0.7;
}

.track-number.active {
    opacity: 1;
    font-weight: 400;
    border-color: #ece2d0;
    background-color: #0a0a0f;
}

.track-number.active::before {
    opacity: 1;
    background-color: #ece2d0;
}

.features-list {
    position: relative;
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: flex-start;
    transition: padding-top 0.6s ease;
}

.feature-item {
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.feature-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ece2d0;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ece2d0;
    line-height: 1.7;
    opacity: 0.9;
}

.about-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.98) 20%,
        rgba(0, 0, 0, 0.95) 40%,
        rgba(0, 0, 0, 0.85) 60%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.about-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ece2d0;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.about-content {
    max-width: 800px;
}

.about-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ece2d0;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: 600;
    color: #ece2d0;
    opacity: 1;
}

.hytale-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.hytale-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hytale-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hytale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.98) 20%,
        rgba(0, 0, 0, 0.95) 40%,
        rgba(0, 0, 0, 0.85) 60%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hytale-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 5rem 2rem;
}

.hytale-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: right;
}

.hytale-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ece2d0;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.hytale-content {
    max-width: 800px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hytale-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ece2d0;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hytale-text:last-child {
    margin-bottom: 0;
}

.hytale-text strong {
    font-weight: 600;
    color: #ece2d0;
    opacity: 1;
}

.btn-descubre-mas {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #bb44f0;
    border: none;
    border-radius: 0;
    padding: 1rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-top: 2rem;
    align-self: flex-end;
}

.btn-descubre-mas:hover {
    opacity: 0.8;
}

.btn-descubre-mas svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.discord-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.discord-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ece2d0;
    margin: 0;
}

.discord-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ece2d0;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.btn-discord-section {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #bb44f0;
    border: none;
    border-radius: 0;
    padding: 1rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    align-self: flex-start;
    text-decoration: none;
}

.btn-discord-section:hover {
    opacity: 0.8;
}

.btn-discord-section svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer {
    width: 100%;
    background-color: #000;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(236, 226, 208, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(187, 68, 240, 0.2));
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-email {
    font-size: 1rem;
    font-weight: 400;
    color: #ece2d0;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-email:hover {
    opacity: 0.7;
    color: #bb44f0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-icon {
    color: #ece2d0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social-icon:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 24px;
    height: 24px;
}

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

.footer-copyright p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #ece2d0;
    opacity: 0.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .header-nav {
        display: none;
    }

    .header-right {
        gap: 1rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .btn-discord {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }

    .hero-logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }

    .hero-logo:hover {
        transform: scale(1.03) translateY(-1px);
        filter: drop-shadow(0 0 22px rgba(187, 68, 240, 0.35)) drop-shadow(0 0 45px rgba(187, 68, 240, 0.22));
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .countdown-container {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 90px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.85rem;
    }

    .btn-ver-mas {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
    }

    .discord-section {
        padding: 3rem 1.5rem;
    }

    .discord-container {
        flex-direction: column;
        gap: 2rem;
    }

    .discord-image {
        max-width: 300px;
    }

    .discord-title {
        font-size: 2rem;
    }

    .discord-text {
        font-size: 1rem;
    }

    .btn-discord-section {
        font-size: 0.9rem;
        padding: 0.875rem 1.75rem;
        align-self: stretch;
        justify-content: center;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-email {
        font-size: 0.95rem;
    }

    .footer-social {
        gap: 1.25rem;
    }

    .footer-social-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .header-logo {
        height: 32px;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .btn-discord {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .hero-logo:hover {
        transform: scale(1.02) translateY(-1px);
        filter: drop-shadow(0 0 18px rgba(187, 68, 240, 0.3)) drop-shadow(0 0 35px rgba(187, 68, 240, 0.18));
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        padding: 0.875rem 1rem;
        min-width: 75px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .discord-section {
        padding: 2rem 1rem;
    }

    .discord-container {
        gap: 1.5rem;
    }

    .discord-image {
        max-width: 250px;
    }

    .discord-title {
        font-size: 1.75rem;
    }

    .discord-text {
        font-size: 0.95rem;
    }

    .btn-discord-section {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }

    .btn-discord-section svg {
        width: 18px;
        height: 18px;
    }

    .features-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .features-carousel {
        gap: 3rem;
    }

    .carousel-track {
        min-height: 350px;
    }

    .track-numbers {
        min-height: 350px;
    }

    .features-list {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .features-content {
        padding: 3rem 1.5rem;
    }

    .features-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-carousel {
        flex-direction: column;
        gap: 2rem;
    }

    .carousel-track {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        justify-content: center;
    }

    .track-line {
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }

    .track-numbers {
        flex-direction: row;
        gap: 2rem;
        min-height: auto;
        width: 100%;
        justify-content: center;
    }

    .track-number {
        padding: 0.5rem 0;
    }

    .features-list {
        min-height: 160px;
    }

    .about-content-wrapper {
        padding: 3rem 1.5rem;
    }

    .about-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .hytale-content-wrapper {
        padding: 3rem 1.5rem;
    }

    .hytale-container {
        text-align: left;
    }

    .hytale-content {
        margin-left: 0;
    }

    .hytale-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .hytale-text {
        font-size: 1rem;
    }

    .hytale-content {
        align-items: flex-start;
    }

    .btn-descubre-mas {
        align-self: stretch;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-content-wrapper {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hytale-content-wrapper {
        padding: 2rem 1rem;
    }

    .hytale-container {
        text-align: left;
    }

    .hytale-content {
        margin-left: 0;
    }

    .hytale-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hytale-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hytale-content {
        align-items: flex-start;
    }

    .btn-descubre-mas {
        align-self: stretch;
        justify-content: center;
        margin-top: 1.5rem;
        font-size: 0.9rem;
        padding: 0.875rem 1.75rem;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-info {
        gap: 1.25rem;
    }

    .footer-email {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

