:root {
    --color-bg: #08030d;
    --color-bg-soft: #15081f;
    --color-panel: #211329;
    --color-panel-warm: #2a0f27;
    --color-stone: #3a2843;
    --color-candle: #f07a2d;
    --color-gold: #edb62e;
    --color-gold-bright: #ffe08a;
    --color-gold-dark: #9a5c11;
    --color-blue: #c77aff;
    --color-blue-soft: #f4d8ff;
    --color-blue-dark: #351346;
    --color-ink: #050208;
    --color-text: #f7eaff;
    --color-muted: #cab2d6;
    --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.48);
}

html, body {
    background-color: var(--color-bg) !important;
    height: 100%;
    margin: 0;
    width: 100%;
    font-family: 'MedievalSharp', cursive !important;
}

p {
    font-size: 18px;
    line-height: 1.65;
}

h3 {
    font-size: 20px !important;
    color: var(--color-gold);
}

a {
    color: var(--color-text) !important;
}

a:hover {
    color: var(--color-gold-bright) !important;
}

button {
    background-color: var(--color-candle);
    color: var(--color-ink);
    border: none;
    padding: 8px 16px;
    border-radius: 3px !important;
}

label {
    font-size: 12px;
    display: flex !important;
    align-items: center;
    gap: 8px;
}

button:hover {
    background-color: var(--color-gold-bright);
}


.logo {
    width: 200px;
}

.logo-text-footer {
    height: auto;
    max-height: 104px;
    object-fit: contain;
    width: min(220px, 62vw);
}

#cover {
    height: min(760px, 92vh);
    box-shadow: var(--shadow-strong);
    min-height: 640px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

#cover::before,
#cover::after {
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

#cover::before {
    background:
        radial-gradient(circle at 73% 36%, rgba(205, 21, 105, 0.24), transparent 31%),
        radial-gradient(circle at 38% 30%, rgba(237, 182, 46, 0.14), transparent 25%),
        radial-gradient(circle at 84% 42%, rgba(199, 122, 255, 0.14), transparent 30%),
        linear-gradient(90deg, rgba(5, 2, 8, 0.68) 0%, rgba(5, 2, 8, 0.2) 42%, rgba(13, 4, 22, 0.08) 62%, rgba(5, 2, 8, 0.46) 100%);
}

#cover::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 44%, rgba(8, 3, 13, 0.78) 100%),
        linear-gradient(0deg, rgba(25, 7, 31, 0.34), transparent 38%);
}

#cover .principal-image {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

#cover .hero-brand {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 0 8vw clamp(84px, 14vh, 128px);
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

#cover .hero-brand img {
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.72));
    height: auto;
    max-height: 72%;
    max-width: min(620px, 82vw);
    width: min(620px, 82vw);
}

.section-kicker {
    color: var(--color-gold-bright);
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

#cover .hero-actions {
    align-items: center;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: calc(100% - 48px);
    position: absolute;
    transform: translateX(-50%);
    width: 760px;
    z-index: 3;
}

#cover .hero-actions::before {
    background:
        linear-gradient(90deg, transparent, rgba(237, 182, 46, 0.55), transparent),
        radial-gradient(circle at 50% 100%, rgba(205, 21, 105, 0.26), transparent 58%);
    content: "";
    height: 1px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: -14px;
}

#cover .hero-availability {
    color: var(--color-gold-bright);
    font-size: 13px;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
}

#cover .hero-highlights {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        rgba(13, 4, 17, 0.8);
    border: 1px solid rgba(237, 182, 46, 0.32);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-bottom: 12px;
    padding: 14px 18px;
    width: min(100%, 680px);
}

#cover .hero-highlights span {
    color: var(--color-gold-bright);
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

#cover .buttons {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
        rgba(13, 4, 17, 0.82);
    border: 1px solid rgba(237, 182, 46, 0.26);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
}

.button-primary,
.button-secondary,
#cover .buttons a {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    overflow: hidden;
    padding: 11px 24px 11px 12px;
    position: relative;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button-primary {
    background:
        linear-gradient(135deg, rgba(237, 182, 46, 0.3), rgba(205, 21, 105, 0.12)),
        #170817;
    border: 1px solid rgba(255, 224, 138, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.44), 0 0 24px rgba(205, 21, 105, 0.2);
    color: var(--color-gold-bright) !important;
    font-weight: bold;
    border-radius: 6px;
}

