:root {
    --bg-primary: #0c0c0e;
    --bg-secondary: #16161a;
    --accent-primary: #ff3b30;
    --accent-secondary: #ff2d55;
    --text-light-primary: #ffffff;
    --text-light-secondary: #b0b0bc;
    --text-dark-primary: #121214;
    --text-dark-secondary: #5a5a66;
    --border-color: #2a2a35;
    --neon-glow: rgba(255, 59, 48, 0.15);
    --font-headings: 'Press Start 2P', monospace;
    --font-body: 'Rubik', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-light-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
}

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

.sg-retro-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.sg-retro-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--neon-glow);
}

.sg-btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-light-primary);
    border: none;
    border-radius: 4px;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.sg-btn-primary:hover {
    background-color: var(--text-light-primary);
    color: var(--accent-primary);
}

/* ===== header ===== */
.starry-garage-header {
    background-color: #0c0c0e;
    border-bottom: 3px solid #ff3b30;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.15);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.starry-garage-header .navbar {
    padding: 15px 0;
}

.starry-garage-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.starry-garage-header .brand-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.starry-garage-header .nav-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc !important;
    padding: 8px 16px !important;
    transition: none !important;
}

.starry-garage-header .nav-link:hover,
.starry-garage-header .nav-link:focus {
    color: #ff3b30 !important;
    background-color: transparent;
}

.starry-garage-header .navbar-toggler {
    border: 2px solid #ff3b30;
    background-color: #16161a;
    border-radius: 4px;
    padding: 6px 10px;
    transition: none !important;
}

.starry-garage-header .navbar-toggler:focus {
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
    outline: none;
}

.starry-garage-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff3b30' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    .starry-garage-header .navbar-collapse {
        background-color: #16161a;
        border: 2px solid #ff3b30;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
    }

    .starry-garage-header .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid #2a2a35;
    }

    .starry-garage-header .nav-link:last-child {
        border-bottom: none;
    }

    .starry-garage-header .brand-text {
        font-size: 0.9rem;
    }
}

/* ===== hero ===== */
.sg-hero {
    background: radial-gradient(circle at 70% 30%, rgba(255, 59, 48, 0.12) 0%, #0c0c0e 80%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #2a2a35;
}

.sg-hero .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
    margin-bottom: 24px;
}

.sg-hero .hero-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    color: #b0b0bc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sg-hero .btn-primary-neon {
    background-color: #ff3b30;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #ff3b30;
    padding: 14px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

.sg-hero .btn-primary-neon:hover {
    background-color: #ffffff;
    color: #ff3b30;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.sg-hero .btn-secondary-neon {
    background-color: transparent;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #2a2a35;
    padding: 14px 30px;
    border-radius: 8px;
    text-transform: uppercase;
}

.sg-hero .btn-secondary-neon:hover {
    border-color: #ff3b30;
    color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.3);
}

.sg-hero .image-container {
    position: relative;
    z-index: 2;
}

.sg-hero .hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sg-hero .glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.25) 0%, rgba(255, 45, 85, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.sg-hero .deco-element {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    color: #ff2d55;
    opacity: 0.3;
    pointer-events: none;
}

.sg-hero .deco-1 {
    top: 15%;
    right: 10%;
    font-size: 1.5rem;
}

.sg-hero .deco-2 {
    bottom: 20%;
    left: 5%;
    font-size: 2rem;
    color: #ff3b30;
}

.sg-hero .deco-3 {
    top: 40%;
    left: 45%;
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .sg-hero {
        padding: 60px 0;
    }

    .sg-hero .hero-title {
        font-size: 18px !important;
        line-height: 1.5;
    }

    .sg-hero .hero-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px;
    }
}

/* ===== games_grid ===== */
.starry-garage-grid {
    background-color: #0c0c0e;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    padding: 60px 0;
}

.starry-garage-grid .section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.75rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.starry-garage-grid .section-subtitle {
    font-size: 0.95rem;
    color: #b0b0bc;
}

.starry-garage-grid .game-card {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.starry-garage-grid .game-card:hover {
    border-color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
}

.starry-garage-grid .game-card-img-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.starry-garage-grid .game-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.starry-garage-grid .game-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.starry-garage-grid .game-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #ff3b30;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    display: inline-block;
}

.starry-garage-grid .game-card-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}

.starry-garage-grid .game-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.starry-garage-grid .game-card-title-link:hover .game-card-title {
    color: #ff3b30;
}

.starry-garage-grid .game-card-meta {
    font-size: 0.8rem;
    color: #b0b0bc;
    margin-top: auto;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.starry-garage-grid .game-card-btn {
    background-color: #ff3b30;
    color: #ffffff;
    border: 2px solid #ff3b30;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.starry-garage-grid .game-card-btn:hover {
    background-color: transparent;
    border-color: #ff3b30;
    color: #ff3b30;
}

.starry-garage-grid .js-filter-btn,
.starry-garage-grid .js-sort-btn {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    color: #b0b0bc;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
}

.starry-garage-grid .js-filter-btn.active,
.starry-garage-grid .js-sort-btn.active {
    background-color: #ff3b30;
    border-color: #ff3b30;
    color: #ffffff;
}

.starry-garage-grid .js-filter-btn:hover,
.starry-garage-grid .js-sort-btn:hover {
    border-color: #ff3b30;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .starry-garage-grid .section-title {
        font-size: 1rem;
    }

    .starry-garage-grid .section-subtitle {
        font-size: 0.8rem;
    }

    .starry-garage-grid .game-card-title {
        font-size: 0.95rem;
    }
}

/* ===== guides_collections ===== */
.guides-collections-section {
    background-color: #0c0c0e;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    padding: 60px 0;
}

.guides-collections-section .section-title {
    font-family: 'Press Start 2P', monospace;
    color: #ff3b30;
    font-size: 1.75rem;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.guides-collections-section .section-subtitle {
    color: #b0b0bc;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.guides-collections-section .guide-card {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guides-collections-section .guide-card:hover {
    border-color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.25);
}

