/* ==========================================================================
   OBLIVION GAMES - HELP CENTER & SUPPORT PORTAL STYLESHEET
   ========================================================================== */

/* Hero Search Banner */
.support-hero-section {
    position: relative;
    padding: 6rem 2rem 5rem 2rem;
    background: radial-gradient(circle at center, rgba(231, 76, 60, 0.05) 0%, rgba(7, 7, 8, 0) 70%), 
                linear-gradient(180deg, rgba(15, 17, 21, 0.6) 0%, #070708 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    margin-bottom: 3.5rem;
}

.support-hero-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px var(--accent-red-glow));
}

.support-hero-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Rounded Pill Search Container */
.search-pill-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.4rem 0.5rem 0.4rem 1.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.search-pill-container:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-pill-icon {
    color: var(--text-muted);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-pill-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.search-pill-input::placeholder {
    color: var(--text-muted);
}

.search-pill-button {
    background-color: var(--accent-red);
    color: #fff;
    border: none;
    outline: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-pill-button:hover {
    background-color: #ff5f4d;
    box-shadow: 0 0 12px var(--accent-red-glow);
}

/* Quick Links suggestion chips */
.search-quicklinks {
    margin-top: 1.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quicklink-chip {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.quicklink-chip:hover {
    border-color: var(--accent-red);
    color: #fff;
    background-color: rgba(231, 76, 60, 0.05);
}

/* Games Grid Section */
.game-support-section {
    max-width: 1300px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.support-section-header {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-red);
    padding-left: 1rem;
    color: #fff;
}

.game-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

/* Premium Game Card Layout */
.game-support-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.game-support-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.12);
}

.game-card-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-normal);
    filter: brightness(0.6) contrast(1.1);
}

.game-support-card:hover .game-card-bg-image {
    transform: scale(1.08);
    filter: brightness(0.7) contrast(1.1);
}

.game-card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(0deg, rgba(7, 7, 8, 0.95) 0%, rgba(7, 7, 8, 0.6) 60%, rgba(7, 7, 8, 0) 100%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.game-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.game-card-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categorized Help Topics Section */
.help-topics-section {
    max-width: 1300px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.help-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.topic-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 4px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.topic-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 5px 25px rgba(231, 76, 60, 0.05);
}

.topic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.topic-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.05);
}

.topic-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.topic-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

.topic-article-item {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.topic-article-item:hover {
    color: var(--accent-blue);
}

.topic-article-item svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.topic-article-item:hover svg {
    color: var(--accent-blue);
}

/* General Layout Fixes */
.support-sub-header {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-radius: 4px;
}