.button-secondary {
    background:
        linear-gradient(135deg, rgba(199, 122, 255, 0.18), rgba(255, 255, 255, 0.02)),
        #17091d;
    border: 1px solid rgba(244, 216, 255, 0.48);
    color: var(--color-text) !important;
    border-radius: 6px;
}

.button-primary:hover,
.button-secondary:hover,
#cover .buttons a:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.button-primary:hover {
    border-color: var(--color-gold-bright);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 34px rgba(205, 21, 105, 0.32);
    color: #fff6cf !important;
}

.button-secondary:hover {
    border-color: rgba(244, 216, 255, 0.78);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 28px rgba(199, 122, 255, 0.18);
    color: var(--color-text) !important;
}

.button-label {
    font-size: 18px;
    text-transform: uppercase;
}

#cover .icon {
    margin-right: 0;
}

.button-primary .icon,
.button-secondary .icon {
    margin-right: 0;
}

.button-icon {
    align-items: center;
    background: radial-gradient(circle at 35% 30%, rgba(255, 236, 164, 0.14), rgba(237, 182, 46, 0.15) 44%, rgba(18, 5, 22, 0.92) 100%);
    border: 1px solid rgba(237, 182, 46, 0.34);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
    border-radius: 4px;
}

.button-icon img {
    max-height: 24px;
    max-width: 24px;
}

.button-icon i {
    font-size: 22px;
    line-height: 1;
}

.button-secondary .button-icon {
    background: radial-gradient(circle at 35% 30%, rgba(244, 216, 255, 0.22), rgba(199, 122, 255, 0.14) 44%, rgba(17, 5, 22, 0.92) 100%);
    border-color: rgba(244, 216, 255, 0.34);
}

#cover img::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    margin: 20px 0;
  }

#cover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

#cover .cover-content {
    color: var(--color-text);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cover .cover-content h1 {
    margin-bottom: 48px;
}

#cover .cover-content h1 > span {
    display: block;
    font-size: 60px;
    margin-bottom: 16px;
}

#cover .cover-content a {
    font-size: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(244, 234, 214, 0.72);
    padding: 16px 32px;
}

#cover .cover-content a:hover {
    background-color: rgba(205, 21, 105, 0.18);
}

#cover .home-link {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
        rgba(13, 4, 17, 0.78) !important;
    border: 1px solid rgba(237, 182, 46, 0.38) !important;
    border-radius: 8px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(5, 2, 8, 0.36);
    color: var(--color-text) !important;
    display: flex;
    gap: 10px;
    justify-content: center;
    min-height: 44px;
    padding: 7px 14px 7px 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

#cover .home-link i {
    align-items: center;
    background: radial-gradient(circle at 35% 28%, rgba(255, 236, 164, 0.18), rgba(237, 182, 46, 0.13) 46%, rgba(18, 5, 22, 0.92) 100%);
    border: 1px solid rgba(237, 182, 46, 0.32);
    border-radius: 6px;
    display: inline-flex;
    font-size: 14px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

#cover .home-link:focus,
#cover .home-link:hover {
    background:
        linear-gradient(180deg, rgba(255, 224, 138, 0.1), transparent),
        rgba(24, 7, 29, 0.92) !important;
    border-color: rgba(255, 224, 138, 0.68) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 24px rgba(205, 21, 105, 0.18);
    color: var(--color-gold-bright) !important;
    outline: none;
    text-decoration: none;
}

#cover .header-buttons {
    position: absolute;
    top: 32px;
    display: flex;
    align-items: center;
    left: 32px;
    gap: 12px;
    z-index: 4;
}

#cover .header-buttons .dropdown {
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.42));
}

#cover .header-buttons .dropdown button {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
        rgba(13, 4, 17, 0.78) !important;
    border: 1px solid rgba(237, 182, 46, 0.38) !important;
    border-radius: 8px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(5, 2, 8, 0.36);
    color: var(--color-text) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 7px 14px 7px 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