.guides-collections-section .card-img-link {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.guides-collections-section .card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guides-collections-section .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guides-collections-section .card-title-link {
    text-decoration: none;
}

.guides-collections-section .card-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.guides-collections-section .card-title-link:hover .card-title {
    color: #ff3b30;
}

.guides-collections-section .card-meta {
    font-size: 0.8rem;
    color: #b0b0bc;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.guides-collections-section .card-meta i {
    color: #ff2d55;
}

.guides-collections-section .card-text {
    font-size: 0.9rem;
    color: #b0b0bc;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.guides-collections-section .card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.guides-collections-section .btn-accent {
    background-color: #ff3b30;
    color: #ffffff;
    border: 2px solid #ff3b30;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    flex-grow: 1;
}

.guides-collections-section .btn-accent:hover {
    background-color: #ffffff;
    color: #0c0c0e;
    border-color: #ffffff;
}

.guides-collections-section .btn-share {
    background-color: transparent;
    color: #ff2d55;
    border: 2px solid #ff2d55;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.guides-collections-section .btn-share:hover {
    background-color: #ff2d55;
    color: #ffffff;
}

.guides-collections-section .section-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.guides-collections-section .btn-large {
    background-color: transparent;
    color: #ff3b30;
    border: 2px solid #ff3b30;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
}

.guides-collections-section .btn-large:hover {
    background-color: #ff3b30;
    color: #ffffff;
}

/* ===== ratings_reviews ===== */
.ratings-reviews-section {
    background-color: #0c0c0e;
    color: #ffffff;
    padding: 60px 0;
    font-family: 'Rubik', sans-serif;
}

.ratings-reviews-section .ratings-reviews-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.75rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
    margin-bottom: 15px;
}

.ratings-reviews-section .ratings-reviews-subtitle {
    color: #b0b0bc;
    font-size: 0.95rem;
    font-weight: 400;
}

.ratings-reviews-section .ratings-summary-card {
    background-color: #16161a;
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ratings-reviews-section .ratings-score {
    font-family: 'Press Start 2P', monospace;
    font-size: 3rem;
    color: #ff3b30;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 59, 48, 0.3);
}

.ratings-reviews-section .ratings-stars {
    color: #ff2d55;
    font-size: 1.25rem;
}

.ratings-reviews-section .ratings-count {
    color: #b0b0bc;
    font-size: 0.85rem;
}

.ratings-reviews-section .rating-label {
    width: 60px;
    font-size: 0.85rem;
    color: #b0b0bc;
}

.ratings-reviews-section .rating-percent {
    width: 40px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: right;
}

.ratings-reviews-section .progress {
    border-radius: 4px;
    overflow: hidden;
    background-color: #2a2a35;
}

.ratings-reviews-section .ratings-filter-tabs {
    background-color: #16161a;
    border: 1px solid #2a2a35;
    border-radius: 30px;
    padding: 5px;
    display: inline-flex;
}

.ratings-reviews-section .ratings-filter-tabs .btn {
    background-color: transparent;
    border: none;
    border-radius: 25px;
    color: #b0b0bc;
    font-size: 0.9rem;
    padding: 8px 20px;
    font-weight: 500;
    box-shadow: none;
    outline: none;
}

.ratings-reviews-section .ratings-filter-tabs .btn.active {
    background-color: #ff3b30;
    color: #ffffff;
}

.ratings-reviews-section .ratings-filter-tabs .btn:hover:not(.active) {
    color: #ffffff;
    background-color: rgba(255, 59, 48, 0.1);
}

.ratings-reviews-section .review-card {
    background-color: #16161a;
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ratings-reviews-section .review-card:hover {
    border-color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
}

.ratings-reviews-section .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ff3b30;
    object-fit: cover;
}

.ratings-reviews-section .reviewer-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.ratings-reviews-section .review-stars {
    color: #ff2d55;
    font-size: 0.85rem;
}

.ratings-reviews-section .game-referenced {
    background-color: #0c0c0e;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #2a2a35;
}

.ratings-reviews-section .game-img-link {
    display: block;
    flex-shrink: 0;
}

.ratings-reviews-section .game-thumbnail {
    width: 50px;
    height: 35px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #2a2a35;
}

.ratings-reviews-section .game-title-link {
    color: #ff2d55;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}

.ratings-reviews-section .game-title-link:hover {
    color: #ffffff;
}

.ratings-reviews-section .review-text {
    color: #b0b0bc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.ratings-reviews-section .review-date {
    color: #5a5a66;
    font-size: 0.8rem;
    text-align: right;
}

@media (max-width: 767.98px) {
    .ratings-reviews-section {
        padding: 40px 0;
    }

    .ratings-reviews-section .ratings-reviews-title {
        font-size: 16px !important;
    }

    .ratings-reviews-section .ratings-reviews-subtitle {
        font-size: 13px !important;
    }

    .ratings-reviews-section .ratings-score {
        font-size: 2.2rem;
    }

    .ratings-reviews-section .ratings-filter-tabs .btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ===== daily_challenge ===== */
.daily-challenge-block {
    background-color: #0c0c0e;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    position: relative;
    overflow: hidden;
}

.daily-challenge-block .challenge-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.75rem;
    color: #ff3b30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
    margin-bottom: 1rem;
}

.daily-challenge-block .challenge-subtitle {
    font-size: 0.95rem;
    color: #b0b0bc;
}

.daily-challenge-block .challenge-card,
.daily-challenge-block .leaderboard-card {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.daily-challenge-block .challenge-card {
    position: relative;
}

.daily-challenge-block .challenge-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff3b30;
    color: #ffffff;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    z-index: 2;
}

.daily-challenge-block .challenge-img-link {
    display: block;
    width: 100%;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid #2a2a35;
}

.daily-challenge-block .challenge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.daily-challenge-block .challenge-game-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.daily-challenge-block .challenge-game-title a {
    color: #ffffff;
    text-decoration: none;
}

.daily-challenge-block .challenge-game-title a:hover {
    color: #ff2d55;
}

.daily-challenge-block .challenge-desc {
    color: #b0b0bc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.daily-challenge-block .challenge-progress-container {
    background-color: #0c0c0e;
    border: 1px solid #2a2a35;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.daily-challenge-block .progress-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.daily-challenge-block .progress-text {
    color: #b0b0bc;
}

.daily-challenge-block .progress-percentage {
    color: #ff3b30;
    font-family: 'Press Start 2P', monospace;
}

.daily-challenge-block .progress-bar-bg {
    height: 12px;
    background-color: #16161a;
    border: 1px solid #2a2a35;
    border-radius: 6px;
    overflow: hidden;
}

.daily-challenge-block .progress-bar-fill {
    height: 100%;
    background-color: #ff3b30;
    width: 0%;
}

.daily-challenge-block .challenge-meta {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.daily-challenge-block .challenge-meta i {
    color: #ff3b30;
    margin-right: 0.25rem;
}

.daily-challenge-block .leaderboard-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    color: #ff3b30;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.daily-challenge-block .leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.daily-challenge-block .leaderboard-table th {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    color: #ff2d55;
    border-bottom: 2px solid #ff3b30;
    padding: 0.75rem 0.5rem;
    text-align: left;
}

.daily-challenge-block .leaderboard-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #2a2a35;
    font-size: 0.95rem;
    vertical-align: middle;
}

.daily-challenge-block .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background-color: #2a2a35;
    color: #ffffff;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
}

.daily-challenge-block .rank-1 {
    background-color: #ff3b30;
    color: #ffffff;
}

.daily-challenge-block .rank-2 {
    background-color: #ff2d55;
    color: #ffffff;
}

