/* ============================================================
   GamingGuideHub.com — Main Stylesheet
   Class prefix: ggh-
   Author: Gracjan Hil ROBOTY ZIEMNE, USŁUGI, HANDEL
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --ggh-night: #101828;
    --ggh-azure: #2F80ED;
    --ggh-violet: #7C3AED;

    /* ---- NEON PALETTE (no gray allowed) ---- */
    --ggh-neon-pink: #FF1493;
    --ggh-neon-cyan: #00F5FF;
    --ggh-neon-green: #39FF14;
    --ggh-neon-purple: #BF00FF;
    --ggh-neon-yellow: #FFE600;
    --ggh-neon-orange: #FF6B35;

    --ggh-warm: #0A0A1A;                     /* was #F8FAFC */
    --ggh-text: #E0E0FF;                     /* was #1F2937 */
    --ggh-card: #12122A;                     /* was #FFFFFF */
    --ggh-border: rgba(255, 20, 147, 0.2);   /* was #E5E7EB */
    --ggh-gradient: linear-gradient(135deg, var(--ggh-neon-pink), var(--ggh-neon-purple));
    --ggh-shadow: 0 4px 24px rgba(255, 20, 147, 0.10);
    --ggh-shadow-hover: 0 8px 32px rgba(191, 0, 255, 0.18);
    --ggh-glow-pink: 0 0 20px rgba(255, 20, 147, 0.35);
    --ggh-glow-cyan: 0 0 20px rgba(0, 245, 255, 0.35);
    --ggh-glow-purple: 0 0 20px rgba(191, 0, 255, 0.35);
    --ggh-radius: 12px;
    --ggh-radius-sm: 8px;
    --ggh-transition: 0.3s ease;
    --ggh-max-width: 1200px;
    --ggh-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ggh-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ggh-text);
    background-color: var(--ggh-warm);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #00D4FF;
    text-decoration: none;
    transition: color var(--ggh-transition);
}

a:hover {
    color: #FF1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

a:focus-visible {
    outline: 2px solid var(--ggh-neon-cyan);
    outline-offset: 2px;
    border-radius: 2px;
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.ggh-container {
    width: 100%;
    max-width: var(--ggh-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section --- */
.ggh-section {
    padding: 60px 0;
}

.ggh-section--dark {
    background-color: var(--ggh-night);
    color: var(--ggh-warm);
}

.ggh-section--gray {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.06), rgba(191, 0, 255, 0.06));
}

.ggh-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.15);
}

.ggh-section--dark .ggh-section__title {
    color: #FFFFFF;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.15);
}

.ggh-section__subtitle {
    font-size: 1.1rem;
    color: #FF6B9D;
    margin-bottom: 40px;
    max-width: 700px;
}

.ggh-section--dark .ggh-section__subtitle {
    color: #00D4FF;
}

.ggh-section__title-centered {
    text-align: center;
}

.ggh-section__subtitle-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Header (Neon Youth) --- */
.ggh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.25);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.08);
}

.ggh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.ggh-header__logo-img {
    display: block;
    width: auto;
    height: 44px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.3));
    transition: filter var(--ggh-transition);
}

.ggh-header__logo-img:hover {
    filter: drop-shadow(0 0 16px rgba(255, 20, 147, 0.6));
}

/* --- Navigation (Neon Youth) --- */
.ggh-nav__list {
    display: flex;
    gap: 6px;
}

.ggh-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #B388FF;
    border-radius: 50px;
    border: 1px solid transparent;
    background: transparent;
    transition: all var(--ggh-transition);
    position: relative;
    overflow: hidden;
}

.ggh-nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(191, 0, 255, 0.1));
    opacity: 0;
    transition: opacity var(--ggh-transition);
}

.ggh-nav__icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.ggh-nav__link span {
    position: relative;
    z-index: 1;
}

.ggh-nav__link:hover {
    color: #FFFFFF;
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.2), inset 0 0 24px rgba(255, 20, 147, 0.05);
    transform: translateY(-1px);
}

.ggh-nav__link:hover::before {
    opacity: 1;
}

.ggh-nav__link--active {
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(191, 0, 255, 0.2));
    border-color: rgba(255, 20, 147, 0.5);
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.25), inset 0 0 30px rgba(255, 20, 147, 0.06);
}

.ggh-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: var(--ggh-gradient);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.6);
    animation: ggh-pulse-glow 2s ease-in-out infinite;
}

.ggh-nav__link--active:hover {
    color: #FFFFFF;
    opacity: 1;
}

@keyframes ggh-pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 20, 147, 0.4); }
    50% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.8), 0 0 40px rgba(191, 0, 255, 0.3); }
}