#cover .header-buttons .dropdown button::before {
    align-items: center;
    background: radial-gradient(circle at 35% 28%, rgba(255, 236, 164, 0.18), rgba(237, 182, 46, 0.13) 46%, rgba(18, 5, 22, 0.92) 100%);
    border: 1px solid rgba(237, 182, 46, 0.32);
    border-radius: 6px;
    content: "\f0ac";
    display: inline-flex;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    width: 30px;
}

#cover .header-buttons .dropdown button > i {
    display: none;
}

#cover .header-buttons .dropdown-toggle::after {
    border-top-color: var(--color-gold-bright);
    margin-left: 2px;
    opacity: 0.9;
}

#cover .header-buttons .dropdown.show button,
#cover .header-buttons .dropdown button:focus,
#cover .header-buttons .dropdown button:hover {
    background:
        linear-gradient(180deg, rgba(255, 224, 138, 0.1), transparent),
        rgba(24, 7, 29, 0.92) !important;
    border-color: rgba(255, 224, 138, 0.68) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 24px rgba(205, 21, 105, 0.18);
    color: var(--color-gold-bright) !important;
    outline: none;
}

#cover .header-buttons .dropdown .dropdown-menu {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        rgba(10, 4, 14, 0.94);
    border: 1px solid rgba(237, 182, 46, 0.3);
    border-radius: 8px;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.48);
    margin-top: 8px;
    min-width: 190px;
    overflow: hidden;
    padding: 6px;
}

#cover .header-buttons .dropdown .dropdown-item {
    border-radius: 5px;
    color: var(--color-text) !important;
    font-size: 15px;
    line-height: 1.2;
    padding: 9px 11px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

#cover .header-buttons .dropdown .dropdown-menu a:hover {
    background-color: rgba(205, 21, 105, 0.2) !important;
    color: var(--color-gold-bright) !important;
}

#cover .header-buttons .dropdown .dropdown-item:focus,
#cover .header-buttons .dropdown .dropdown-item:active {
    background-color: rgba(199, 122, 255, 0.18) !important;
    color: var(--color-text) !important;
    outline: none;
}

#main-content {
    color: var(--color-text);
    background:
        radial-gradient(circle at 12% 14%, rgba(205, 21, 105, 0.08), transparent 28%),
        linear-gradient(180deg, var(--color-bg) 0%, #120619 42%, var(--color-bg) 100%);
}

#main-content #aboutGame {
    align-items: center;
    display: flex;
    gap: 56px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

#main-content #aboutGame > div:first-of-type {
    max-width: 520px;
}

#main-content #aboutGame #video {
    width: 100%;
}

.video {
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(237, 182, 46, 0.26);
    box-shadow: var(--shadow-strong);
}

.video-frame {
    aspect-ratio: 40 / 21;
    background:
        linear-gradient(180deg, rgba(8, 3, 13, 0.08), rgba(8, 3, 13, 0.46)),
        url("/Assets/images/frame.png") center / cover,
        url("/Assets/images/hero.png") center / cover;
    position: relative;
    width: 100%;
}

.video-frame iframe {
    height: 100%;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.25s ease;
    width: 100%;
}

.video.is-playing iframe {
    opacity: 1;
    pointer-events: auto;
}

.video-poster {
    align-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(205, 21, 105, 0.28), transparent 28%),
        rgba(8, 3, 13, 0.18);
    border: 0;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
    transition: background-color 0.25s ease, opacity 0.25s ease;
    width: 100%;
    z-index: 1;
}

.video-poster .button-icon {
    height: 64px;
    width: 64px;
}

.video-poster:hover {
    background:
        radial-gradient(circle at 50% 50%, rgba(237, 182, 46, 0.26), transparent 32%),
        rgba(8, 3, 13, 0.08);
}

.video.is-playing .video-poster {
    opacity: 0;
    pointer-events: none;
}

.section {
    padding: 0 32px;
}

.section-intro,
.section-newsletter {
    background:
        linear-gradient(90deg, rgba(205, 21, 105, 0.16), transparent 42%),
        var(--color-bg-soft);
    border-top: 1px solid rgba(237, 182, 46, 0.2);
    border-bottom: 1px solid rgba(205, 21, 105, 0.16);
}

.section-features {
    background:
        linear-gradient(180deg, rgba(42, 20, 48, 0.42), transparent),
        var(--color-bg);
}