.daily-challenge-block .rank-3 {
    background-color: #ff2d55;
    opacity: 0.8;
    color: #ffffff;
}

.daily-challenge-block .player-name {
    font-weight: 500;
    color: #ffffff;
}

.daily-challenge-block .time-spent {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: #b0b0bc;
}

@media (max-width: 767.98px) {
    .daily-challenge-block .challenge-title {
        font-size: 1.25rem;
    }

    .daily-challenge-block .challenge-game-title {
        font-size: 0.95rem;
    }

    .daily-challenge-block .leaderboard-title {
        font-size: 0.95rem;
    }

    .daily-challenge-block .leaderboard-table th {
        font-size: 0.65rem;
    }
}

/* ===== footer ===== */
.starry-footer {
    background-color: #0c0c0e;
    border-top: 2px solid #2a2a35;
    font-family: 'Rubik', sans-serif;
    color: #b0b0bc;
}

.starry-footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.starry-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0bc;
}

.starry-footer-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.starry-footer-link {
    color: #b0b0bc;
    text-decoration: none;
    font-size: 0.9rem;
}

.starry-footer-link:hover {
    color: #ff3b30;
    text-decoration: none;
}

.starry-footer-list li {
    margin-bottom: 0.5rem;
}

.starry-footer-icon {
    color: #ff3b30;
}

.starry-footer-contact-text {
    font-size: 0.9rem;
    color: #b0b0bc;
}

.starry-footer-map-container {
    border: 1px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.15);
}

.starry-footer-divider {
    border-color: #2a2a35;
    opacity: 1;
}

.starry-footer-copy {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.starry-footer-legal-list .starry-footer-link {
    font-size: 0.85rem;
}

.starry-garage-header {
    background-color: #0c0c0e;
    border-bottom: 3px solid #ff3b30;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.15);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.starry-garage-header .navbar {
    padding: 15px 0;
}

.starry-garage-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.starry-garage-header .brand-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.starry-garage-header .nav-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc !important;
    padding: 8px 16px !important;
    transition: none !important;
}

.starry-garage-header .nav-link:hover,
.starry-garage-header .nav-link:focus {
    color: #ff3b30 !important;
    background-color: transparent;
}

.starry-garage-header .navbar-toggler {
    border: 2px solid #ff3b30;
    background-color: #16161a;
    border-radius: 4px;
    padding: 6px 10px;
    transition: none !important;
}

.starry-garage-header .navbar-toggler:focus {
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
    outline: none;
}

.starry-garage-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff3b30' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    .starry-garage-header .navbar-collapse {
        background-color: #16161a;
        border: 2px solid #ff3b30;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
    }

    .starry-garage-header .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid #2a2a35;
    }

    .starry-garage-header .nav-link:last-child {
        border-bottom: none;
    }

    .starry-garage-header .brand-text {
        font-size: 0.9rem;
    }
}

.sg-hero {
    background: radial-gradient(circle at 70% 30%, rgba(255, 59, 48, 0.12) 0%, #0c0c0e 80%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #2a2a35;
}

.sg-hero .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
    margin-bottom: 24px;
}

.sg-hero .hero-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    color: #b0b0bc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sg-hero .btn-primary-neon {
    background-color: #ff3b30;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #ff3b30;
    padding: 14px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

.sg-hero .btn-primary-neon:hover {
    background-color: #ffffff;
    color: #ff3b30;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.sg-hero .btn-secondary-neon {
    background-color: transparent;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #2a2a35;
    padding: 14px 30px;
    border-radius: 8px;
    text-transform: uppercase;
}

.sg-hero .btn-secondary-neon:hover {
    border-color: #ff3b30;
    color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.3);
}

.sg-hero .image-container {
    position: relative;
    z-index: 2;
}

.sg-hero .hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sg-hero .glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.25) 0%, rgba(255, 45, 85, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.sg-hero .deco-element {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    color: #ff2d55;
    opacity: 0.3;
    pointer-events: none;
}

.sg-hero .deco-1 {
    top: 15%;
    right: 10%;
    font-size: 1.5rem;
}

.sg-hero .deco-2 {
    bottom: 20%;
    left: 5%;
    font-size: 2rem;
    color: #ff3b30;
}

.sg-hero .deco-3 {
    top: 40%;
    left: 45%;
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .sg-hero {
        padding: 60px 0;
    }

    .sg-hero .hero-title {
        font-size: 18px !important;
        line-height: 1.5;
    }

    .sg-hero .hero-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px;
    }
}

.sg-catalog-section {
    background-color: #0c0c0e;
    color: #ffffff;
}

.sg-catalog-section .catalog-section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 59, 48, 0.4);
}

.sg-catalog-section .catalog-section-desc {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    color: #b0b0bc;
}

.sg-catalog-section .catalog-filter-panel {
    background-color: #16161a;
    border: 1px solid #2a2a35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sg-catalog-section .search-box-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff3b30;
}

.sg-catalog-section .search-box-wrapper .js-search-input {
    background-color: #0c0c0e;
    border: 2px solid #2a2a35;
    color: #ffffff;
    padding-left: 45px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
}

.sg-catalog-section .search-box-wrapper .js-search-input:focus {
    border-color: #ff3b30;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.25);
    outline: none;
}

.sg-catalog-section .search-box-wrapper .js-search-input::placeholder {
    color: #5a5a66;
}

.sg-catalog-section .btn-filter {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #b0b0bc;
    background-color: #0c0c0e;
    border: 2px solid #2a2a35;
    padding: 8px 16px;
    transition: none;
}

.sg-catalog-section .btn-filter:hover {
    color: #ffffff;
    border-color: #ff3b30;
}

.sg-catalog-section .btn-filter.active {
    background-color: #ff3b30;
    color: #ffffff;
    border-color: #ff3b30;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

.sg-catalog-section .sg-game-card {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    transition: none;
}

.sg-catalog-section .sg-game-card:hover {
    border-color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
}

.sg-catalog-section .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.sg-catalog-section .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-catalog-section .badge-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(12, 12, 14, 0.85);
    color: #ff2d55;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ff2d55;
}

.sg-catalog-section .game-card-title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.sg-catalog-section .game-card-meta {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    color: #b0b0bc;
}

.sg-catalog-section .btn-card-cta {
    background-color: #ff3b30;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #ff3b30;
    padding: 10px 20px;
    border-radius: 6px;
    transition: none;
    text-transform: uppercase;
}

.sg-catalog-section .btn-card-cta:hover {
    background-color: #ffffff;
    color: #ff3b30;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.sg-catalog-section .no-results-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 15px;
}

.sg-catalog-section .no-results-desc {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc;
}

.sg-catalog-section .text-accent {
    color: #ff3b30;
}

