:root {
    --bg-main: #050507;
    --bg-surface: #0f0f13;
    --bg-surface-alt: #16161d;
    --primary: #bc13fe;
    --primary-glow: rgba(188, 19, 254, 0.5);
    --secondary: #00f2ff;
    --secondary-glow: rgba(0, 242, 255, 0.4);
    --text-primary: #f8f9fa;
    --text-secondary: #a0a0b0;
    --border-subtle: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.btn-neon-primary {
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    border: none;
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-neon-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-neon-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-neon-secondary:hover {
    background: var(--secondary);
    color: var(--bg-main);
}

.glass-panel {
    background: rgba(15, 15, 19, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.card-gaming {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: border-color 0s, background 0s;
}

.card-gaming:hover {
    border-color: var(--primary);
    background: #1c1c25;
}

/* ===== header ===== */
.alyronot-header {
    z-index: 1050;
}

.alyronot-header .navbar {
    background-color: #0f0f13 !important;
    border-bottom: 1px solid rgba(188, 19, 254, 0.3);
    padding: 0.75rem 0;
}

.alyronot-header .navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alyronot-header .nav-link {
    font-family: 'Rajdhani', sans-serif;
    color: #f8f9fa !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem !important;
    transition: color 0.1s ease;
}

.alyronot-header .nav-link:hover {
    color: #bc13fe !important;
}

.alyronot-header .dropdown-menu {
    background-color: #16161d;
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

.alyronot-header .dropdown-item {
    font-family: 'Rajdhani', sans-serif;
    color: #f8f9fa;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    transition: background 0.1s ease, color 0.1s ease;
}

.alyronot-header .dropdown-item:hover {
    background-color: rgba(188, 19, 254, 0.1);
    color: #00f2ff;
}

.alyronot-header .btn-neon-primary {
    display: inline-block;
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
    transition: filter 0.1s ease;
}

.alyronot-header .btn-neon-primary:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

.alyronot-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.alyronot-header .navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .alyronot-header .navbar-collapse {
        background-color: #0f0f13;
        padding: 1.5rem 0;
        margin-top: 0.5rem;
    }

    .alyronot-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .alyronot-header .dropdown-menu {
        border: none;
        background-color: #16161d;
        margin-top: 0;
    }

    .alyronot-header .btn-neon-primary {
        width: 100%;
        text-align: center;
    }
}

/* ===== hero ===== */
.alyronot-hero-block {
    position: relative;
    min-height: clamp(500px, 90vh, 1000px);
    background-color: #050507;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.alyronot-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.alyronot-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #050507 0%, rgba(5, 5, 7, 0.8) 40%, transparent 100%);
    z-index: 2;
}

@media (max-width: 991px) {
    .alyronot-hero-overlay {
        background: linear-gradient(180deg, rgba(5, 5, 7, 0.9) 0%, rgba(5, 5, 7, 0.7) 100%);
    }

    .alyronot-hero-block {
        text-align: center;
        padding: 100px 0 60px;
    }

    .alyronot-hero-actions {
        justify-content: center;
    }
}

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

.alyronot-hero-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #00f2ff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.alyronot-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.alyronot-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    color: #a0a0b0;
    margin-bottom: 40px;
    max-width: 540px;
}

@media (max-width: 991px) {
    .alyronot-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.alyronot-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
    transition: brightness 0.2s ease;
}

.alyronot-btn-primary:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

.alyronot-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #00f2ff;
    color: #00f2ff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.alyronot-btn-secondary:hover {
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
}

/* ===== games_grid ===== */
.games-grid-section {
    background-color: #050507;
    position: relative;
    overflow: hidden;
}

.games-grid-section__title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f8f9fa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.games-grid-section__subtitle {
    color: #a0a0b0;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.games-grid-section__filter-btn {
    background: transparent;
    border: 2px solid #00f2ff;
    color: #00f2ff;
    padding: 0.5rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: none;
}

.games-grid-section__filter-btn.active,
.games-grid-section__filter-btn:hover {
    background: #00f2ff;
    color: #050507;
}

.games-grid-section__card {
    background: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.games-grid-section__card:hover {
    border-color: #bc13fe;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

.games-grid-section__img-link {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.games-grid-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.games-grid-section__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.games-grid-section__title-link {
    text-decoration: none;
    color: inherit;
}

.games-grid-section__game-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.games-grid-section__play-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.games-grid-section__play-btn:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

@media (max-width: 767px) {
    .games-grid-section__title {
        font-size: 1.5rem;
    }

    .games-grid-section__game-title {
        font-size: 1.1rem;
    }
}

/* ===== game_duration ===== */
#game-durations {
    background-color: #050507;
    position: relative;
}

#game-durations .duration-card {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#game-durations .duration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(188, 19, 254, 0.5) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(188, 19, 254, 0.2);
}

#game-durations .duration-card img {
    transition: transform 0.3s ease;
}

#game-durations .duration-card:hover img {
    transform: scale(1.05);
}

#game-durations .js-view-all:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.6);
}