/* Hamburger Toggle (mobile) - Neon style */
.ggh-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 20, 147, 0.08);
    border: 1px solid rgba(255, 20, 147, 0.25);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--ggh-transition);
}

.ggh-nav-toggle:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 20, 147, 0.5);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}

.ggh-nav-toggle:focus-visible {
    outline: 2px solid var(--ggh-neon-cyan);
    outline-offset: 2px;
}

.ggh-nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #FF1493, #BF00FF);
    border-radius: 4px;
    transition: transform var(--ggh-transition), opacity var(--ggh-transition);
    box-shadow: 0 0 6px rgba(255, 20, 147, 0.4);
}

/* Hamburger open state */
.ggh-nav-toggle[aria-expanded="true"] {
    border-color: rgba(255, 20, 147, 0.6);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.ggh-nav-toggle[aria-expanded="true"] .ggh-nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #FF1493;
}

.ggh-nav-toggle[aria-expanded="true"] .ggh-nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.ggh-nav-toggle[aria-expanded="true"] .ggh-nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #BF00FF;
}

/* --- Hero --- */
.ggh-hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--ggh-night);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.ggh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 50%, rgba(191, 0, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 20%, rgba(0, 245, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ggh-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.ggh-hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.ggh-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ggh-hero__title span {
    background: linear-gradient(135deg, #FF1493, #BF00FF, #00F5FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.3));
}

.ggh-hero__desc {
    font-size: 1.15rem;
    color: #B388FF;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

.ggh-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.ggh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--ggh-font);
    border: none;
    border-radius: var(--ggh-radius-sm);
    cursor: pointer;
    transition: all var(--ggh-transition);
    text-decoration: none;
    line-height: 1;
}

.ggh-btn:focus-visible {
    outline: 2px solid var(--ggh-neon-cyan);
    outline-offset: 2px;
}

.ggh-btn--primary {
    background: var(--ggh-gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.ggh-btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.ggh-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.5), 0 0 40px rgba(255, 20, 147, 0.15);
    color: #FFFFFF;
}

.ggh-btn--secondary {
    background: transparent;
    color: #B388FF;
    border: 2px solid rgba(255, 20, 147, 0.35);
}

.ggh-btn--secondary:hover {
    border-color: #FF1493;
    color: #FFFFFF;
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.25);
    transform: translateY(-2px);
}

.ggh-btn--light {
    background: rgba(18, 18, 42, 0.8);
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.ggh-btn--light:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

/* --- Card Grid --- */
.ggh-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* --- Card --- */
.ggh-card {
    background: var(--ggh-card);
    border-radius: var(--ggh-radius);
    overflow: hidden;
    box-shadow: var(--ggh-shadow);
    transition: transform var(--ggh-transition), box-shadow var(--ggh-transition);
    border: 1px solid var(--ggh-border);
}

.ggh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ggh-shadow-hover), 0 0 30px rgba(255, 20, 147, 0.08);
    border-color: rgba(255, 20, 147, 0.3);
}

.ggh-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ggh-card__body {
    padding: 24px;
}

.ggh-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.ggh-card__desc {
    font-size: 0.95rem;
    color: #FF6B9D;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ggh-card__criteria {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ggh-card__tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.ggh-card__btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    background: var(--ggh-gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--ggh-transition);
    box-shadow: 0 4px 16px rgba(255, 20, 147, 0.25);
}

.ggh-card__btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(255, 20, 147, 0.45);
    color: #FFFFFF;
}

/* --- Game List --- */
.ggh-game-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ggh-game-item {
    display: flex;
    flex-direction: column;
    background: var(--ggh-card);
    border-radius: var(--ggh-radius);
    overflow: hidden;
    border: 1px solid var(--ggh-border);
    box-shadow: var(--ggh-shadow);
    transition: transform var(--ggh-transition), box-shadow var(--ggh-transition);
}

.ggh-game-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--ggh-shadow-hover), 0 0 30px rgba(191, 0, 255, 0.08);
    border-color: rgba(191, 0, 255, 0.3);
}

.ggh-game-item__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ggh-game-item__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ggh-game-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.ggh-game-item__desc {
    font-size: 0.9rem;
    color: #FF6B9D;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.ggh-game-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.ggh-game-item__tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #BF00FF;
    background: rgba(191, 0, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(191, 0, 255, 0.15);
}

.ggh-game-item__btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--ggh-transition);
    align-self: flex-start;
}

.ggh-game-item__btn:hover {
    background: var(--ggh-gradient);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    border-color: transparent;
}