.starry-footer {
    background-color: #0c0c0e;
    border-top: 2px solid #2a2a35;
    font-family: 'Rubik', sans-serif;
    color: #b0b0bc;
}

.starry-footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.starry-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0bc;
}

.starry-footer-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.starry-footer-link {
    color: #b0b0bc;
    text-decoration: none;
    font-size: 0.9rem;
}

.starry-footer-link:hover {
    color: #ff3b30;
    text-decoration: none;
}

.starry-footer-list li {
    margin-bottom: 0.5rem;
}

.starry-footer-icon {
    color: #ff3b30;
}

.starry-footer-contact-text {
    font-size: 0.9rem;
    color: #b0b0bc;
}

.starry-footer-map-container {
    border: 1px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.15);
}

.starry-footer-divider {
    border-color: #2a2a35;
    opacity: 1;
}

.starry-footer-copy {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.starry-footer-legal-list .starry-footer-link {
    font-size: 0.85rem;
}


/* ===== PAGE: about ===== */
.about-section { background-color: #0c0c0e; font-family: 'Rubik', sans-serif; color: #ffffff; } .about-section .about-badge { font-family: 'Press Start 2P', monospace; font-size: 0.8rem; background-color: #16161a; border: 2px solid #ff3b30; color: #ff3b30; border-radius: 4px; } .about-section .about-title { font-family: 'Press Start 2P', monospace; color: #ffffff; font-size: 1.75rem; line-height: 1.4; text-shadow: 0 0 10px rgba(255, 59, 48, 0.5); } .about-section .text-light-secondary { color: #b0b0bc !important; } .about-section .text-accent { color: #ff3b30 !important; } .about-section .about-feature-icon { font-size: 1.5rem; color: #ff3b30; margin-top: 3px; } .about-section .about-feature-title { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 1.15rem; color: #ffffff; } .about-section .about-feature-desc { font-size: 0.95rem; line-height: 1.6; } .about-section .about-image-wrapper { background-color: #16161a; border: 3px double #2a2a35; box-shadow: 0 0 20px rgba(255, 59, 48, 0.1); display: inline-block; max-width: 100%; } .about-section .about-image { border: 1px solid #ff3b30; object-fit: cover; width: 100%; height: auto; max-height: 400px; } .about-section .about-divider { border-top: 2px dashed #2a2a35; opacity: 1; } .about-section .about-card { background-color: #16161a; border: 2px solid #2a2a35; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); } .about-section .about-card-title { font-family: 'Press Start 2P', monospace; font-size: 1.1rem; color: #ff2d55; line-height: 1.4; } .about-section .about-card-text { font-size: 0.95rem; line-height: 1.6; } @media (max-width: 767.98px) { .about-section .about-title { font-size: 18px !important; } .about-section .about-card-title { font-size: 14px !important; } .about-section .about-feature-title { font-size: 14px !important; } }

/* ===== PAGE: events ===== */
.starry-events {
  background-color: #0c0c0e;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
}

.starry-events .starry-events__title {
  font-family: 'Press Start 2P', monospace;
  color: #ff3b30;
  font-size: 1.75rem;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
  line-height: 1.3;
}

.starry-events .starry-events__subtitle {
  color: #b0b0bc !important;
  font-size: 0.95rem;
  line-height: 1.6;
}


.starry-events .starry-events__filter-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  color: #ffffff;
  background-color: #16161a;
  border: 2px solid #2a2a35;
  padding: 0.75rem 1.25rem;
  transition: none !important;
}

.starry-events .starry-events__filter-btn.active,
.starry-events .starry-events__filter-btn:hover {
  background-color: #ff3b30;
  color: #ffffff;
  border-color: #ff3b30;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}


.starry-events .starry-events__search-icon {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-right: none;
  color: #b0b0bc;
}

.starry-events .starry-events__search-input {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  color: #ffffff;
  font-size: 0.95rem;
}

.starry-events .starry-events__search-input::placeholder {
  color: #5a5a66;
}

.starry-events .starry-events__search-input:focus {
  background-color: #16161a;
  border-color: #ff3b30;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.15);
}


.starry-events .starry-events__card {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  transition: none !important;
  border-radius: 0;
}

.starry-events .starry-events__card:hover {
  border-color: #ff3b30;
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.25);
}

.starry-events .starry-events__card-link {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid #2a2a35;
}

.starry-events .starry-events__card-img {
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  filter: grayscale(20%);
}

.starry-events .starry-events__card:hover .starry-events__card-img {
  filter: grayscale(0%);
}

.starry-events .starry-events__card-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.starry-events .starry-events__card-title a {
  color: #ffffff !important;
  transition: none !important;
}

.starry-events .starry-events__card-title a:hover {
  color: #ff3b30 !important;
}

.starry-events .starry-events__meta {
  font-size: 0.8rem;
  color: #b0b0bc !important;
}

.starry-events .starry-events__card-text {
  font-size: 0.9rem;
  color: #b0b0bc !important;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}


.starry-events .starry-events__progress-container {
  border-top: 1px solid #2a2a35;
  padding-top: 0.75rem;
}

.starry-events .starry-events__progress-label {
  font-size: 0.75rem;
  color: #5a5a66;
}

.starry-events .starry-events__progress-val {
  font-size: 0.75rem;
  color: #5a5a66;
  font-family: 'Press Start 2P', monospace;
}

.starry-events .starry-events__progress-bar {
  background-color: #2a2a35;
  height: 6px;
  border-radius: 0;
}

.starry-events .starry-events__progress-bar .progress-bar {
  background-color: #ff3b30;
  box-shadow: 0 0 5px #ff3b30;
}


.starry-events .starry-events__btn {
  background-color: #ff3b30;
  color: #ffffff;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  border: 2px solid #ff3b30;
  padding: 0.75rem 1rem;
  border-radius: 0;
  transition: none !important;
}

.starry-events .starry-events__btn:hover {
  background-color: #ffffff;
  color: #ff3b30;
  border-color: #ff3b30;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

@media (max-width: 768px) {
  .starry-events .starry-events__title {
    font-size: 1.25rem;
  }
  .starry-events .starry-events__card-title {
    font-size: 0.85rem;
  }
}

/* ===== PAGE: faq ===== */
.faq-section {
  background-color: #0c0c0e;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.faq-section .faq-title {
  font-family: 'Press Start 2P', monospace;
  color: #ff3b30 !important;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
  font-size: 1.75rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .faq-section .faq-title {
    font-size: 1.1rem;
  }
}
.faq-section .faq-subtitle {
  color: #b0b0bc;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-section .faq-search-wrapper {
  position: relative;
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.faq-section .faq-search-wrapper:focus-within {
  border-color: #ff3b30;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.25);
}
.faq-section .faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ff3b30;
}
.faq-section .faq-search-input {
  background-color: #16161a !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 0;
  font-size: 0.95rem;
}
.faq-section .faq-search-input::placeholder {
  color: #5a5a66 !important;
  opacity: 1 !important;
}
.faq-section .faq-search-input:focus {
  box-shadow: none;
  outline: none;
}
.faq-section .faq-categories {
  margin-top: 1rem;
}
.faq-section .btn-outline-danger {
  font-family: 'Rubik', sans-serif;
  border-color: #ff3b30;
  color: #ff3b30;
  background-color: transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.faq-section .btn-outline-danger:hover,
.faq-section .btn-outline-danger.active {
  background-color: #ff3b30 !important;
  color: #ffffff !important;
  border-color: #ff3b30 !important;
}
.faq-section .faq-list {
  margin-top: 2rem;
}
.faq-section .faq-item {
  background-color: #16161a;
  border: 1px solid #2a2a35;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-section .faq-item.active {
  border-color: #ff3b30;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.1);
}
.faq-section .faq-trigger {
  background-color: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
}
.faq-section .faq-trigger:hover {
  background-color: rgba(255, 59, 48, 0.05);
}
.faq-section .faq-question {
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
}
.faq-section .faq-icon-indicator {
  color: #ff3b30;
  margin-left: 1rem;
  font-size: 0.9rem;
}
.faq-section .faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #b0b0bc;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(42, 42, 53, 0.5);
  background-color: rgba(0, 0, 0, 0.15);
}
.faq-section .faq-answer p {
  margin: 0;
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}

/* ===== PAGE: history ===== */
.tournament-history-section {
  background-color: #0c0c0e;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
}

.tournament-history-section .retro-font {
  font-family: 'Press Start 2P', monospace;
}

.tournament-history-section .text-neon-red {
  color: #ff3b30;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.tournament-history-section .text-muted-gray {
  color: #b0b0bc;
}

.tournament-history-section .text-light-gray {
  color: #ffffff;
}

.tournament-history-section .max-width-600 {
  max-width: 600px;
}

.tournament-history-section .search-wrapper {
  position: relative;
}

.tournament-history-section .search-wrapper .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff3b30;
}

.tournament-history-section .search-wrapper .form-control {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  color: #ffffff;
  padding-left: 45px;
  border-radius: 0;
  height: 48px;
}

.tournament-history-section .search-wrapper .form-control:focus {
  border-color: #ff3b30;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
  background-color: #16161a;
  color: #ffffff;
}

.tournament-history-section .search-wrapper .form-control::placeholder {
  color: #5a5a66;
}

.tournament-history-section .btn-filter,
.tournament-history-section .btn-genre {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  color: #b0b0bc;
  border-radius: 0;
  font-family: 'Rubik', sans-serif;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.tournament-history-section .btn-filter.active,
.tournament-history-section .btn-filter:hover,
.tournament-history-section .btn-genre.active,
.tournament-history-section .btn-genre:hover {
  background-color: #ff3b30;
  border-color: #ff3b30;
  color: #ffffff;
}

.tournament-history-section .tournament-card {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-radius: 0;
  overflow: hidden;
}

.tournament-history-section .tournament-card:hover {
  border-color: #ff3b30;
}

.tournament-history-section .card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.tournament-history-section .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-history-section .badge-genre {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 0;
}

.tournament-history-section .meta-date {
  font-size: 0.85rem;
  color: #ff2d55;
}

.tournament-history-section .card-title-retro {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
}

.tournament-history-section .text-yellow {
  color: #ffd700;
}

.tournament-history-section .text-silver {
  color: #c0c0c0;
}

.tournament-history-section .btn-card-action {
  background-color: transparent;
  border: 2px solid #ff3b30;
  color: #ff3b30;
  border-radius: 0;
  font-weight: bold;
  padding: 10px;
  font-size: 0.9rem;
}

.tournament-history-section .btn-card-action:hover {
  background-color: #ff3b30;
  color: #ffffff;
}

.tournament-history-section .card-details-panel {
  background-color: #0f0f12;
}

.tournament-history-section .details-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  color: #ff2d55;
}

/* ===== PAGE: contact ===== */
.starry-contact-section {
  background-color: #0c0c0e;
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
}

.starry-contact-section .starry-heading {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.25rem;
  color: #ff3b30;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
  letter-spacing: 1px;
  word-break: break-word;
}

@media (max-width: 768px) {
  .starry-contact-section .starry-heading {
    font-size: 0.95rem;
  }
}

.starry-contact-section .starry-subheading {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #ffffff;
}

.starry-contact-section .starry-text {
  font-size: 0.95rem;
  color: #b0b0bc;
  line-height: 1.6;
}

.starry-contact-section .starry-detail {
  font-size: 0.95rem;
  color: #b0b0bc;
}

.starry-contact-section .starry-link {
  color: #ff2d55;
  text-decoration: none;
  font-weight: 500;
}

.starry-contact-section .starry-link:hover {
  color: #ffffff;
}

.starry-contact-section .starry-contact-card,
.starry-contact-section .starry-retro-panel {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.starry-contact-section .starry-icon-wrapper {
  background-color: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 59, 48, 0.2);
  flex-shrink: 0;
}

.starry-contact-section .border-neon {
  border: 1px dashed #ff3b30;
  border-radius: 8px;
}

.starry-contact-section .starry-status-box {
  display: flex;
  align-items: center;
  background-color: rgba(255, 59, 48, 0.05);
}

.starry-contact-section .starry-status-dot {
  width: 10px; 
  height: 10px;
  background-color: #00ff66;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 8px #00ff66;
  flex-shrink: 0;
}

.starry-contact-section .starry-status-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
  color: #ffffff;
  line-height: 1.5;
}

.starry-contact-section .border-secondary-dark {
  border-color: #2a2a35 !important;
}

.starry-contact-section .text-neon-red {
  color: #ff3b30;
  font-weight: 500;
}

.starry-contact-section .starry-day {
  color: #b0b0bc;
}

.starry-contact-section .starry-image-container {
  height: 200px;
  border: 1px solid #2a2a35;
}

.starry-contact-section .starry-image-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.starry-contact-section .font-pixel {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
}

/* ===== PAGE: privacy ===== */
.starry-privacy-section {
  background-color: #0c0c0e;
  font-family: 'Rubik', sans-serif;
  color: #b0b0bc;
}
.starry-privacy-section .starry-title {
  font-family: 'Press Start 2P', monospace;
  color: #ff3b30;
  font-size: 1.75rem;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
  margin-bottom: 1rem;
}
.starry-privacy-section .starry-subtitle {
  color: #b0b0bc;
  font-size: 0.95rem;
}
.starry-privacy-section .starry-tabs-container {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.starry-privacy-section .nav-link {
  font-family: 'Rubik', sans-serif;
  color: #b0b0bc;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 500;
}
.starry-privacy-section .nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 59, 48, 0.1);
  border-color: #ff3b30;
}
.starry-privacy-section .nav-link.active {
  color: #ffffff;
  background-color: #ff3b30;
  border-color: #ff3b30;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.starry-privacy-section .starry-content-card {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  min-height: 350px;
}
.starry-privacy-section .starry-content-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.1rem;
  color: #ffffff;
  border-left: 4px solid #ff2d55;
  padding-left: 0.75rem;
  line-height: 1.4;
}
.starry-privacy-section p {
  line-height: 1.8;
  font-size: 0.95rem;
}
.starry-privacy-section .starry-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.starry-privacy-section .starry-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.starry-privacy-section .starry-list li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ff2d55;
}

