:root {
    --godof-primary: #22c55e;
    --godof-primary-light: #4ade80;
    --godof-primary-dark: #16a34a;
    --godof-primary-alpha-20: rgba(34,197,94,0.2);
    --godof-accent: #a855f7;
    --godof-bg-dark: #0f172a;
    --godof-bg-light: #1e293b;
    --godof-bg-card: #1e293b;
    --godof-bg-card-hover: #334155;
    --godof-text-primary: #ffffff;
    --godof-text-secondary: rgba(255,255,255,0.7);
    --godof-text-muted: rgba(255,255,255,0.45);
    --godof-success: #22c55e;
    --godof-success-dark: #16a34a;
    --godof-warning: #f59e0b;
    --godof-danger: #ef4444;
    --godof-gradient-primary: linear-gradient(135deg, #22c55e, #a855f7);
    --godof-gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
    --godof-radius-sm: 8px;
    --godof-radius: 12px;
    --godof-radius-lg: 18px;
    --godof-transition: 0.3s ease;
    --godof-spacing-sm: 8px;
    --godof-font-heading: 'Poppins', sans-serif;
    --godof-font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--godof-font-body);
    color: var(--godof-text-primary);
    background: linear-gradient(180deg, #0a0a0a 0%, var(--godof-bg-dark) 100%);
    line-height: 1.6;
    min-height: 100vh;
    display: grid;
    grid-template-areas: 
        "sidebar header"
        "sidebar main"
        "sidebar footer";
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto 1fr auto;
    overflow-x: hidden;
}

a {
    color: var(--godof-primary);
    text-decoration: none;
    transition: var(--godof-transition);
}

a:hover {
    color: var(--godof-primary-light);
}

.godof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.godof-header {
    grid-area: header;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-link img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a,
.header-nav div {
    color: var(--godof-text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--godof-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a:hover,
.header-nav div:hover {
    color: var(--godof-primary);
}

.header-nav a.active {
    color: var(--godof-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 20px;
    border-radius: var(--godof-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--godof-transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: transparent;
    color: var(--godof-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    border-color: var(--godof-primary);
    color: var(--godof-primary);
}

.btn-register {
    background: var(--godof-gradient-primary);
    color: white;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-search {
    width: 40px;
    height: 40px;
    border-radius: var(--godof-radius);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--godof-text-secondary);
    cursor: pointer;
    transition: var(--godof-transition);
}

.btn-search:hover {
    background: rgba(34, 197, 94, 0.2);
    color: var(--godof-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--godof-text-primary);
    border-radius: 2px;
    transition: var(--godof-transition);
}

.sidebar {
    grid-area: sidebar;
    background: rgba(15, 23, 42, 0.95);
    border-right: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 70px;
    z-index: 90;
}

.sidebar-item {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: var(--godof-radius);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--godof-text-muted);
    cursor: pointer;
    transition: var(--godof-transition);
    position: relative;
}

.sidebar-item:hover {
    background: rgba(34, 197, 94, 0.1);
    color: var(--godof-primary);
}

.sidebar-item.active {
    background: var(--godof-gradient-primary);
    color: white;
}

.sidebar-item .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--godof-primary);
    border-radius: 50%;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--godof-bg-light);
    z-index: 201;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--godof-text-primary);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-body {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-auth {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-btn {
    padding: 12px 16px;
    border-radius: var(--godof-radius);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--godof-transition);
}

.mobile-menu-btn:first-child {
    background: var(--godof-gradient-primary);
    color: white;
}

.mobile-menu-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--godof-text-primary);
}

.mobile-menu-item {
    padding: 15px 20px;
    color: var(--godof-text-secondary);
    cursor: pointer;
    transition: var(--godof-transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu-item:hover {
    background: rgba(34, 197, 94, 0.1);
    color: var(--godof-primary);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--godof-text-muted);
    font-size: 12px;
}

main {
    grid-area: main;
    min-height: 100vh;
}

.godof-article {
    padding: 40px 0;
}

.godof-page-title {
    font-family: var(--godof-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--godof-gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.godof-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--godof-text-secondary);
    text-align: center;
}

.godof-slogan {
    font-family: var(--godof-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--godof-primary);
    margin-top: 20px;
    text-align: center;
}

.godof-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--godof-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--godof-transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.godof-btn-primary {
    background: var(--godof-gradient-primary);
    color: white;
}

.godof-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.godof-hero {
    margin: 60px 0;
}

.godof-hero-gradient-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/banner.png');
        /* image-set() overrides fallback above in modern browsers */
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            image-set(
                url('/images/banner.avif') type('image/avif'),
                url('/images/banner.webp') type('image/webp'),
                url('/images/banner.png') type('image/png')
            );;
    border-radius: var(--godof-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.godof-hero-gradient-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.godof-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.godof-banner-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.godof-banner-title {
    font-family: var(--godof-font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.godof-banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.godof-games-section {
    margin: 80px 0;
}

.games-section-title {
    font-family: var(--godof-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--godof-text-primary);
}

.godof-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.godof-game-card {
    position: relative;
    border-radius: var(--godof-radius);
    overflow: hidden;
    background: var(--godof-bg-card);
    cursor: pointer;
    transition: all 0.15s ease;
}

.godof-game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.godof-game-card img {
    width: 100%;
    height: 267px;
    object-fit: cover;
}

.godof-game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.godof-game-title {
    font-weight: 600;
    font-size: 14px;
}

.godof-play-btn {
    background: var(--godof-primary);
    padding: 6px 12px;
    border-radius: var(--godof-radius-sm);
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}

.btn-view-all-games {
    background: var(--godof-bg-card);
    border: 2px solid var(--godof-primary);
    color: var(--godof-primary);
    padding: 14px 28px;
    border-radius: var(--godof-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--godof-transition);
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.btn-view-all-games:hover {
    background: var(--godof-primary);
    color: white;
}

.godof-content-section {
    margin: 60px 0;
    padding: 40px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.godof-content-section:last-of-type {
    border-bottom: none;
}

.godof-content-section h2 {
    font-family: var(--godof-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--godof-text-primary);
}

.godof-content-section h3 {
    font-family: var(--godof-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--godof-primary);
}

.godof-content-section p {
    margin-bottom: 20px;
    color: var(--godof-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.godof-content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--godof-bg-card);
    border-radius: var(--godof-radius);
    overflow: hidden;
}

.godof-content-section th,
.godof-content-section td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-content-section th {
    background: rgba(34, 197, 94, 0.1);
    color: var(--godof-primary);
    font-weight: 600;
}

.godof-content-section td {
    color: var(--godof-text-secondary);
}

.godof-content-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.godof-content-section li {
    margin-bottom: 8px;
    color: var(--godof-text-secondary);
}

.godof-promo-code-highlight {
    margin: 30px 0;
}

.godof-promo-code-badge {
    background: linear-gradient(135deg, var(--godof-primary), var(--godof-accent));
    padding: 20px;
    border-radius: var(--godof-radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.godof-promo-icon {
    font-size: 24px;
}

.godof-promo-code-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.godof-promo-label {
    font-size: 14px;
    opacity: 0.9;
}

.godof-promo-code {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 2px;
}

.godof-copy-code-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: var(--godof-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--godof-transition);
}

.godof-copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.godof-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.godof-timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.godof-timeline-number {
    width: 40px;
    height: 40px;
    background: var(--godof-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.godof-timeline-content {
    flex: 1;
}

.godof-timeline-title {
    font-weight: 600;
    color: var(--godof-text-primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.godof-timeline-text {
    color: var(--godof-text-secondary);
    line-height: 1.6;
}

.godof-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.godof-stat-card {
    background: var(--godof-bg-card);
    padding: 30px;
    border-radius: var(--godof-radius);
    text-align: center;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.godof-stat-card:hover {
    transform: translateY(-4px);
    border-left: 3px solid var(--godof-primary);
}

.godof-stat-icon {
    color: var(--godof-primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.godof-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--godof-text-primary);
    margin-bottom: 10px;
}

.godof-stat-label {
    color: var(--godof-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.godof-info-box {
    background: var(--godof-bg-card);
    padding: 20px;
    border-radius: var(--godof-radius);
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-left: 4px solid;
}

.godof-info-warning {
    border-left-color: var(--godof-warning);
}

.godof-info-success {
    border-left-color: var(--godof-success);
}

.godof-info-icon {
    color: inherit;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.godof-info-warning .godof-info-icon {
    color: var(--godof-warning);
}

.godof-info-success .godof-info-icon {
    color: var(--godof-success);
}

.godof-info-content {
    color: var(--godof-text-secondary);
    line-height: 1.6;
}

.godof-quick-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--godof-bg-card);
    border-radius: var(--godof-radius);
    overflow: hidden;
}

.godof-quick-table th,
.godof-quick-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-quick-table th {
    background: rgba(34, 197, 94, 0.1);
    color: var(--godof-primary);
    font-weight: 600;
    width: 30%;
}

.godof-quick-table td {
    color: var(--godof-text-secondary);
}

.godof-cashback-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: var(--godof-radius-lg);
    padding: 40px;
    margin: 40px 0;
}

.godof-cashback-card {
    max-width: 800px;
    margin: 0 auto;
}

.godof-cashback-highlight {
    text-align: center;
    margin-bottom: 30px;
}

.godof-cashback-icon {
    font-size: 3rem;
    color: var(--godof-primary);
    margin-bottom: 20px;
}

.godof-cashback-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--godof-primary);
    margin-bottom: 10px;
}

.godof-cashback-label {
    font-size: 1.25rem;
    color: var(--godof-text-secondary);
    font-weight: 600;
}

.godof-cashback-body {
    color: var(--godof-text-secondary);
    line-height: 1.7;
}

.godof-cashback-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.godof-cashback-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--godof-radius);
}

.godof-cashback-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--godof-primary);
    margin-bottom: 5px;
}

.godof-cashback-stat-label {
    font-size: 14px;
    color: var(--godof-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.godof-provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.godof-provider-tag {
    background: var(--godof-bg-card);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--godof-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--godof-transition);
}

.godof-provider-tag:hover {
    border-color: var(--godof-primary);
    color: var(--godof-primary);
}

.godof-security-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(168, 85, 247, 0.05));
    padding: 40px;
    border-radius: var(--godof-radius-lg);
    margin: 40px 0;
}

.godof-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.godof-security-badge {
    background: var(--godof-bg-card);
    padding: 25px;
    border-radius: var(--godof-radius);
    text-align: center;
    border-top: 3px solid var(--godof-primary);
}

.godof-security-icon {
    font-size: 2rem;
    color: var(--godof-primary);
    margin-bottom: 15px;
}

.godof-security-badge-title {
    font-weight: 600;
    color: var(--godof-text-primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.godof-security-badge-text {
    color: var(--godof-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.godof-wheel-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(168, 85, 247, 0.05));
    padding: 40px;
    border-radius: var(--godof-radius-lg);
    margin: 40px 0;
}

.godof-wheel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.godof-wheel-card {
    background: var(--godof-bg-card);
    border-radius: var(--godof-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-wheel-header {
    background: rgba(34, 197, 94, 0.1);
    padding: 20px;
    text-align: center;
}

.godof-wheel-icon {
    font-size: 2rem;
    color: var(--godof-primary);
    margin-bottom: 10px;
}

.godof-wheel-name {
    font-weight: 600;
    color: var(--godof-text-primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.godof-wheel-cost {
    color: var(--godof-text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.godof-wheel-table {
    width: 100%;
    border-collapse: collapse;
}

.godof-wheel-table th,
.godof-wheel-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-wheel-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--godof-primary);
    font-weight: 600;
}

.godof-wheel-table td {
    color: var(--godof-text-secondary);
}

.godof-shop-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(168, 85, 247, 0.05));
    padding: 40px;
    border-radius: var(--godof-radius-lg);
    margin: 40px 0;
}

.godof-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.godof-shop-card {
    background: var(--godof-bg-card);
    border-radius: var(--godof-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-shop-card-header {
    background: rgba(34, 197, 94, 0.1);
    padding: 20px;
    text-align: center;
}

.godof-shop-icon {
    font-size: 2rem;
    color: var(--godof-primary);
    margin-bottom: 10px;
}

.godof-shop-category {
    font-weight: 600;
    color: var(--godof-text-primary);
    margin-bottom: 5px;
    font-size: 18px;
}

.godof-shop-count {
    color: var(--godof-text-secondary);
    font-size: 14px;
}

.godof-shop-table {
    width: 100%;
    border-collapse: collapse;
}

.godof-shop-table th,
.godof-shop-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-shop-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--godof-primary);
    font-weight: 600;
}

.godof-shop-table td {
    color: var(--godof-text-secondary);
}

.godof-lang-section {
    background: rgba(15, 23, 42, 0.5);
    padding: 40px;
    border-radius: var(--godof-radius-lg);
    margin: 40px 0;
}

.godof-lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.godof-lang-tag {
    background: var(--godof-bg-card);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--godof-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--godof-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.godof-lang-tag:hover {
    border-color: var(--godof-primary);
    color: var(--godof-primary);
}

.godof-restricted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.godof-restricted-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 15px;
    border-radius: var(--godof-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--godof-danger);
    font-size: 14px;
}

.godof-site-screenshot-wrap {
    display: block;
    margin: 40px 0;
    border-radius: var(--godof-radius-lg);
    overflow: hidden;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.godof-site-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.godof-faq-section {
    background: rgba(15, 23, 42, 0.3);
    padding: 40px;
    border-radius: var(--godof-radius-lg);
    margin: 40px 0;
}

.godof-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.godof-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.godof-faq-question {
    padding: 20px 0;
    font-weight: 600;
    color: var(--godof-text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--godof-transition);
}

.godof-faq-question::after {
    content: '\002B';
    font-size: 20px;
    color: var(--godof-primary);
    transition: transform 0.3s ease;
}

.godof-faq-question:hover {
    color: var(--godof-primary);
}

.godof-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.godof-faq-answer div {
    padding-bottom: 20px;
    color: var(--godof-text-secondary);
    line-height: 1.6;
}

.godof-faq-item.open .godof-faq-question::after {
    transform: rotate(45deg);
}

.godof-faq-item.open .godof-faq-answer {
    max-height: 200px;
}

.godof-footer {
    grid-area: footer;
    background: var(--godof-bg-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    margin-top: 80px;
}

.godof-footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.godof-footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col strong {
    color: var(--godof-text-primary);
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li div {
    color: var(--godof-text-secondary);
    transition: var(--godof-transition);
    cursor: pointer;
    font-size: 14px;
}

.footer-col ul li a:hover,
.footer-col ul li div:hover {
    color: var(--godof-primary);
}

.godof-footer-disclaimer {
    text-align: center;
    color: var(--godof-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 30px auto;
}

.godof-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--godof-text-muted);
    font-size: 14px;
}

.godof-footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.godof-age-badge,
.godof-ssl-badge {
    background: var(--godof-bg-card);
    padding: 8px 12px;
    border-radius: var(--godof-radius-sm);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-age-badge {
    background: var(--godof-warning);
    color: white;
    border: none;
}

.godof-ssl-badge {
    color: var(--godof-success);
    border-color: var(--godof-success);
}

div[data-link] {
    cursor: pointer;
}

.godof-section-title {
    font-family: var(--godof-font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--godof-text-primary);
    text-align: center;
}

.godof-breadcrumb {
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.godof-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.godof-breadcrumb-item {
    display: flex;
    align-items: center;
}

.godof-breadcrumb-item a {
    color: var(--godof-text-secondary);
    transition: var(--godof-transition);
}

.godof-breadcrumb-item a:hover {
    color: var(--godof-primary);
}

.godof-breadcrumb-item + .godof-breadcrumb-item::before {
    content: '›';
    color: var(--godof-text-muted);
    margin: 0 8px;
}

.godof-breadcrumb-current {
    color: var(--godof-text-primary);
    font-weight: 500;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes fd-fade-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fd-fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fd-scale-in {
        from {
            opacity: 0;
            transform: scale(0.96);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes neon-pulse {
        0%, 100% {
            box-shadow: 0 0 20px var(--godof-primary), 0 0 40px var(--godof-primary);
        }
        50% {
            box-shadow: 0 0 30px var(--godof-primary), 0 0 60px var(--godof-primary);
        }
    }

    .godof-page-title {
        animation: fd-fade-up 0.5s ease-out both;
    }

    .godof-intro {
        animation: fd-fade-up 0.5s ease-out 0.15s both;
    }

    .godof-hero {
        animation: fd-fade-in 0.5s ease-out 0.25s both;
    }

    .godof-games-section {
        animation: fd-fade-up 0.5s ease-out 0.35s both;
    }

    .godof-game-card:nth-child(1) {
        animation: fd-scale-in 0.4s ease-out 0s both;
    }

    .godof-game-card:nth-child(2) {
        animation: fd-scale-in 0.4s ease-out 0.05s both;
    }

    .godof-game-card:nth-child(3) {
        animation: fd-scale-in 0.4s ease-out 0.1s both;
    }

    .godof-game-card:nth-child(4) {
        animation: fd-scale-in 0.4s ease-out 0.15s both;
    }

    .godof-game-card:nth-child(5) {
        animation: fd-scale-in 0.4s ease-out 0.2s both;
    }

    .godof-game-card:nth-child(6) {
        animation: fd-scale-in 0.4s ease-out 0.25s both;
    }

    .godof-game-card:nth-child(7) {
        animation: fd-scale-in 0.4s ease-out 0.3s both;
    }

    .godof-game-card:nth-child(8) {
        animation: fd-scale-in 0.4s ease-out 0.35s both;
    }

    .godof-promo-code-badge {
        animation: neon-pulse 2s ease-in-out infinite;
    }

    .godof-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .godof-reveal.godof-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

#godof-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--godof-gradient-primary);
    z-index: 1000;
    transition: width 0.3s ease;
}

#godof-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--godof-gradient-primary);
    padding: 15px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 150;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.godof-sticky-bonus-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.godof-sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.godof-sticky-bar-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: var(--godof-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--godof-transition);
    font-size: 14px;
}

.godof-sticky-bar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.godof-sticky-bar-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--godof-transition);
}

.godof-sticky-bar-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

#godof-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--godof-success);
    color: white;
    padding: 15px 25px;
    border-radius: var(--godof-radius);
    font-weight: 600;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

#godof-toast.godof-toast-show {
    transform: translateX(0);
}

.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--godof-radius);
}

@media (max-width: 1320px) {
    .godof-container {
        padding: 0 15px;
    }

    .godof-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .godof-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 1040px) {
    .godof-hero-gradient-banner {
        padding: 40px 30px;
    }

    .godof-banner-title {
        font-size: 2rem;
    }

    .godof-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .godof-wheel-grid,
    .godof-shop-grid {
        grid-template-columns: 1fr;
    }

    .godof-security-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 790px) {
    .btn-login {
        display: none;
    }

    .btn-search {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "main"
            "footer";
    }

    .sidebar {
        transform: translateX(-100%);
        visibility: hidden;
    }

    .godof-header {
        padding: 0 15px;
    }

    .godof-article {
        padding: 20px 0;
    }

    .godof-page-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .godof-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .godof-hero {
        margin: 40px 0;
    }

    .godof-hero-gradient-banner {
        padding: 30px 20px;
    }

    .godof-banner-title {
        font-size: 1.75rem;
    }

    .godof-banner-text {
        font-size: 16px;
    }

    .godof-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .godof-content-section {
        margin: 40px 0;
        padding: 20px 0;
    }

    .godof-content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .godof-content-section h3 {
        font-size: 1.25rem;
        margin: 30px 0 15px;
    }

    .godof-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .godof-stat-card {
        padding: 20px;
    }

    .godof-timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .godof-promo-code-badge {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .godof-cashback-section,
    .godof-wheel-section,
    .godof-shop-section,
    .godof-security-section,
    .godof-lang-section,
    .godof-faq-section {
        padding: 25px;
        margin: 30px 0;
    }

    .godof-cashback-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .godof-security-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .godof-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .godof-footer-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #godof-sticky-bar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }

    .godof-sticky-bar-actions {
        width: 100%;
        justify-content: center;
    }
}
/* ── HERO BANNER SIZING (post-patch) ─────────────── */
.godof-hero-gradient-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* ── BREADCRUMB LIST MARKERS (post-patch) ────────── */
ol.godof-breadcrumb-list { list-style-type: none !important; padding-left: 0 !important; margin: 0 !important; }

/* ── OVERFLOW FIX (post-patch) ───────────────────── */
html { overflow-x: clip !important; }
body { display: block !important; overflow-x: clip !important; width: 100%; }
/* H1 size cap — 20% smaller than default */
[class*="-page-title"], main h1:first-child { font-size: clamp(1.45rem, 3.2vw, 2.1rem) !important; }
/* Kill any grid-area LLM put on structural elements */
.godof-header, main, .godof-footer, footer { grid-area: unset !important; }
/* Header: always flex, single row */
.godof-header { display: flex !important; align-items: center !important; justify-content: space-between !important; height: 80px !important; padding: 0 20px !important; }
/* Toast: hidden by default via opacity (translateX alone not enough) */
#godof-toast { opacity: 0 !important; }
.godof-toast-show { opacity: 1 !important; transform: translateX(0) !important; }

/* ── MOBILE GRID FIX (post-patch) ────────────────── */
@media (max-width: 790px) {
    [class*="-games-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-stats-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-provider-grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="-footer-cols"] { grid-template-columns: 1fr 1fr !important; }
    [class*="-container"] { max-width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
    main, [class*="-article"] { margin: 0 !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    main > div:first-child,
    main > [class*="-container"]:first-child { padding-top: 20px !important; }
    main { overflow: visible !important; }
    body { overflow-x: clip !important; }
}

/* ── GAMES GRID MOBILE FIX (post-patch) ─────────── */
@media (max-width: 790px) {
    .godof-games-grid, [class*="-games-grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .godof-game-card, [class*="-game-card"] {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .godof-games-section .godof-container,
    [class*="-games-section"] [class*="-container"] {
        padding: 0 10px !important;
        overflow: hidden !important;
    }
}

/* ── LAYOUT (post-patch, canonical flow-based) ───── */
body { display: block; min-height: 100vh; }
.godof-header { position: sticky; top: 0; z-index: 1000; width: 100%; }
.sidebar { display: none !important; }
main { margin-left: 0; min-width: 0; max-width: 100%; }
.godof-footer { margin-left: 0; }
@media (max-width: 1040px) {
    .sidebar { width: 0px !important; }
    main { margin-left: 0px !important; }
    .godof-footer { margin-left: 0px !important; }
}
@media (max-width: 790px) {
    .sidebar { display: none !important; }
    main { margin-left: 0 !important; overflow: visible !important; width: 100% !important; max-width: 100% !important; }
    .godof-footer { margin-left: 0 !important; }
    [class*="-container"] { max-width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
    [class*="-games-grid"] { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    [class*="-stats-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-provider-grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="-footer-cols"] { grid-template-columns: 1fr 1fr !important; }
}


/* ── Language Switcher (footer) ────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
}
.lang-switcher .lang-sep {
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}
.lang-btn {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.lang-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.lang-btn--active {
    color: #fff;
    background: rgba(255,255,255,0.14);
    cursor: default;
    pointer-events: none;
}
@media (max-width: 600px) {
    .lang-switcher {
        margin-top: 12px;
        padding-top: 12px;
    }
}



/* ── Reviews page (/bewertungen/) ────────────────────────────────── */
.godof-hero {
  background: var(--godof-bg-dark);
  color: var(--godof-text-primary);
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
}
.godof-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 .6rem; font-weight: 700; }
.godof-hero p  { opacity: .82; max-width: 620px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

.godof-breadcrumb {
  font-size: .85rem;
  padding: .7rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin: 0 auto 1.5rem;
  max-width: 860px;
}
.godof-breadcrumb a { color: var(--godof-text-primary); opacity: .75; text-decoration: none; }
.godof-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.godof-bc-sep { margin: 0 .4rem; opacity: .5; }

.godof-wrap { padding: 0 1.5rem 4rem; max-width: 860px; margin: 0 auto; }
.godof-h2 {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  margin: 2.5rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--godof-accent);
  font-weight: 700;
}
.godof-p { line-height: 1.82; margin: 0 0 1rem; opacity: .92; }

.godof-screenshot-wrap {
  margin: .75rem 0 1.5rem;
  border-radius: var(--godof-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.18);
  line-height: 0;
}
.godof-screenshot-wrap.godof-banner { margin-top: .25rem; box-shadow: 0 2px 14px rgba(0,0,0,.13); max-height: 400px; overflow: hidden; }
.godof-screenshot-wrap.godof-banner img { width: 100%; height: 140px; object-fit: cover; object-position: top; display: block; }
.godof-screenshot, .godof-screenshot-wrap img { width: 100%; height: auto; display: block; }

.godof-mentions {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--godof-bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--godof-radius-lg);
}
.godof-mentions-title { font-size: clamp(1rem,2vw,1.2rem); font-weight: 600; margin: 0 0 .75rem; border: none; padding: 0; }
.godof-mentions-rating { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem; }
.godof-rating-score { font-size: 1.6rem; font-weight: 700; color: var(--godof-accent); }
.godof-rating-label { font-size: .85rem; opacity: .65; }
.godof-mentions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.godof-mentions-col-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: .5rem; padding: .2rem .6rem; border-radius: 4px; display: inline-block;
}
.godof-mentions-col-pos { background: rgba(30,180,100,.15); color: #1eb464; }
.godof-mentions-col-neg { background: rgba(220,60,60,.15);  color: #e05555; }
.godof-mentions-list    { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.godof-mention-pos, .godof-mention-neg { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.godof-mention-icon  { font-size: .8rem; width: 1.1rem; text-align: center; flex-shrink: 0; }
.godof-mention-pos .godof-mention-icon { color: #1eb464; }
.godof-mention-neg .godof-mention-icon { color: #e05555; }

/* Review cards */
.godof-card li { padding-left: 0; }
.godof-card li::before { display: none; }
.godof-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--godof-radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--godof-bg-card);
  transition: border-color .2s, box-shadow .2s;
}
.godof-card:hover { border-color: rgba(255,255,255,.18); }
.godof-card.godof-card-positive { border-left: 3px solid #1eb464; }
.godof-card.godof-card-negative { border-left: 3px solid #e05555; }
.godof-card.godof-card-mixed    { border-left: 3px solid var(--godof-accent); }
.godof-card.godof-card-neutral  { border-left: 3px solid rgba(255,255,255,.2); }

.godof-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.godof-card-author-row { display: flex; align-items: center; gap: .75rem; }
.godof-card-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.av-green { background: rgba(30,180,100,.2);  color: #1eb464; }
.av-red   { background: rgba(220,60,60,.2);   color: #e05555; }
.av-amber { background: rgba(228,168,0,.2);   color: var(--godof-accent); }
.av-blue  { background: rgba(60,130,220,.2);  color: #5b9cf6; }
.godof-card-author-name { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.godof-card-meta { display: flex; flex-wrap: wrap; gap: .4rem .75rem; font-size: .78rem; opacity: .7; }
.godof-card-platform { display: inline-flex; align-items: center; gap: .25rem; padding: .15rem .5rem; border-radius: 3px; font-size: .72rem; font-weight: 600; }
.platform-tp    { background: rgba(0,182,122,.15); color: #00b67a; }
.platform-ag    { background: rgba(255,165,0,.15);  color: #ffa500; }
.platform-cg    { background: rgba(91,156,246,.15); color: #5b9cf6; }
.platform-other { background: rgba(255,255,255,.08); color: inherit; opacity: .8; }
.godof-card-stars { display: flex; gap: 2px; flex-shrink: 0; margin-top: 2px; }
.godof-card-stars .fa-star { font-size: .85rem; }
.godof-card-stars .s-full  { color: #ffc107; }
.godof-card-stars .s-empty { color: rgba(255,255,255,.2); }
.godof-card-body { font-size: .92rem; line-height: 1.75; margin: 0 0 .85rem; opacity: .9; }
.godof-card-quote {
  border-left: 3px solid var(--godof-accent);
  margin: .75rem 0;
  padding: .6rem .75rem .6rem 1rem;
  font-style: italic;
  font-size: .9rem;
  opacity: .85;
  line-height: 1.65;
  background: rgba(255,255,255,.03);
  border-radius: 0 var(--godof-radius-lg) var(--godof-radius-lg) 0;
}
.godof-card-lang-note { font-size: .75rem; opacity: .6; font-style: normal; }
.godof-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .75rem 0; }
.rtag { display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; font-weight: 600; padding: .2rem .6rem; border-radius: 4px; }
.rtag i { font-size: .65rem; }
.rtag-pos { background: rgba(30,180,100,.15);  color: #1eb464; }
.rtag-neg { background: rgba(220,60,60,.15);   color: #e05555; }
.rtag-neu { background: rgba(255,255,255,.08); opacity: .75; }
.godof-card-screenshot { margin-top: 1rem; border-radius: calc(var(--godof-radius-lg) - 4px); overflow: hidden; line-height: 0; box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.godof-card-screenshot img { width: 100%; height: auto; display: block; }

.godof-plat-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem auto 1.5rem; max-width: 860px; padding: 0 1.5rem; }
.godof-plat-nav-item {
  font-size: .82rem; font-weight: 600; padding: .3rem .85rem;
  border-radius: 20px; border: 1px solid rgba(255,255,255,.15);
  color: var(--godof-text-primary); text-decoration: none; opacity: .75;
  transition: opacity .15s, border-color .15s;
}
.godof-plat-nav-item:hover { opacity: 1; border-color: var(--godof-accent); color: var(--godof-accent); }

.godof-platform-rating { display: flex; align-items: center; gap: .6rem; margin: .5rem 0 1.25rem; font-size: .88rem; }
.godof-platform-stars { display: flex; gap: 2px; }
.godof-platform-stars .fa-star { font-size: .85rem; }
.godof-platform-stars .s-full  { color: #ffc107; }
.godof-platform-stars .s-empty { color: rgba(255,255,255,.2); }
.godof-platform-score { opacity: .7; font-size: .82rem; }
.godof-platform-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2.5rem 0 2rem; }

.godof-faq { margin: 2.5rem 0 1rem; }
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--godof-radius-lg);
  margin-bottom: .75rem;
  background: var(--godof-bg-card);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--godof-accent); }
.faq-question {
  font-size: 1rem; font-weight: 600; line-height: 1.45;
  padding: 1rem 1.25rem; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--godof-accent); user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; font-size: 1.2rem; font-weight: 400; opacity: .7; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { font-size: .9rem; line-height: 1.75; margin: 0; padding: .75rem 1.25rem 1rem; opacity: .85; border-top: 1px solid rgba(255,255,255,.06); }

@media (max-width: 640px) {
  .godof-hero  { padding: 0.75rem 1rem 1rem; }
  .godof-h2    { font-size: 1.2rem; }
  .godof-screenshot-wrap { border-radius: 7px; }
  .godof-mentions-grid { grid-template-columns: 1fr; }
  .godof-card { padding: .9rem 1rem; }
  .godof-card-header { flex-direction: column; gap: .5rem; }
}


/* ── HERO BANNER VIDEO (post-patch) ──────────────── */
.godof-hero-gradient-banner--video {
    background: #0f0f0f;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.godof-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.godof-hero-gradient-banner--video::before { z-index: 1; }
.godof-hero-gradient-banner--video .godof-banner-content { position: relative; z-index: 2; }
@media (max-width: 790px) {
    .godof-hero-gradient-banner--video {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    
    .godof-hero-video {
        object-fit: cover;
    }
    
    .godof-hero-gradient-banner--video .godof-banner-label {
        display: none;
    }
    
    .godof-hero-gradient-banner--video .godof-banner-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .godof-hero-gradient-banner--video .godof-banner-text {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .godof-hero-gradient-banner--video .godof-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* ── HERO VIDEO CONTRAST OVERLAY ─────────────── */
.godof-hero-gradient-banner--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.godof-hero-gradient-banner--video .godof-banner-content {
    position: relative;
    z-index: 2;
}