.section-cta {
    background:
        radial-gradient(circle at 82% 50%, rgba(199, 122, 255, 0.12), transparent 30%),
        radial-gradient(circle at 18% 50%, rgba(205, 21, 105, 0.18), transparent 34%),
        linear-gradient(135deg, #120519 0%, #2a0f27 100%);
    border-top: 1px solid rgba(237, 182, 46, 0.24);
    border-bottom: 1px solid rgba(205, 21, 105, 0.22);
}

#main-content .section > div {
    margin: 0 auto;
    max-width: 1200px;
    padding: 56px 0;
}

#main-content > div:first-of-type {
    margin-top: 0;
}

#main-content > div:last-of-type {
    margin-bottom: 0;
}

h2 {
    color: var(--color-text);
    margin-bottom: 24px !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
}

.feature-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--color-panel);
    border: 1px solid rgba(237, 182, 46, 0.2);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    background:
        linear-gradient(90deg, rgba(237, 182, 46, 0.55), rgba(199, 122, 255, 0.34), transparent);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.feature-card i {
    color: var(--color-gold);
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-card p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 40px !important;
    width: 40px !important;
}

/*GALERIA*/
#progress {
    max-width: 100% !important;
}

#progress h2 {
    text-align: center;
    margin-bottom: 40px !important;
}

.galeria {
    display: flex;
    gap: 22px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.galeria:first-of-type {
    margin-top: 0;
}

.galeria .imagen {
    border: 1px solid rgba(237, 182, 46, 0.22);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    height: 430px;
    border-radius: 8px;
    flex: 0 0 calc(33.33% - 15px);
    overflow: hidden;
}

.galeria .imagen:hover {
    border-color: rgba(244, 216, 255, 0.52);
    transform: translateY(-3px);
}

.galeria .imagen img {
    cursor: pointer;
}

.galeria .imagen img,
.galeria .imagen video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: filter 0.3s;
}

.galeria .imagen img:hover {
    filter: saturate(1.12) brightness(1.06);
}

.galeria .imagen img.ampliada {
    cursor: unset;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8);
    filter: grayscale(0) !important;
    z-index: 1;
}

#banner {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(205, 21, 105, 0.22);
    border-top: 1px solid rgba(237, 182, 46, 0.22);
    height: 560px;
    box-shadow:
        inset 0 18px 34px rgba(0, 0, 0, 0.58),
        inset 0 -18px 34px rgba(0, 0, 0, 0.54),
        0 22px 54px rgba(0, 0, 0, 0.32);
    position: relative;
    margin: 0;
    overflow: hidden;
}

#banner .banner-worlds {
    display: flex;
    height: 100%;
    inset: 0;
    position: absolute;
}

#banner .banner-world {
    background-color: var(--color-panel-warm);
    background-position: center;
    background-size: cover;
    flex: 1 1 25%;
    min-width: 0;
    position: relative;
    transform: scale(1.035);
}

#banner .banner-world + .banner-world {
    margin-left: -18px;
}

#banner .banner-world:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
}

#banner .banner-world:nth-child(2),
#banner .banner-world:nth-child(3) {
    clip-path: polygon(36px 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
}

#banner .banner-world:nth-child(4) {
    clip-path: polygon(36px 0, 100% 0, 100% 100%, 0 100%);
}

#banner .banner-world::after {
    background:
        linear-gradient(180deg, rgba(8, 3, 13, 0.18) 0%, rgba(8, 3, 13, 0.04) 38%, rgba(8, 3, 13, 0.34) 100%),
        linear-gradient(90deg, rgba(5, 2, 8, 0.28), transparent 24%, transparent 72%, rgba(5, 2, 8, 0.32));
    content: "";
    inset: 0;
    position: absolute;
}

#banner .banner-world:first-child::after {
    background:
        linear-gradient(180deg, rgba(8, 3, 13, 0.14) 0%, rgba(8, 3, 13, 0.02) 42%, rgba(8, 3, 13, 0.26) 100%),
        linear-gradient(90deg, rgba(5, 2, 8, 0.1), transparent 38%, rgba(5, 2, 8, 0.3));
}

#banner .banner-world:last-child::after {
    background:
        linear-gradient(180deg, rgba(8, 3, 13, 0.14) 0%, rgba(8, 3, 13, 0.02) 42%, rgba(8, 3, 13, 0.26) 100%),
        linear-gradient(90deg, rgba(5, 2, 8, 0.3), transparent 62%, rgba(5, 2, 8, 0.12));
}