/* ===== PAGE: terms ===== */
.starry-terms {
  background-color: #0c0c0e;
  color: #b0b0bc;
  font-family: 'Rubik', sans-serif;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.starry-terms .retro-title-container {
  border-bottom: 3px double #ff3b30;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.starry-terms .retro-main-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.7);
  line-height: 1.5;
  word-break: break-word;
}

.starry-terms .terms-card {
  background-color: #16161a;
  border: 2px solid #2a2a35;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  position: relative;
}

.starry-terms .terms-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid #ff3b30;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.3;
}

.starry-terms .terms-section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  color: #ff3b30;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  word-break: break-word;
}

.starry-terms .terms-section-title i {
  color: #ff2d55;
  font-size: 1.1rem;
}

.starry-terms p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #b0b0bc;
  margin-bottom: 1.5rem;
}

.starry-terms ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.starry-terms ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0bc;
}

.starry-terms ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 3px;
  color: #ff2d55;
  font-size: 0.7rem;
}

.starry-terms .last-updated {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  color: #5a5a66;
  margin-top: 40px;
  border-top: 2px dashed #2a2a35;
  padding-top: 20px;
}

.starry-terms .btn-outline-danger {
  border: 2px solid #ff3b30 !important;
  background-color: transparent !important;
  color: #ffffff !important;
  transition: none !important;
  border-radius: 4px;
}