/* --- Content Layout (text + image) --- */
.ggh-content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.ggh-content-layout__image {
    width: 100%;
    border-radius: var(--ggh-radius);
    box-shadow: var(--ggh-shadow);
}

.ggh-content-layout__text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.ggh-content-layout__text p {
    font-size: 1rem;
    color: #69F0AE;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ggh-content-layout__text ul {
    margin-bottom: 16px;
}

.ggh-content-layout__text li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #69F0AE;
    line-height: 1.6;
}

.ggh-content-layout__text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--ggh-gradient);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* --- FAQ --- */
.ggh-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ggh-faq-item {
    border-bottom: 1px solid var(--ggh-border);
}

.ggh-faq-item:first-child {
    border-top: 1px solid var(--ggh-border);
}

.ggh-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ggh-font);
    line-height: 1.4;
    transition: color var(--ggh-transition);
}

.ggh-faq-question:hover {
    color: #FF1493;
}

.ggh-faq-question:focus-visible {
    outline: 2px solid var(--ggh-neon-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

.ggh-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 16px;
    transition: transform var(--ggh-transition);
}

.ggh-faq-question[aria-expanded="true"] .ggh-faq-icon {
    transform: rotate(180deg);
}

.ggh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.ggh-faq-answer--open {
    max-height: 500px;
    padding-bottom: 20px;
}

.ggh-faq-answer p {
    font-size: 0.95rem;
    color: #FF6B9D;
    line-height: 1.7;
}

/* --- Form --- */
.ggh-form {
    max-width: 600px;
    margin: 0 auto;
}

.ggh-form__group {
    margin-bottom: 20px;
}

.ggh-form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00D4FF;
    margin-bottom: 6px;
}

.ggh-form__input,
.ggh-form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--ggh-font);
    color: #E0E0FF;
    background: rgba(18, 18, 42, 0.6);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: var(--ggh-radius-sm);
    transition: border-color var(--ggh-transition), box-shadow var(--ggh-transition);
}

.ggh-form__input:focus,
.ggh-form__textarea:focus {
    outline: none;
    border-color: #FF1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.15), 0 0 20px rgba(255, 20, 147, 0.1);
}

.ggh-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.ggh-form__btn {
    width: 100%;
}

/* --- Cookie Banner --- */
.ggh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--ggh-night);
    color: var(--ggh-warm);
    padding: 16px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.ggh-cookie-banner--visible {
    transform: translateY(0);
}

.ggh-cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.ggh-cookie-banner__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #B388FF;
}

.ggh-cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ggh-cookie-banner__accept {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.ggh-cookie-banner__policy {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* --- Footer --- */
.ggh-footer {
    background: var(--ggh-night);
    color: #B388FF;
    padding: 60px 0 0;
}

.ggh-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.ggh-footer__logo {
    width: auto;
    height: 48px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 16px;
}

.ggh-footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #00D4FF;
    max-width: 400px;
}

.ggh-footer__company {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #00D4FF;
}

.ggh-footer__company strong {
    color: #B388FF;
}

.ggh-footer__heading {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.ggh-footer__heading--mt {
    margin-top: 24px;
}

.ggh-footer__links li {
    margin-bottom: 8px;
}

.ggh-footer__links a {
    font-size: 0.9rem;
    color: #00D4FF;
    transition: color var(--ggh-transition);
}

.ggh-footer__links a:hover {
    color: #FF1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.ggh-footer__contact {
    font-size: 0.9rem;
    color: #00D4FF;
}

.ggh-footer__contact a {
    color: #00D4FF;
}

.ggh-footer__contact a:hover {
    color: #FF1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.ggh-footer__notice {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #00D4FF;
}

.ggh-footer__bottom {
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 20, 147, 0.15);
    text-align: center;
}

.ggh-footer__copyright {
    font-size: 0.85rem;
    color: #00D4FF;
    margin-bottom: 8px;
}

.ggh-footer__safe-note {
    font-size: 0.8rem;
    color: #FF6B9D;
}

/* --- Back to Top --- */
.ggh-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--ggh-gradient);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ggh-transition), visibility var(--ggh-transition), transform var(--ggh-transition);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.ggh-back-to-top--visible {
    opacity: 1;
    visibility: visible;
}

.ggh-back-to-top:hover {
    transform: translateY(-3px);
    color: #FFFFFF;
}

/* --- Advantages Grid --- */
.ggh-advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ggh-advantage-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ggh-advantage-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.12), rgba(191, 0, 255, 0.12));
    border-radius: var(--ggh-radius-sm);
    font-size: 1.3rem;
    color: #FF1493;
    border: 1px solid rgba(255, 20, 147, 0.15);
}