#banner::before {
    background:
        radial-gradient(circle at 50% 48%, rgba(5, 2, 8, 0.08), rgba(5, 2, 8, 0.26) 38%, rgba(5, 2, 8, 0.48) 78%),
        linear-gradient(90deg, rgba(5, 2, 8, 0.36), transparent 16%, transparent 84%, rgba(5, 2, 8, 0.36)),
        linear-gradient(180deg, rgba(8, 3, 13, 0.56), transparent 18%, transparent 76%, rgba(8, 3, 13, 0.78));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

#banner::after {
    background:
        linear-gradient(90deg, transparent, rgba(237, 182, 46, 0.5), transparent),
        linear-gradient(90deg, transparent, rgba(205, 21, 105, 0.28), transparent);
    content: "";
    height: 1px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-78px);
    z-index: 2;
}

#banner span.banner-text {
    color: var(--color-text);
    display: block;
    left: 50%;
    max-width: 920px;
    padding: 0 32px;
    position: absolute;
    right: auto;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(920px, calc(100% - 48px));
    font-size: 38px;
    line-height: 1.32;
    text-transform: uppercase;
    text-shadow:
        0 2px 0 rgba(5, 2, 8, 0.95),
        0 9px 22px rgba(0, 0, 0, 0.94),
        0 0 32px rgba(205, 21, 105, 0.24);
    font-weight: bold;
    z-index: 3;
}

#banner span.banner-text > span {
    color: var(--color-gold-bright);
    text-shadow:
        0 2px 0 rgba(5, 2, 8, 0.95),
        0 0 20px rgba(237, 182, 46, 0.38);
}

.wishlist-panel {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.wishlist-panel > div {
    max-width: 720px;
}

.wishlist-panel p {
    color: var(--color-muted);
    margin-bottom: 0;
}

/* PRESSKIT */
.presskit-cover .principal-image {
    object-position: center;
}

.presskit-cover::before {
    background:
        radial-gradient(circle at 70% 35%, rgba(205, 21, 105, 0.24), transparent 32%),
        radial-gradient(circle at 28% 26%, rgba(237, 182, 46, 0.16), transparent 30%),
        linear-gradient(90deg, rgba(5, 2, 8, 0.78) 0%, rgba(5, 2, 8, 0.38) 48%, rgba(5, 2, 8, 0.2) 100%);
}

.presskit-hero {
    color: var(--color-text);
    align-items: center;
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: 980px;
    padding: 0 32px;
    position: absolute;
    text-align: center;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.presskit-hero img {
    display: block;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.72));
    margin: 6px 0 24px;
    max-width: min(620px, 82vw);
    width: 100%;
}

.presskit-hero p {
    color: var(--color-muted);
    max-width: 700px;
}