.starry-terms .btn-outline-danger:hover {
  background-color: #ff3b30 !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.5) !important;
}

.starry-terms .btn-danger {
  transition: none !important;
  border-radius: 4px;
}

.starry-terms .btn-danger:hover {
  background-color: #ffffff !important;
  color: #121214 !important;
  box-shadow: 3px 3px 0px #ff3b30 !important;
}

@media (max-width: 768px) {
  .starry-terms .retro-main-title {
    font-size: 16px !important;
  }
  .starry-terms .terms-section-title {
    font-size: 14px !important;
  }
  .starry-terms p, .starry-terms ul li {
    font-size: 14px !important;
  }
  .starry-terms .terms-card {
    padding: 20px;
  }
}

/* ===== PAGE: disclaimer ===== */
.starry-disclaimer {
  background-color: #0c0c0e;
  color: #b0b0bc;
  font-family: 'Rubik', sans-serif;
}
.starry-disclaimer .disclaimer-card {
  background-color: #16161a;
  border: 3px solid #ff3b30;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.15);
}
.starry-disclaimer .h1-retro {
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .starry-disclaimer .h1-retro {
    font-size: 24px;
  }
}
.starry-disclaimer .h2-retro {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #ff2d55;
  text-shadow: 0 0 8px rgba(255, 45, 85, 0.4);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .starry-disclaimer .h2-retro {
    font-size: 14px;
  }
}
.starry-disclaimer .h3-retro {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: #ffffff;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .starry-disclaimer .h3-retro {
    font-size: 12px;
  }
}
.starry-disclaimer .text-neon {
  color: #ff3b30;
}
.starry-disclaimer .text-neon-pink {
  color: #ff2d55;
}
.starry-disclaimer .border-neon-glow {
  border: 2px dashed #ff3b30;
}
.starry-disclaimer .btn-neon-confirm {
  background-color: #ff3b30;
  color: #ffffff;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  border: 2px solid transparent;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
}
.starry-disclaimer .btn-neon-confirm:hover,
.starry-disclaimer .btn-neon-confirm:focus {
  background-color: #ffffff;
  color: #ff3b30;
  border-color: #ff3b30;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
.starry-disclaimer .info-block {
  border-bottom: 1px solid #2a2a35;
  padding-bottom: 20px;
}
.starry-disclaimer .info-block:last-of-type {
  border-bottom: none;
}

.retro-comment-card {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.retro-comment-card.main-comment {
    border-color: #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.15);
}

.retro-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #ff3b30;
}

.retro-username {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}

.retro-badge-neon {
    background-color: #ff2d55;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75rem;
    border-radius: 2px;
    padding: 0.25rem 0.5rem;
}

.retro-time {
    color: #5a5a66 !important;
    font-family: 'Rubik', sans-serif;
}

.retro-comment-text {
    color: #b0b0bc;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.retro-btn-action {
    background-color: transparent;
    border: 1px solid #2a2a35;
    color: #b0b0bc;
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
}

.retro-btn-action:hover {
    background-color: #ff3b30;
    border-color: #ff3b30;
    color: #ffffff;
}

.retro-btn-action:active {
    background-color: #ff2d55;
    border-color: #ff2d55;
}

.retro-reply-wrapper {
    position: relative;
}

.retro-reply-line {
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2a2a35;
}

@media (max-width: 576px) {
    .retro-reply-line {
        left: 0.75rem;
    }
}

.retro-comment-card.reply-comment {
    border-color: #2a2a35;
    background-color: #121214;
}

.retro-reply-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #2a2a35;
}

.retro-badge-reply-neon {
    background-color: #2a2a35;
    color: #b0b0bc;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75rem;
    border-radius: 2px;
    padding: 0.25rem 0.5rem;
}

.retro-btn-action {
    background-color: transparent;
    border: 1px solid #2a2a35;
    color: #b0b0bc;
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
}

.retro-btn-action:hover {
    background-color: #ff3b30;
    border-color: #ff3b30;
    color: #ffffff;
}

.retro-btn-action:active {
    background-color: #ff2d55;
    border-color: #ff2d55;
}


/* ===== PAGE TEMPLATE: games ===== */
.starry-garage-header {
    background-color: #0c0c0e;
    border-bottom: 3px solid #ff3b30;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.15);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.starry-garage-header .navbar {
    padding: 15px 0;
}

.starry-garage-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.starry-garage-header .brand-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.starry-garage-header .nav-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc !important;
    padding: 8px 16px !important;
    transition: none !important;
}

.starry-garage-header .nav-link:hover,
.starry-garage-header .nav-link:focus {
    color: #ff3b30 !important;
    background-color: transparent;
}

.starry-garage-header .navbar-toggler {
    border: 2px solid #ff3b30;
    background-color: #16161a;
    border-radius: 4px;
    padding: 6px 10px;
    transition: none !important;
}