.ggh-advantage-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.ggh-advantage-item__desc {
    font-size: 0.9rem;
    color: #FF6B9D;
    line-height: 1.6;
}

/* --- Page Hero (inner pages) --- */
.ggh-page-hero {
    padding: 60px 0 40px;
    background: var(--ggh-night);
    position: relative;
    overflow: hidden;
}

.ggh-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(191, 0, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ggh-page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.ggh-page-hero__content {
    position: relative;
    z-index: 2;
}

.ggh-page-hero__title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ggh-page-hero__desc {
    font-size: 1rem;
    color: #B388FF;
    max-width: 600px;
}

/* --- Contact Info --- */
.ggh-contact-info {
    background: var(--ggh-card);
    border-radius: var(--ggh-radius);
    padding: 32px;
    border: 1px solid var(--ggh-border);
    box-shadow: var(--ggh-shadow);
}

.ggh-contact-info__item {
    margin-bottom: 20px;
}

.ggh-contact-info__item:last-child {
    margin-bottom: 0;
}

.ggh-contact-info__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00D4FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.ggh-contact-info__value {
    font-size: 1rem;
    color: #FFFFFF;
}

/* --- Utilities --- */
.ggh-text-center { text-align: center; }
.ggh-mt-20 { margin-top: 20px; }
.ggh-mt-40 { margin-top: 40px; }
.ggh-mb-20 { margin-bottom: 20px; }
.ggh-mb-40 { margin-bottom: 40px; }
.ggh-py-80 { padding-top: 80px; padding-bottom: 80px; }

/* --- Thank You Page --- */
.ggh-thankyou {
    text-align: center;
    padding: 80px 0;
}

.ggh-thankyou__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--ggh-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
}

.ggh-thankyou__title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.ggh-thankyou__desc {
    font-size: 1.1rem;
    color: #FF6B9D;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
    .ggh-section {
        padding: 80px 0;
    }

    .ggh-section__title {
        font-size: 2.4rem;
    }

    .ggh-hero {
        padding: 120px 0 100px;
        min-height: 600px;
    }

    .ggh-hero__title {
        font-size: 3.2rem;
    }

    .ggh-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ggh-game-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .ggh-content-layout {
        grid-template-columns: 1fr 1fr;
    }

    .ggh-content-layout--reverse .ggh-content-layout__image {
        order: 2;
    }

    .ggh-content-layout--reverse .ggh-content-layout__text {
        order: 1;
    }

    .ggh-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ggh-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ggh-cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ggh-cookie-banner__text {
        flex: 1;
    }

    .ggh-page-hero {
        padding: 80px 0 60px;
    }

    .ggh-page-hero__title {
        font-size: 2.4rem;
    }
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .ggh-header__inner {
        height: 72px;
    }

    .ggh-nav-toggle {
        display: none;
    }

    .ggh-nav {
        display: block !important;
    }

    .ggh-nav__list {
        display: flex;
    }

    .ggh-hero {
        padding: 140px 0 120px;
        min-height: 650px;
    }

    .ggh-hero__title {
        font-size: 3.6rem;
    }

    .ggh-hero__desc {
        font-size: 1.25rem;
    }

    .ggh-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ggh-game-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .ggh-advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ggh-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }

    .ggh-section__title {
        font-size: 2.6rem;
    }

    .ggh-page-hero__title {
        font-size: 2.8rem;
    }
}

/* ============================================================
   RESPONSIVE — Mobile only (below 1024px)
   ============================================================ */
@media (max-width: 1023px) {
    .ggh-header__logo-img {
        height: 36px;
    }

    .ggh-nav-toggle {
        display: flex;
    }

    .ggh-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 8px;
        right: 8px;
        background: rgba(10, 10, 26, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 20, 147, 0.25);
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 20, 147, 0.08);
    }

    .ggh-nav--open {
        display: block;
        animation: ggh-nav-slide 0.25s ease-out;
    }

    @keyframes ggh-nav-slide {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ggh-nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .ggh-nav__link {
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 12px;
        justify-content: flex-start;
    }

    .ggh-nav__link::before {
        border-radius: 12px;
    }

    .ggh-nav__link--active::after {
        bottom: 6px;
    }

    .ggh-hero__title {
        font-size: 2rem;
    }

    .ggh-hero__desc {
        font-size: 1rem;
    }

    .ggh-hero__actions {
        flex-direction: column;
    }

    .ggh-hero__actions .ggh-btn {
        width: 100%;
    }
}

/* --- Small screens (below 480px) --- */
@media (max-width: 480px) {
    .ggh-header__logo-img {
        height: 32px;
    }
}