@media (max-width: 767px) {
    #game-durations .display-5 {
        font-size: 1.75rem;
    }

    #game-durations .duration-card img {
        height: 180px;
    }
}

/* ===== open_rooms ===== */
.open-rooms-section {
    background-color: #050507;
    background-image: linear-gradient(rgba(5, 5, 7, 0.85), rgba(5, 5, 7, 0.85)),
    url('../static/images/pics/neon-lobby-background.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.open-rooms-section .section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f8f9fa;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.open-rooms-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #a0a0b0;
    max-width: 600px;
}

.open-rooms-section .room-card {
    background: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.open-rooms-section .room-card:hover {
    border-color: #bc13fe;
    transform: translateY(-5px);
}

.open-rooms-section .room-img-link {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.open-rooms-section .room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.open-rooms-section .room-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.open-rooms-section .room-title-link {
    text-decoration: none;
    color: inherit;
}

.open-rooms-section .room-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.open-rooms-section .room-title-link:hover .room-title {
    color: #bc13fe;
}

.open-rooms-section .players-count {
    font-size: 0.85rem;
    color: #a0a0b0;
}

.open-rooms-section .room-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.open-rooms-section .status-waiting {
    color: #ffcc00;
}

.open-rooms-section .status-ready {
    color: #00ff88;
}

.open-rooms-section .status-active {
    color: #00f2ff;
}

.open-rooms-section .room-status i {
    font-size: 0.5rem;
}

.open-rooms-section .btn-join {
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    border: none;
    color: #ffffff;
    padding: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
    cursor: pointer;
    transition: brightness 0.2s ease;
}

.open-rooms-section .btn-join:hover {
    filter: brightness(1.2);
}

@media (max-width: 767px) {
    .open-rooms-section .section-title {
        font-size: 1.25rem;
    }

    .open-rooms-section .section-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== tournaments_preview ===== */
.tournaments-preview {
    background-color: #050507;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.tournaments-preview .tp-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.tournaments-preview .tp-subheading {
    color: #a0a0b0;
    font-size: 1rem;
}

.tournaments-preview .tp-filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8f9fa;
    padding: 0.5rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tournaments-preview .tp-filter-btn.active {
    background: #bc13fe;
    border-color: #bc13fe;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.tournaments-preview .tp-card {
    background: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.tournaments-preview .tp-card:hover {
    border-color: #bc13fe;
    transform: translateY(-5px);
}

.tournaments-preview .tp-card-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tournaments-preview .tp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournaments-preview .tp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.tournaments-preview .tp-badge-active {
    background: #00ff88;
    color: #050507;
}

.tournaments-preview .tp-badge-upcoming {
    background: #00f2ff;
    color: #050507;
}

.tournaments-preview .tp-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tournaments-preview .tp-card-title a {
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.tournaments-preview .tp-card-title a:hover {
    color: #00f2ff;
}

.tournaments-preview .tp-stats {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tournaments-preview .tp-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #a0a0b0;
}

.tournaments-preview .tp-accent-cyan {
    color: #00f2ff;
}

.tournaments-preview .tp-accent-purple {
    color: #bc13fe;
}

.tournaments-preview .tp-card-text {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.tournaments-preview .tp-link-more {
    color: #00f2ff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.tournaments-preview .tp-link-more:hover {
    color: #bc13fe;
}

@media (max-width: 767px) {
    .tournaments-preview .tp-heading {
        font-size: 18px;
    }

    .tournaments-preview .tp-subheading {
        font-size: 14px;
    }

    .tournaments-preview .tp-card-title a {
        font-size: 1.1rem;
    }
}

/* ===== issue_report ===== */
.issue-report-block {
    background-color: #050507;
    position: relative;
}

.issue-report-card {
    background-color: #0f0f13;
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.issue-report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #bc13fe, #00f2ff, transparent);
}

.issue-report-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.issue-report-text {
    font-family: 'Inter', sans-serif;
    color: #a0a0b0;
    line-height: 1.6;
}

.issue-report-text.small {
    font-size: 0.85rem;
    color: #6c757d;
}

.icon-wrapper i {
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.icon-wrapper.text-success i {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.btn-report {
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    border: none;
    color: #ffffff;
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-report:hover {
    transform: translateY(-2px);
    brightness: 1.1;
}

.js-report-data-display {
    background-color: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #00f2ff;
    font-family: monospace;
    font-size: 0.8rem;
    border-radius: 6px;
    word-break: break-all;
    text-align: left;
}

@media (max-width: 768px) {
    .issue-report-title {
        font-size: 1.5rem;
    }

    .issue-report-text {
        font-size: 0.9rem;
    }
}

/* ===== support_faq ===== */
.alyronot-support-faq {
    position: relative;
    min-height: 600px;
    color: #f8f9fa;
}

.alyronot-faq-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #bc13fe !important;
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.alyronot-search-container .form-control {
    color: #f8f9fa !important;
}

.alyronot-search-container .form-control::placeholder {
    color: #6c757d;
}

.alyronot-search-container .input-group {
    background: rgba(15, 15, 19, 0.85);
    border-color: rgba(0, 242, 255, 0.3) !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.alyronot-accordion .accordion-button {
    background: #0f0f13 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    transition: all 0.2s ease;
}

.alyronot-accordion .accordion-button:not(.collapsed) {
    color: #bc13fe !important;
    border-color: #bc13fe !important;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

.alyronot-accordion .accordion-button::after {
    filter: invert(1) brightness(2);
}

.alyronot-accordion .accordion-body {
    background: rgba(22, 22, 29, 0.95);
    border-left: 3px solid #bc13fe !important;
    line-height: 1.8;
}

.alyronot-btn {
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    border: none;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
    transition: transform 0.2s ease, brightness 0.2s ease;
}

.alyronot-btn:hover {
    brightness: 1.2;
    transform: translateY(-2px);
    color: #fff;
}

/* ===== footer ===== */
.alyronot-footer {
    background-color: #050507;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(188, 19, 254, 0.3);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.alyronot-footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(188, 19, 254, 0.5));
}

.alyronot-footer-description {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.alyronot-footer-heading {
    font-family: 'Rajdhani', sans-serif;
    color: #f8f9fa;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alyronot-footer-link {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.alyronot-footer-link:hover {
    color: #00f2ff;
}

.alyronot-footer-hr {
    border-color: rgba(255, 255, 255, 0.08);
}

.alyronot-footer-copy {
    color: #6c757d;
    font-size: 13px;
}

.alyronot-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 4px;
    color: #00f2ff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 12px;
}

.alyronot-badge:first-child {
    margin-left: 0;
}

@media (max-width: 767px) {
    .alyronot-footer {
        padding: 60px 0 30px;
    }

    .alyronot-footer-description {
        max-width: 100%;
    }

    .alyronot-footer-heading {
        font-size: 16px;
        margin-bottom: 1rem !important;
    }

    .alyronot-footer-copy {
        text-align: center;
    }
}

.alyronot-catalog-section {
    background-color: #050507;
    min-height: 600px;
}

.alyronot-search-wrapper {
    position: relative;
}

.alyronot-search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #bc13fe;
    font-size: 1.2rem;
    pointer-events: none;
}

.alyronot-search-wrapper .form-control {
    background-color: #16161d;
    border: 1px solid rgba(188, 19, 254, 0.3);
    color: #ffffff;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 8px;
}

.alyronot-search-wrapper .form-control:focus {
    background-color: #1a1a24;
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    color: #ffffff;
}

.alyronot-search-wrapper .form-control::placeholder {
    color: #6c757d;
}

.alyronot-filter-btn {
    background: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0b0;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.alyronot-filter-btn:hover {
    border-color: #bc13fe;
    color: #bc13fe;
}

.alyronot-filter-btn.active {
    background: linear-gradient(45deg, #bc13fe, #7a12f5);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

.alyronot-game-card {
    background-color: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.alyronot-game-card:hover {
    transform: translateY(-5px);
    border-color: #bc13fe;
}

.alyronot-card-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.alyronot-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alyronot-game-card:hover .alyronot-card-img-wrapper img {
    transform: scale(1.1);
}

.alyronot-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.alyronot-card-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #00f2ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.alyronot-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.alyronot-card-info {
    font-size: 0.9rem;
    color: #a0a0b0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.alyronot-btn-card {
    margin-top: auto;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid #00f2ff;
    color: #00f2ff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.alyronot-btn-card:hover {
    background: #00f2ff;
    color: #050507;
}

@media (max-width: 767.98px) {
    .alyronot-catalog-section {
        padding-top: 2rem;
    }

    .alyronot-filter-group {
        justify-content: flex-start;
    }
}


/* ===== PAGE: about ===== */
.about-info {
  background-color: #050507;
  color: #f8f9fa;
  overflow: hidden;
}

.about-info__title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #bc13fe;
  text-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
}

.about-info__text {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-info__badge {
  background: rgba(188, 19, 254, 0.1);
  border: 1px solid rgba(188, 19, 254, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #bc13fe;
}

.about-info__image-wrapper {
  position: relative;
  padding: 10px;
  background: linear-gradient(45deg, #bc13fe, #00f2ff);
  border-radius: 20px;
}

.about-info__image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-info__card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-info__card:hover {
  border-color: #bc13fe;
  background: #1c1c25;
  transform: translateY(-5px);
}

.about-info__icon-box {
  width: 60px;
  height: 60px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #00f2ff;
  font-size: 1.75rem;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.about-info__stats-block {
  background: #0f0f13;
  border: 1px solid rgba(0, 242, 255, 0.1);
  position: relative;
}

.about-info .text-primary {
  color: #bc13fe !important;
}

.about-info .text-info {
  color: #00f2ff !important;
}

.about-info__banner {
  background: linear-gradient(90deg, #16161d 0%, #0f0f13 100%);
  border: 1px solid rgba(188, 19, 254, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-info__cta-btn {
  background: linear-gradient(45deg, #bc13fe, #7a12f5);
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
  transition: brightness 0.2s ease;
}

.about-info__cta-btn:hover {
  filter: brightness(1.2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-info__image-wrapper img {
    height: 300px;
  }
  .about-info__title {
    font-size: 1.5rem;
  }
  .about-info__text {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: daily_tasks ===== */
.tasks-section {
  background-color: #050507;
  color: #f8f9fa;
  font-family: 'Inter', sans-serif;
}

.tasks-section__heading {
  font-family: 'Rajdhani', sans-serif;
  color: #bc13fe;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tasks-section__text {
  color: #a0a0b0;
  line-height: 1.6;
}

.tasks-section__filter-btn {
  background-color: #16161d;
  color: #00f2ff;
  border: 1px solid #00f2ff;
  padding: 8px 20px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tasks-section__filter-btn:hover,
.tasks-section__filter-btn.active {
  background: linear-gradient(45deg, #00f2ff, #00d2dd);
  color: #050507;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.tasks-section__card {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.tasks-section__card:hover {
  border-color: #bc13fe;
}

.tasks-section__img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tasks-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasks-section__card-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #f8f9fa;
  text-transform: uppercase;
}

.tasks-section__card-desc {
  color: #a0a0b0;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.tasks-section__badge {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.badge-facile {
  background-color: rgba(0, 255, 136, 0.15);
  color: #00ff88;
}

.badge-media {
  background-color: rgba(255, 204, 0, 0.15);
  color: #ffcc00;
}

.badge-difficile {
  background-color: rgba(255, 51, 102, 0.15);
  color: #ff3366;
}

.tasks-section__points {
  color: #bc13fe;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tasks-section__progress-container {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.tasks-section__progress-label {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
}

.tasks-section__progress-value {
  font-size: 0.85rem;
  color: #bc13fe;
  font-weight: 600;
}

.tasks-section__progress-bar {
  height: 6px;
  background-color: #050507;
  border-radius: 3px;
}

.tasks-section__progress-bar .progress-bar {
  background: linear-gradient(90deg, #bc13fe, #7a12f5);
}

@media (max-width: 767px) {
  .tasks-section__heading {
    font-size: 1.25rem;
  }
  .tasks-section__text {
    font-size: 0.9rem;
  }
}

/* ===== PAGE: chat ===== */
.chat-ui-section .chat-container-box {
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 650px;
}

.chat-ui-section .chat-sidebar {
  background: #16161d;
}

.chat-ui-section .contact-item {
  cursor: pointer;
  transition: background 0.2s ease;
  border-left: 3px solid transparent;
}

.chat-ui-section .contact-item:hover {
  background: rgba(188, 19, 254, 0.05);
}

.chat-ui-section .contact-item.active {
  background: rgba(188, 19, 254, 0.1);
  border-left-color: #bc13fe;
}

.chat-ui-section .status-indicator {
  position: absolute;
  bottom: 2px;
  right: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #16161d;
}

.chat-ui-section .status-online {
  background: #00ff88;
}

.chat-ui-section .status-offline {
  background: #6c757d;
}

.chat-ui-section .chat-messages {
  background: #050507;
  scrollbar-width: thin;
  scrollbar-color: #bc13fe #050507;
}

.chat-ui-section .message-content {
  max-width: 80%;
  word-wrap: break-word;
}

.chat-ui-section .message-received .message-content {
  background: #16161d;
  color: #f8f9fa;
  border-bottom-left-radius: 0 !important;
}

.chat-ui-section .message-sent {
  max-width: 80%;
}

.chat-ui-section .message-sent .message-content {
  background: #bc13fe;
  color: #ffffff;
  border-bottom-right-radius: 0 !important;
}

.chat-ui-section .btn-chat-primary {
  background: linear-gradient(45deg, #bc13fe, #7a12f5);
  border: none;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
}

.chat-ui-section .btn-chat-primary:hover {
  filter: brightness(1.1);
  color: #ffffff;
}

.chat-ui-section .form-control:focus {
  border-color: #bc13fe;
  box-shadow: 0 0 0 0.25rem rgba(188, 19, 254, 0.25);
  color: #fff;
}

.chat-ui-section .chat-avatar-img {
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .chat-ui-section .chat-container-box {
    height: auto;
  }
  .chat-ui-section .chat-sidebar {
    max-height: 300px;
  }
  .chat-ui-section .chat-messages {
    height: 400px;
  }
}

/* ===== PAGE: tournaments ===== */
.tournaments-schedule {
  background-color: #050507;
  min-height: 60vh;
}
.tournaments-schedule h1 {
  color: #f8f9fa;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.tournaments-schedule .search-box input {
  background-color: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8f9fa;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
}
.tournaments-schedule .search-box input:focus {
  background-color: #16161d;
  border-color: #bc13fe;
  box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
  color: #ffffff;
}
.tournaments-schedule .search-box input::placeholder {
  color: #6c757d;
}
.tournaments-schedule .btn-primary {
  background: linear-gradient(45deg, #bc13fe, #7a12f5);
  border: none;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: brightness 0s;
}
.tournaments-schedule .btn-primary:hover,
.tournaments-schedule .btn-primary.active {
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.6);
}
.tournaments-schedule .btn-outline-primary {
  border-color: #00f2ff;
  color: #00f2ff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0s;
}
.tournaments-schedule .btn-outline-primary:hover {
  background-color: #00f2ff;
  color: #050507;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}
.tournaments-schedule .card {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0s;
}
.tournaments-schedule .card:hover {
  border-color: #bc13fe;
  background-color: #1c1c25;
}
.tournaments-schedule .card-img-top {
  height: 200px;
  object-fit: cover;
}
.tournaments-schedule .card-title {
  font-family: 'Rajdhani', sans-serif;
  color: #bc13fe;
  font-weight: 600;
  letter-spacing: 1px;
}
.tournaments-schedule .badge {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.tournaments-schedule .badge.bg-success {
  background: #00ff88 !important;
  color: #050507;
}
.tournaments-schedule .badge.bg-info {
  background: #00f2ff !important;
  color: #050507;
}
.tournaments-schedule .badge.bg-secondary {
  background: #343a40 !important;
}
.tournaments-schedule .text-secondary-emphasis {
  color: #a0a0b0 !important;
}
.tournaments-schedule .list-unstyled li {
  font-size: 0.9rem;
}

/* ===== PAGE: tournament_history ===== */
.tournament-history-section {
  background-color: #050507;
}

.tournament-history-section .bg-surface {
  background-color: #0f0f13 !important;
}

.tournament-history-section .border-subtle {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.tournament-history-section .text-accent {
  color: #bc13fe;
}

.tournament-history-section .card {
  transition: border-color 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
}

.tournament-history-section .card:hover {
  border-color: rgba(188, 19, 254, 0.4) !important;
}

.tournament-history-section .card-img-top {
  height: 200px;
  object-fit: cover;
}

.tournament-history-section .badge {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tournament-history-section h2, .tournament-history-section h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.tournament-history-section .input-group-text,
.tournament-history-section .form-control,
.tournament-history-section .form-select {
  border-color: rgba(255, 255, 255, 0.1);
}

.tournament-history-section .form-control:focus,
.tournament-history-section .form-select:focus {
  background-color: #16161d;
  box-shadow: 0 0 0 0.25rem rgba(188, 19, 254, 0.25);
  border-color: #bc13fe;
}

.tournament-history-section .champions-list img {
  border: 2px solid rgba(188, 19, 254, 0.3);
  padding: 1px;
}

/* ===== PAGE: auth ===== */
.auth-section {
  background-color: #050507;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-card {
  background: rgba(22, 22, 29, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #bc13fe, #00f2ff);
}

.auth-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #f8f9fa;
  letter-spacing: 1px;
}

.auth-tab-btn {
  background: transparent;
  border: none;
  color: #a0a0b0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.auth-tab-btn.active {
  color: #bc13fe;
  border-bottom: 2px solid #bc13fe;
}

.auth-tab-btn:hover:not(.active) {
  color: #f8f9fa;
}

.form-label {
  color: #a0a0b0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.auth-input {
  background-color: #0f0f13 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.auth-input:focus {
  background-color: #0f0f13 !important;
  border-color: #bc13fe;
  box-shadow: 0 0 10px rgba(188, 19, 254, 0.2);
  outline: none;
}

.auth-input::placeholder {
  color: #6c757d !important;
}

.btn-auth-submit {
  background: linear-gradient(45deg, #bc13fe, #7a12f5);
  color: #ffffff;
  border: none;
  padding: 0.85rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
  cursor: pointer;
}

.btn-auth-submit:hover {
  filter: brightness(1.1);
}

.auth-link {
  color: #00f2ff;
  text-decoration: none;
}

.auth-link:hover {
  color: #bc13fe;
}

.auth-message-box {
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.auth-message-box.success {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.auth-message-box.error {
  background: rgba(255, 51, 102, 0.1);
  color: #ff3366;
  border: 1px solid rgba(255, 51, 102, 0.3);
}

.form-check-input:checked {
  background-color: #bc13fe;
  border-color: #bc13fe;
}

/* ===== PAGE: privacy ===== */
.aly-privacy-section {
  background-color: #050507;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

.aly-sticky-nav {
  position: sticky;
  top: 100px;
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.aly-nav-title {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  border-bottom: 2px solid #bc13fe;
  padding-bottom: 10px;
}

.aly-nav-link {
  color: #a0a0b0;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.aly-nav-link:hover, .aly-nav-link.active {
  color: #00f2ff;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.aly-privacy-content {
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #f8f9fa;
}

.aly-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #bc13fe;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.aly-section-title i {
  color: #00f2ff;
  font-size: 1.75rem;
}

.aly-text-muted {
  color: #a0a0b0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.aly-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.aly-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 1rem;
  color: #a0a0b0;
  line-height: 1.6;
}

.aly-list li::before {
  content: '\F287';
  font-family: 'Bootstrap-Icons';
  position: absolute;
  left: 0;
  color: #bc13fe;
}

.aly-last-update {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .aly-privacy-content {
    padding: 1.5rem !important;
  }
  .aly-section-title {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: terms ===== */
.aly-terms-section {
  background-color: #050507;
  min-height: 100vh;
  color: #f8f9fa;
}

.aly-terms-nav-container {
  background: rgba(22, 22, 29, 0.8);
  border: 1px solid rgba(188, 19, 254, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  top: 100px;
}

.aly-terms-link {
  font-family: 'Rajdhani', sans-serif;
  color: #a0a0b0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding-left: 15px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.aly-terms-link:hover {
  color: #bc13fe;
  border-left-color: rgba(188, 19, 254, 0.5);
}

.aly-terms-link.active {
  color: #00f2ff;
  border-left-color: #00f2ff;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.aly-terms-content {
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.aly-terms-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.aly-terms-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: #bc13fe;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(188, 19, 254, 0.3);
  padding-bottom: 10px;
}

.aly-terms-text {
  line-height: 1.8;
  color: #a0a0b0;
  margin-bottom: 1.5rem;
}

.aly-terms-list {
  list-style: none;
  padding-left: 0;
  color: #a0a0b0;
}

.aly-terms-list li {
  position: relative;
  padding-left: 25px;
}

.aly-terms-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: #00f2ff;
}

@media (max-width: 991px) {
  .aly-terms-content {
    padding: 1.5rem !important;
  }
  .aly-terms-title {
    font-size: 1.5rem;
  }
  .aly-terms-subtitle {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section { background-color: #050507; font-family: 'Inter', sans-serif; }
.disclaimer-section .disclaimer-content-wrapper { background: #0f0f13; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; position: relative; overflow: hidden; }
.disclaimer-section .disclaimer-title { font-family: 'Rajdhani', sans-serif; color: #bc13fe; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 2rem; }
.disclaimer-section .disclaimer-lead { color: #f8f9fa; font-size: 1.1rem; line-height: 1.6; }
.disclaimer-section .disclaimer-card { background: #16161d; border: 1px solid rgba(255, 255, 255, 0.08); padding: 1.5rem; border-radius: 8px; }
.disclaimer-section .disclaimer-icon-box { color: #00f2ff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: rgba(0, 242, 255, 0.1); flex-shrink: 0; }
.disclaimer-section .disclaimer-card-title { font-family: 'Rajdhani', sans-serif; color: #00f2ff; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }
.disclaimer-section .disclaimer-text { color: #a0a0b0; font-size: 1rem; line-height: 1.6; }
@media (max-width: 767.98px) {
  .disclaimer-section .disclaimer-title { font-size: 1.5rem; }
  .disclaimer-section .disclaimer-lead { font-size: 1rem; }
  .disclaimer-section .disclaimer-content-wrapper { padding: 1.5rem !important; }
}

.comment-card {
    background-color: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #f8f9fa;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(188, 19, 254, 0.3);
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.2);
}

.comment-username {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #bc13fe;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.comment-body p {
    font-family: 'Inter', sans-serif;
    color: #a0a0b0;
    line-height: 1.6;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #a0a0b0;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.btn-comment-action:hover {
    color: #bc13fe;
}

.btn-comment-action.active {
    color: #bc13fe;
}

.border-primary {
    border-color: #bc13fe !important;
}

.reply-card {
    background-color: #0f0f13;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-avatar.small {
    width: 40px;
    height: 40px;
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.border-secondary {
    border-color: #00f2ff !important;
}

.text-info {
    color: #00f2ff !important;
}

.badge.bg-info-subtle {
    background-color: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.ms-5 {
    margin-left: 3rem !important;
}

@media (max-width: 576px) {
    .ms-5 {
        margin-left: 1.5rem !important;
    }
}


/* ===== PAGE TEMPLATE: games ===== */
.alyronot-detail-section {
    background-color: #050507;
}

.alyronot-detail-hero {
    border-bottom: 1px solid rgba(188, 19, 254, 0.1);
}

.alyronot-detail-hero .breadcrumb-item,
.alyronot-detail-hero .breadcrumb-item a {
    color: #a0a0b0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.alyronot-detail-hero .breadcrumb-item a:hover {
    color: #00f2ff;
}

.alyronot-detail-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.alyronot-detail-subtitle {
    color: #00f2ff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    max-width: 700px;
}

.alyronot-iframe-wrapper {
    position: relative;
    width: 100%;
    height: clamp(300px, 60vh, 600px);
    background-color: #000;
    border: 2px solid rgba(188, 19, 254, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.2);
}

.alyronot-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.alyronot-fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(15, 15, 19, 0.8);
    border: 1px solid #00f2ff;
    color: #00f2ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.alyronot-fullscreen-btn:hover {
    background: #00f2ff;
    color: #050507;
}

.alyronot-info-card,
.alyronot-specs-card {
    background-color: #0f0f13;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.alyronot-info-heading {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-left: 4px solid #bc13fe;
    padding-left: 15px;
}

.alyronot-rich-text p {
    color: #a0a0b0;
    line-height: 1.8;
    font-size: 16px;
}

.alyronot-specs-list li span:first-child {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.alyronot-specs-list li span:last-child {
    font-family: 'Inter', sans-serif;
}

.alyronot-specs-image-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid rgba(188, 19, 254, 0.3);
}

@media (max-width: 768px) {
    .alyronot-detail-title {
        font-size: 24px;
    }

    .alyronot-info-card,
    .alyronot-specs-card {
        padding: 1.5rem;
    }

    .alyronot-iframe-wrapper {
        height: 350px;
    }
}