.starry-garage-header .navbar-toggler:focus {
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
    outline: none;
}

.starry-garage-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff3b30' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    .starry-garage-header .navbar-collapse {
        background-color: #16161a;
        border: 2px solid #ff3b30;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
    }

    .starry-garage-header .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid #2a2a35;
    }

    .starry-garage-header .nav-link:last-child {
        border-bottom: none;
    }

    .starry-garage-header .brand-text {
        font-size: 0.9rem;
    }
}

.sg-hero {
    background: radial-gradient(circle at 70% 30%, rgba(255, 59, 48, 0.12) 0%, #0c0c0e 80%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #2a2a35;
}

.sg-hero .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
    margin-bottom: 24px;
}

.sg-hero .hero-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    color: #b0b0bc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sg-hero .image-container {
    position: relative;
    z-index: 2;
}

.sg-hero .hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sg-hero .glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.25) 0%, rgba(255, 45, 85, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.sg-hero .deco-element {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    color: #ff2d55;
    opacity: 0.3;
    pointer-events: none;
}

.sg-hero .deco-1 {
    top: 15%;
    right: 10%;
    font-size: 1.5rem;
}

.sg-hero .deco-2 {
    bottom: 20%;
    left: 5%;
    font-size: 2rem;
    color: #ff3b30;
}

.sg-hero .deco-3 {
    top: 40%;
    left: 45%;
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .sg-hero {
        padding: 60px 0;
    }

    .sg-hero .hero-title {
        font-size: 18px !important;
        line-height: 1.5;
    }

    .sg-hero .hero-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px;
    }
}

.starry-footer {
    background-color: #0c0c0e;
    border-top: 2px solid #2a2a35;
    font-family: 'Rubik', sans-serif;
    color: #b0b0bc;
}

.starry-footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.starry-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0bc;
}

.starry-footer-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.starry-footer-link {
    color: #b0b0bc;
    text-decoration: none;
    font-size: 0.9rem;
}

.starry-footer-link:hover {
    color: #ff3b30;
    text-decoration: none;
}

.starry-footer-list li {
    margin-bottom: 0.5rem;
}

.starry-footer-icon {
    color: #ff3b30;
}

.starry-footer-contact-text {
    font-size: 0.9rem;
    color: #b0b0bc;
}

.starry-footer-map-container {
    border: 1px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.15);
}

.starry-footer-divider {
    border-color: #2a2a35;
    opacity: 1;
}

.starry-footer-copy {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.starry-footer-legal-list .starry-footer-link {
    font-size: 0.85rem;
}

.starry-detail-page {
    background-color: #0c0c0e;
    font-family: 'Rubik', sans-serif;
    color: #b0b0bc;
}

.starry-detail-page .detail-card,
.starry-detail-page .sidebar-card,
.starry-detail-page .retro-comment-form-container {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.starry-detail-page .detail-meta-item {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.starry-detail-page .text-primary-neon {
    color: #ff3b30 !important;
}

.starry-detail-page .detail-main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border: 2px solid #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
}

.starry-detail-page h2,
.starry-detail-page h3 {
    font-family: 'Press Start 2P', monospace;
    line-height: 1.4;
}

.starry-detail-page h2.detail-subtitle {
    font-size: 1.1rem;
    color: #ffffff !important;
    border-bottom: 2px solid #ff3b30;
    padding-bottom: 10px;
}

.starry-detail-page h3.detail-section-title,
.starry-detail-page h3.sidebar-title,
.starry-detail-page h3.retro-comments-title,
.starry-detail-page h4.retro-form-title {
    font-size: 0.95rem;
    color: #ffffff !important;
}

.starry-detail-page .detail-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.starry-detail-page .recent-post-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc;
    text-decoration: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    background-color: #0c0c0e;
    border-radius: 4px;
}

.starry-detail-page .recent-post-link:hover {
    color: #ffffff !important;
    border-color: #ff3b30;
    background-color: #16161a;
}

.starry-detail-page .retro-comment-card {
    background-color: #0c0c0e;
    border: 1px solid #2a2a35;
    padding: 15px;
    border-radius: 6px;
}

.starry-detail-page .retro-avatar,
.starry-detail-page .retro-reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff3b30;
}

.starry-detail-page .retro-username {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
}

.starry-detail-page .retro-badge-neon {
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 6px;
}

.starry-detail-page .retro-badge-reply-neon {
    background-color: #ff2d55;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 6px;
}

.starry-detail-page .retro-time {
    font-size: 0.8rem;
}

.starry-detail-page .retro-comment-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.starry-detail-page .retro-btn-action {
    background-color: transparent;
    color: #b0b0bc;
    border: 1px solid #2a2a35;
    font-size: 0.8rem;
    padding: 4px 8px;
}

.starry-detail-page .retro-btn-action:hover,
.starry-detail-page .retro-btn-action.active {
    color: #ffffff !important;
    border-color: #ff3b30;
    background-color: rgba(255, 59, 48, 0.1);
}

.starry-detail-page .retro-reply-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
}

.starry-detail-page .retro-reply-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2a2a35;
}

.starry-detail-page .form-control,
.starry-detail-page .form-select {
    background-color: #0c0c0e;
    border: 1px solid #2a2a35;
    color: #ffffff;
}

.starry-detail-page .form-control:focus,
.starry-detail-page .form-select:focus {
    background-color: #0c0c0e;
    border-color: #ff3b30;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.3);
}

.starry-detail-page .form-control::placeholder {
    color: #5a5a66;
    opacity: 1;
}

.starry-detail-page .btn-primary-neon {
    background-color: #ff3b30;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #ff3b30;
    padding: 10px 24px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

.starry-detail-page .btn-primary-neon:hover {
    background-color: #ffffff;
    color: #ff3b30;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
    .starry-detail-page h2.detail-subtitle {
        font-size: 14px !important;
    }

    .starry-detail-page h3.detail-section-title,
    .starry-detail-page h3.sidebar-title,
    .starry-detail-page h3.retro-comments-title,
    .starry-detail-page h4.retro-form-title {
        font-size: 12px !important;
    }

    .starry-detail-page .detail-main-img {
        max-height: 250px;
    }

    .starry-detail-page .retro-reply-wrapper {
        padding-left: 20px !important;
    }

    .starry-detail-page .retro-reply-line {
        left: 5px;
    }
}

/* ===== PAGE TEMPLATE: events ===== */
.starry-garage-header {
    background-color: #0c0c0e;
    border-bottom: 3px solid #ff3b30;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.15);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.starry-garage-header .navbar {
    padding: 15px 0;
}

.starry-garage-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.starry-garage-header .brand-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.starry-garage-header .nav-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc !important;
    padding: 8px 16px !important;
    transition: none !important;
}

