.releases {
    background-color: #FDC835;
    /* Fondo amarillo similar */
}

.roadmap {
    background-color: #E4E56D;
}

.release-details {
    font-size: 0.9rem;
    text-align: right;
}

:root {
    --ink: #141414;
    --cream: #fff7d6;
    --sun: #FDC835;
    --leaf: #E4E56D;
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

body {
    font-size: large;
    font-family: "Space Grotesk", sans-serif;
}

b,
strong {
    font-weight: 900;
}

.page-shell {
    padding-bottom: 3rem;
}

.display-title {
    font-family: "Space Grotesk", serif;
    letter-spacing: 0.5px;
}

.hero-splash {
    position: relative;
    overflow: hidden;
}

.hero-splash::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.hero-lead {
    max-width: 720px;
    margin: 1rem auto 0;
    font-size: 1.15rem;
}

.hero-cta {
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
}

.section-shell {
    padding: 2.5rem 2rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #2a2a2a;
}

.section-title {
    font-family: "Space Grotesk", serif;
}

.feature-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.feature-card .feature-media img {
    border-radius: 1rem;
}

.feature-card .feature-media .carousel {
    border-radius: 1rem;
    overflow: hidden;
}

.feature-card .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pill {
    background: #111;
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    margin: 2rem 0;
}

.reveal {
    animation: rise 0.8s ease-out both;
}

.reveal.delay-1 {
    animation-delay: 0.1s;
}

.reveal.delay-2 {
    animation-delay: 0.2s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
    }
}

.home-calendar {
    background-color: #ffffff;
}

.home-calendar thead th {
    font-weight: bold;
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.home-calendar .calendar-day {
    border: none;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1) !important;
    min-height: 140px;
    min-width: 140px;
    padding: 6px;
    vertical-align: top;
    position: relative;
    background-color: #fff;
    text-align: center;
}

.home-calendar .day-number {
    font-weight: bold;
    font-size: 0.85rem;
}

.home-calendar .today {
    color: cornflowerblue;
}

.home-calendar table {
    table-layout: fixed;
}

.home-calendar .event-list {
    max-height: unset;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-calendar .event.event-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    min-height: 90px;
    text-decoration: none;
    color: inherit;
}

.home-calendar .event-overlay {
    position: absolute;
    inset: 0;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.20) 55%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.home-calendar .event-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
}

.home-calendar .event-left,
.home-calendar .event-right {
    min-width: 18px;
}

.home-calendar .event-time {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 999px;
}

.home-calendar .event-bottom {
    display: flex;
    justify-content: center;
}

.home-calendar .event-badge {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.25rem 0.45rem;
}

.home-calendar .event-past {
    filter: grayscale(0.5);
    opacity: 0.75;
}

.home-calendar .event.event-item:hover .event-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

/* 1.3 page utility classes (replaces inline style attrs) */
.hero-main-banner {
    background: url("https://thegamekitchen.com/wp-content/uploads/2024/10/AOBMainImage.png") no-repeat center center / cover;
    color: #fff;
}

.bg-tiles-yellow {
    background: url("/static/img/background/WEB_Background_Tiles_Yellow_02.15d4396321c2.webp");
}

.bg-tiles-blue {
    background: url("/static/img/background/WEB_Background_Tiles_Blue_01.fb52694a260f.webp");
}

.bg-tips-cover {
    background: url("/static/img/background/WEB_Background_Tips.ea122554d726.webp") no-repeat center center / cover;
    color: #fff;
}

.bg-tiles-green {
    background: url("/static/img/background/WEB_Background_Tiles_Green_01.7867e85bc0fd.webp");
}

.btn-community-link {
    min-width: 190px;
}

.btn-brand-discord {
    background-color: #5865f2;
    border-color: #5865f2;
}

.btn-brand-telegram {
    background-color: #229ed9;
    border-color: #229ed9;
}

.btn-brand-meta {
    background-color: #0081FB;
    border-color: #0081FB;
}

.community-showcase-title {
    margin-bottom: 1.5rem;
}

.community-showcase-banner-wrap {
    max-width: 1140px;
    margin: 0 auto;
}

.community-showcase-banner {
    width: 100%;
    border-radius: 1.25rem;
    border: 3px solid rgba(20, 20, 20, 0.16);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.14);
}

.community-showcase-copy {
    max-width: 920px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
    line-height: 1.25;
    color: #1f1f1f;
}

.community-showcase-actions {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.community-showcase-btn {
    min-height: 66px;
    border-radius: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.community-showcase-btn svg,
.community-showcase-btn i {
    flex: 0 0 auto;
}

.community-showcase-btn .bi-meta {
    width: 20px;
    height: 20px;
}

.community-showcase-meta-icon {
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 2px;
}

@media (max-width: 991px) {
    .community-showcase-actions {
    }
}