.presskit-actions {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.section-presskit-facts,
.section-presskit-media,
.section-presskit-requirements {
    background:
        linear-gradient(180deg, rgba(42, 20, 48, 0.36), transparent),
        var(--color-bg);
}

.section-presskit-facts {
    border-top: 1px solid rgba(237, 182, 46, 0.2);
}

.section-presskit-about,
.section-presskit-trailer {
    background:
        linear-gradient(90deg, rgba(205, 21, 105, 0.15), transparent 44%),
        var(--color-bg-soft);
    border-top: 1px solid rgba(237, 182, 46, 0.18);
    border-bottom: 1px solid rgba(205, 21, 105, 0.14);
}

.section-presskit-platforms {
    background:
        radial-gradient(circle at 86% 22%, rgba(199, 122, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(42, 20, 48, 0.36), transparent),
        var(--color-bg);
}

.presskit-facts-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.presskit-fact,
.presskit-feature-list,
.presskit-requirements-grid article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--color-panel);
    border: 1px solid rgba(237, 182, 46, 0.2);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.presskit-fact {
    min-height: 128px;
    padding: 20px;
}

.presskit-fact span {
    color: var(--color-muted);
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.presskit-fact strong {
    color: var(--color-text);
    display: block;
    font-size: 17px;
    line-height: 1.35;
}

.presskit-two-column {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.presskit-two-column p,
.presskit-media p {
    color: var(--color-muted);
}

.presskit-feature-list {
    padding: 28px;
}

.presskit-feature-list ul,
.presskit-requirements-grid ul {
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0;
    padding-left: 20px;
}

.presskit-feature-list li + li,
.presskit-requirements-grid li + li {
    margin-top: 8px;
}

.presskit-trailer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.presskit-trailer-video {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        var(--color-panel);
    border: 1px solid rgba(237, 182, 46, 0.26);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.presskit-trailer-video video {
    aspect-ratio: 16 / 9;
    background: #08030d;
    display: block;
    height: auto;
    width: 100%;
}

.steam-style-widget {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(199, 122, 255, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        #22142c;
    border: 1px solid rgba(237, 182, 46, 0.3);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) minmax(180px, 210px);
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.steam-widget-mark {
    color: rgba(244, 234, 214, 0.16);
    font-size: 54px;
    position: absolute;
    right: 18px;
    top: 14px;
}

.steam-widget-media {
    align-items: center;
    align-self: center;
    aspect-ratio: 16 / 9;
    background: rgba(5, 2, 8, 0.38);
    border: 1px solid rgba(255, 224, 138, 0.16);
    display: flex;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
}

.steam-widget-media img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.steam-widget-content {
    align-self: center;
    padding-right: 28px;
    position: relative;
    z-index: 1;
}

.steam-widget-content h3 {
    color: var(--color-text);
    font-size: 24px !important;
    margin-bottom: 12px;
}

.steam-widget-content p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.steam-widget-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.steam-widget-platforms span {
    align-items: center;
    background: rgba(8, 3, 13, 0.56);
    border: 1px solid rgba(244, 216, 255, 0.24);
    color: var(--color-text);
    display: inline-flex;
    font-size: 14px;
    gap: 8px;
    min-height: 34px;
    padding: 6px 10px;
}

.steam-widget-action {
    align-items: flex-end;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    min-width: 210px;
    position: relative;
    z-index: 1;
}

.steam-widget-action a {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
        #5b8f20;
    border: 1px solid rgba(170, 232, 92, 0.8);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    color: #f5ffd8 !important;
    display: inline-flex;
    font-size: 17px;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 11px 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    width: 100%;
}

.steam-widget-action a:hover {
    filter: brightness(1.08);
    text-decoration: none;
    transform: translateY(-2px);
}

.presskit-assets {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.presskit-download-inline {
    display: inline-flex;
    margin-top: 12px;
}

.presskit-media-heading {
    margin: 38px 0 16px !important;
}

.presskit-asset {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--color-panel);
    border: 1px solid rgba(237, 182, 46, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 230px;
    padding: 18px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.presskit-asset:hover,
.presskit-gallery a:hover {
    border-color: rgba(244, 216, 255, 0.52);
    text-decoration: none;
    transform: translateY(-3px);
}

.presskit-asset img {
    background: rgba(5, 2, 8, 0.42);
    height: 150px;
    object-fit: contain;
    padding: 14px;
    width: 100%;
}

.presskit-asset span {
    color: var(--color-gold-bright);
    font-size: 17px;
}

.presskit-gallery {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.presskit-gallery a {
    border: 1px solid rgba(237, 182, 46, 0.2);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    display: block;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.presskit-gallery a::after {
    align-items: center;
    background: rgba(13, 4, 17, 0.88);
    border: 1px solid rgba(255, 224, 138, 0.58);
    border-radius: 4px;
    bottom: 10px;
    color: var(--color-gold-bright);
    content: "\f019";
    display: flex;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 10px;
    transition: opacity 0.2s ease;
    width: 34px;
}

.presskit-gallery a:hover::after {
    opacity: 1;
}

.presskit-gallery img,
.presskit-gallery video {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.presskit-requirements-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.presskit-requirements-grid article {
    padding: 28px;
}

.presskit-contact-panel {
    align-items: flex-start;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.presskit-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 20px;
}

/*FOOTER*/
#footer {
    color: var(--color-text);
    margin: 0 auto;
    max-width: 1200px;
    padding: 24px 0 0 !important;
}

.social {
    margin: 0 8px;
}

.social:first-of-type {
    margin-left: 0px;
}

.social:last-of-type {
    margin-right: 0px;
}

.social a {
    color: var(--color-text);
}

#footer hr {
    width: 100%;
    border-color: rgba(237, 182, 46, 0.22);
    margin: 24px 0 0;
}

#legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 12px;
    padding: 24px 0;
}

/* NEWSLETTER */
.newsletter-container {
    color: var(--color-text);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.newsletter-container p {
    max-width: 50%;
}

.newsletter-container button {
    background:
        linear-gradient(135deg, rgba(237, 182, 46, 0.34), rgba(205, 21, 105, 0.12)),
        #170817;
    border: 1px solid rgba(255, 224, 138, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), 0 0 24px rgba(205, 21, 105, 0.16);
    color: var(--color-gold-bright);
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
    min-height: 40px;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.newsletter-container button:hover {
    background:
        linear-gradient(135deg, rgba(255, 224, 138, 0.42), rgba(205, 21, 105, 0.16)),
        #1f0b1f;
    border-color: var(--color-gold-bright);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 30px rgba(205, 21, 105, 0.24);
    color: #fff6cf;
    transform: translateY(-1px);
}

form {
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(237, 182, 46, 0.24);
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(10, 4, 14, 0.76);
    color: var(--color-text);
}

input[type="email"]::placeholder {
    color: rgba(244, 234, 214, 0.58);
}

#message {
    margin-top: 16px;
    color: var(--color-gold);
    font-weight: bold;
}

/*COOKIES*/
#cookie-banner {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 999;
    gap: 32px;
}

#cookie-banner p {
    margin: 0;
}

#cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

/*MÓVIL*/
@media (max-width: 768px) {
    #aboutGame {
        flex-direction: column;
        padding: 24px 0 !important;
    }

    #aboutGame > div {
        margin-right: 0 !important;
        width: 100%;
    }

    .video {
        margin-top: 16px;
    }

    #progress, #newsletter {
        padding: 24px 0 !important;
    }

    .galeria {
        gap: 24px;
        max-width: 100%;
        flex-direction: column;
        margin-top: 24px;
    }

    .galeria .imagen {
        height: 400px;
        margin: 0 auto;
        flex: none;
    }

    .galeria .imagen:hover {
        border-color: rgba(237, 182, 46, 0.22);
        transform: none;
    }
    
    .galeria .imagen img:hover {
        filter: grayscale(0);
    }
    

    h2 {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }

    p {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }

    #cover {
        height: min(620px, 88vh);
        min-height: 540px;
        background: #000;
    }

    #cover::before {
        background:
            linear-gradient(180deg, rgba(8, 4, 10, 0.42) 0%, rgba(8, 4, 10, 0.08) 38%, rgba(8, 4, 10, 0.7) 100%),
            linear-gradient(90deg, rgba(6, 4, 8, 0.58) 0%, rgba(6, 4, 8, 0.18) 54%, rgba(34, 8, 44, 0.34) 100%);
    }

    #cover .principal-image {
        object-position: 66% center;
    }

    #cover .hero-brand {
        align-items: center;
        justify-content: center;
        padding: 0 18px 190px;
    }

    #cover .hero-brand img {
        max-height: none;
        max-width: 82vw;
        width: 82vw;
    }

    #cover .hero-actions {
        bottom: 18px;
        max-width: calc(100% - 28px);
        width: 100%;
    }

    #cover .buttons {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 8px;
        width: 100%;
    }

    .button-label {
        font-size: 13px;
    }

    #cover .buttons a {
        min-height: 52px;
        padding: 8px 14px 8px 8px;
        min-width: auto;
    }

    #cover .hero-availability {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 8px;
    }

    .button-icon {
        height: 34px;
        width: 34px;
    }

    #cover .icon {
        font-size: 20px;
        max-height: 24px !important;
    }

    #cover .header-buttons {
        top: 16px;
        left: 16px;
        gap: 8px;
    }

    #cover .header-buttons .home-link,
    #cover .header-buttons .dropdown button {
        min-height: 40px;
        padding: 5px;
    }

    #cover .header-buttons .home-link > span,
    #cover .header-buttons .dropdown button > span {
        display: none;
    }

    #cover .home-link i,
    #cover .header-buttons .dropdown button::before {
        height: 28px;
        width: 28px;
    }

    #cover .header-buttons .dropdown-toggle::after {
        margin-left: 0;
    }

    #cover .header-buttons .dropdown .dropdown-menu {
        min-width: 176px;
    }

    #footer {
        padding: 24px 0 0 !important;
    }

    #footer p {
        text-align: center;
    }

    #footer ul {
        justify-content: center !important;
    }

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

    .feature-card {
        padding: 22px;
    }

    .wishlist-panel {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .wishlist-panel .button-primary {
        width: 100%;
    }

    .newsletter-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-container p {
        max-width: 550px;
    }
    
    form {
        max-width: 550px;
    }

    #legal {
        flex-direction: column;
        gap: 24px;
    }

    #cookie-banner > div {
        font-size: 12px;
    }

    #banner {
        height: 430px;
        margin: 0;
    }

    #banner .banner-worlds {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #banner .banner-world {
        clip-path: none !important;
        transform: none;
    }

    #banner .banner-world + .banner-world {
        margin-left: 0;
    }
    
    #banner span.banner-text {
        font-size: 26px;
        padding: 0 12px;
        width: min(100%, calc(100% - 28px));
    }

    #banner::after {
        left: 14%;
        right: 14%;
        transform: translateY(-70px);
    }

    .presskit-cover {
        min-height: 620px !important;
    }

    .presskit-hero {
        padding: 0 18px;
        top: 54%;
    }

    .presskit-hero p {
        max-width: none;
    }

    .presskit-actions {
        flex-direction: column;
        margin-top: 20px;
    }

    .presskit-actions a {
        width: 100%;
    }

    .presskit-facts-grid,
    .presskit-assets,
    .presskit-gallery,
    .presskit-requirements-grid,
    .presskit-two-column {
        grid-template-columns: 1fr;
    }

    .presskit-fact {
        min-height: 0;
    }

    .presskit-feature-list,
    .presskit-requirements-grid article {
        padding: 22px;
    }

    .presskit-trailer-actions {
        flex-direction: column;
    }

    .presskit-trailer-actions a {
        width: 100%;
    }

    .steam-style-widget {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .steam-widget-content {
        padding-right: 0;
    }

    .steam-widget-action {
        align-items: stretch;
        min-width: 0;
        width: 100%;
    }

    .steam-widget-mark {
        font-size: 42px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #aboutGame {
        flex-direction: column;
        padding: 24px 0 !important;
    }

    #aboutGame > div {
        margin-right: 0 !important;
        width: 100%;
    }

    .video {
        margin-top: 16px;
    }

    #progress, #newsletter {
        padding: 24px 0 !important;
    }

    .galeria {
        gap: 24px;
        max-width: 100%;
    }

    .galeria .imagen {
        height: 400px;
        margin: 0 auto;
        flex: 0 0 calc(50% - 12px);
    }

    h2 {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }

    p {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }

    #cover {
        height: min(660px, 90vh);
        min-height: 600px;
        background: #000;
    }

    #cover .principal-image {
        object-position: 62% center;
    }

    #cover .hero-brand {
        justify-content: center;
        padding: 0 36px 180px;
    }

    #cover .hero-brand img {
        max-height: 70%;
        max-width: min(620px, 82vw);
        width: min(620px, 82vw);
    }

    #cover .hero-actions {
        bottom: 28px;
        width: 700px;
    }

    #cover .buttons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .button-label {
        font-size: 14px;
    }

    #cover .buttons a {
        min-height: 54px;
        padding: 8px 16px 8px 8px;
        min-width: 160px;
    }

    #cover .icon {
        font-size: 20px;
        max-height: 24px !important;
    }

    #footer {
        padding: 24px 0 !important;
    }

    #footer p {
        text-align: center;
    }

    #footer ul {
        justify-content: center !important;
    }

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

    .wishlist-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .presskit-facts-grid,
    .presskit-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .presskit-assets,
    .presskit-requirements-grid,
    .presskit-two-column {
        grid-template-columns: 1fr;
    }

    .presskit-actions {
        flex-wrap: wrap;
    }

    .steam-style-widget {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .steam-widget-action {
        align-items: stretch;
        grid-column: 1 / -1;
        min-width: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1299px) {
    .galeria {
        max-width: 100%;
    }
}

@media (min-width: 1300px) and (max-width: 1700px) {
    .galeria {
        max-width: 90%;
    }
}