.starry-garage-header .nav-link:hover,
.starry-garage-header .nav-link:focus {
    color: #ff3b30 !important;
    background-color: transparent;
}

.starry-garage-header .navbar-toggler {
    border: 2px solid #ff3b30;
    background-color: #16161a;
    border-radius: 4px;
    padding: 6px 10px;
    transition: none !important;
}

.starry-garage-header .navbar-toggler:focus {
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
    outline: none;
}

.starry-garage-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff3b30' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    .starry-garage-header .navbar-collapse {
        background-color: #16161a;
        border: 2px solid #ff3b30;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
    }

    .starry-garage-header .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid #2a2a35;
    }

    .starry-garage-header .nav-link:last-child {
        border-bottom: none;
    }

    .starry-garage-header .brand-text {
        font-size: 0.9rem;
    }
}

.sg-hero {
    background: radial-gradient(circle at 70% 30%, rgba(255, 59, 48, 0.12) 0%, #0c0c0e 80%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #2a2a35;
}

.sg-hero .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
    margin-bottom: 24px;
}

.sg-hero .hero-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    color: #b0b0bc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sg-hero .image-container {
    position: relative;
    z-index: 2;
}

.sg-hero .hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sg-hero .glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.25) 0%, rgba(255, 45, 85, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.sg-hero .deco-element {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    color: #ff2d55;
    opacity: 0.3;
    pointer-events: none;
}

.sg-hero .deco-1 {
    top: 15%;
    right: 10%;
    font-size: 1.5rem;
}

.sg-hero .deco-2 {
    bottom: 20%;
    left: 5%;
    font-size: 2rem;
    color: #ff3b30;
}

.sg-hero .deco-3 {
    top: 40%;
    left: 45%;
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .sg-hero {
        padding: 60px 0;
    }

    .sg-hero .hero-title {
        font-size: 18px !important;
        line-height: 1.5;
    }

    .sg-hero .hero-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px;
    }
}

.starry-footer {
    background-color: #0c0c0e;
    border-top: 2px solid #2a2a35;
    font-family: 'Rubik', sans-serif;
    color: #b0b0bc;
}

.starry-footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.starry-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0bc;
}

.starry-footer-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.starry-footer-link {
    color: #b0b0bc;
    text-decoration: none;
    font-size: 0.9rem;
}

.starry-footer-link:hover {
    color: #ff3b30;
    text-decoration: none;
}

.starry-footer-list li {
    margin-bottom: 0.5rem;
}

.starry-footer-icon {
    color: #ff3b30;
}

.starry-footer-contact-text {
    font-size: 0.9rem;
    color: #b0b0bc;
}

.starry-footer-map-container {
    border: 1px solid #2a2a35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.15);
}

.starry-footer-divider {
    border-color: #2a2a35;
    opacity: 1;
}

.starry-footer-copy {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.starry-footer-legal-list .starry-footer-link {
    font-size: 0.85rem;
}

.starry-detail-page {
    background-color: #0c0c0e;
    font-family: 'Rubik', sans-serif;
    color: #b0b0bc;
}

.starry-detail-page .detail-card,
.starry-detail-page .sidebar-card,
.starry-detail-page .retro-comment-form-container {
    background-color: #16161a;
    border: 2px solid #2a2a35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.starry-detail-page .detail-meta-item {
    font-size: 0.85rem;
    color: #b0b0bc;
}

.starry-detail-page .text-primary-neon {
    color: #ff3b30 !important;
}

.starry-detail-page .detail-main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border: 2px solid #ff3b30;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
}

.starry-detail-page h2,
.starry-detail-page h3 {
    font-family: 'Press Start 2P', monospace;
    line-height: 1.4;
}

.starry-detail-page h2.detail-subtitle {
    font-size: 1.1rem;
    color: #ffffff !important;
    border-bottom: 2px solid #ff3b30;
    padding-bottom: 10px;
}

.starry-detail-page h3.detail-section-title,
.starry-detail-page h3.sidebar-title,
.starry-detail-page h3.retro-comments-title,
.starry-detail-page h4.retro-form-title {
    font-size: 0.95rem;
    color: #ffffff !important;
}

.starry-detail-page .detail-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.starry-detail-page .recent-post-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: #b0b0bc;
    text-decoration: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    background-color: #0c0c0e;
    border-radius: 4px;
}

.starry-detail-page .recent-post-link:hover {
    color: #ffffff !important;
    border-color: #ff3b30;
    background-color: #16161a;
}

.starry-detail-page .retro-comment-card {
    background-color: #0c0c0e;
    border: 1px solid #2a2a35;
    padding: 15px;
    border-radius: 6px;
}

.starry-detail-page .retro-avatar,
.starry-detail-page .retro-reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff3b30;
}

.starry-detail-page .retro-username {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
}

.starry-detail-page .retro-badge-neon {
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 6px;
}

.starry-detail-page .retro-badge-reply-neon {
    background-color: #ff2d55;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 6px;
}

.starry-detail-page .retro-time {
    font-size: 0.8rem;
}

.starry-detail-page .retro-comment-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.starry-detail-page .retro-btn-action {
    background-color: transparent;
    color: #b0b0bc;
    border: 1px solid #2a2a35;
    font-size: 0.8rem;
    padding: 4px 8px;
}

.starry-detail-page .retro-btn-action:hover,
.starry-detail-page .retro-btn-action.active {
    color: #ffffff !important;
    border-color: #ff3b30;
    background-color: rgba(255, 59, 48, 0.1);
}

.starry-detail-page .retro-reply-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
}

.starry-detail-page .retro-reply-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2a2a35;
}

.starry-detail-page .form-control,
.starry-detail-page .form-select {
    background-color: #0c0c0e;
    border: 1px solid #2a2a35;
    color: #ffffff;
}

.starry-detail-page .form-control:focus,
.starry-detail-page .form-select:focus {
    background-color: #0c0c0e;
    border-color: #ff3b30;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.3);
}

.starry-detail-page .form-control::placeholder {
    color: #5a5a66;
    opacity: 1;
}

.starry-detail-page .btn-primary-neon {
    background-color: #ff3b30;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border: 2px solid #ff3b30;
    padding: 10px 24px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

.starry-detail-page .btn-primary-neon:hover {
    background-color: #ffffff;
    color: #ff3b30;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
    .starry-detail-page h2.detail-subtitle {
        font-size: 14px !important;
    }

    .starry-detail-page h3.detail-section-title,
    .starry-detail-page h3.sidebar-title,
    .starry-detail-page h3.retro-comments-title,
    .starry-detail-page h4.retro-form-title {
        font-size: 12px !important;
    }

    .starry-detail-page .detail-main-img {
        max-height: 250px;
    }

    .starry-detail-page .retro-reply-wrapper {
        padding-left: 20px !important;
    }

    .starry-detail-page .retro-reply-line {
        left: 5px;
    }
}