:root {
    --thefunnysocialgame-bg-darkest: #070913;
    --thefunnysocialgame-bg-main: #0c0f20;
    --thefunnysocialgame-bg-surface: #141833;
    --thefunnysocialgame-bg-surface-elevated: #1b2146;
    --thefunnysocialgame-bg-surface-hover: #262e60;

    --thefunnysocialgame-brand-orange: #ff5e14;
    --thefunnysocialgame-brand-orange-gradient: linear-gradient(135deg, #ff6b1a 0%, #ff3b00 100%);
    --thefunnysocialgame-brand-green: #22c55e;
    --thefunnysocialgame-brand-purple: #9333ea;
    --thefunnysocialgame-brand-cyan: #00f0ff;

    --thefunnysocialgame-border-subtle: rgba(255, 255, 255, 0.08);
    --thefunnysocialgame-border-card: rgba(255, 255, 255, 0.15);
    --thefunnysocialgame-border-orange: #ff5e14;

    --thefunnysocialgame-text-pure: #ffffff;
    --thefunnysocialgame-text-primary: #f8fafc;
    --thefunnysocialgame-text-secondary: #94a3b8;
    --thefunnysocialgame-text-muted: #64748b;
    --thefunnysocialgame-text-dark: #070913;

    --thefunnysocialgame-font-heading: 'Space Grotesk', 'Outfit', -apple-system, sans-serif;
    --thefunnysocialgame-font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    --thefunnysocialgame-max-width: 1320px;
    --thefunnysocialgame-radius-sm: 8px;
    --thefunnysocialgame-radius-md: 14px;
    --thefunnysocialgame-radius-lg: 20px;
    --thefunnysocialgame-radius-xl: 28px;
    --thefunnysocialgame-radius-pill: 9999px;

    --thefunnysocialgame-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --thefunnysocialgame-shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
    --thefunnysocialgame-shadow-orange: 0 10px 30px rgba(255, 94, 20, 0.4);
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    background-color: var(--thefunnysocialgame-bg-darkest);
}

body {
    background-color: var(--thefunnysocialgame-bg-darkest);
    color: var(--thefunnysocialgame-text-primary);
    font-family: var(--thefunnysocialgame-font-body);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--thefunnysocialgame-font-heading);
    font-weight: 800;
    color: var(--thefunnysocialgame-text-pure);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--thefunnysocialgame-transition);
}

img, svg {
    max-width: 100%;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thefunnysocialgame-container {
    width: 100%;
    max-width: var(--thefunnysocialgame-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.thefunnysocialgame-text-neon-green {
    color: var(--thefunnysocialgame-brand-green);
    text-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.thefunnysocialgame-text-orange {
    color: var(--thefunnysocialgame-brand-orange);
    text-shadow: 0 0 25px rgba(255, 94, 20, 0.5);
}

.thefunnysocialgame-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none;
    z-index: 10;
}

.thefunnysocialgame-marquee-top-bar {
    background: #060810;
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
    padding: 0.65rem 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--thefunnysocialgame-text-primary);
}

.thefunnysocialgame-marquee-mid-bar {
    background: linear-gradient(90deg, #0d1124 0%, #171d3d 50%, #0d1124 100%);
    border-top: 1px solid rgba(255, 94, 20, 0.3);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    padding: 0.95rem 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--thefunnysocialgame-brand-cyan);
    margin: 3rem 0;
}

.thefunnysocialgame-marquee-compliance-bar {
    background: #05060c;
    border-top: 1px solid rgba(255, 94, 20, 0.3);
    border-bottom: 1px solid rgba(255, 94, 20, 0.2);
    padding: 0.85rem 0;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffd000;
    letter-spacing: 0.05em;
}

.thefunnysocialgame-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: thefunnysocialgame-scroll 35s linear infinite;
}

.thefunnysocialgame-marquee-track:hover {
    animation-play-state: paused;
}

.thefunnysocialgame-marquee-reverse {
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes thefunnysocialgame-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.thefunnysocialgame-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.thefunnysocialgame-icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.thefunnysocialgame-icon-orange {
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-icon-green {
    color: var(--thefunnysocialgame-brand-green);
}

.thefunnysocialgame-icon-cyan {
    color: var(--thefunnysocialgame-brand-cyan);
}

.thefunnysocialgame-site-header {
    background: rgba(7, 9, 19, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 84px;
}

.thefunnysocialgame-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.thefunnysocialgame-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.thefunnysocialgame-logo img {
    width: 44px;
    height: 44px;
    border-radius: var(--thefunnysocialgame-radius-sm);
    box-shadow: 0 0 15px rgba(255, 94, 20, 0.4);
}

.thefunnysocialgame-logo-highlight {
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-logo-badge-au {
    background: var(--thefunnysocialgame-brand-orange);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.2rem;
}

.thefunnysocialgame-main-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.thefunnysocialgame-main-nav a {
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--thefunnysocialgame-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.thefunnysocialgame-main-nav a:hover,
.thefunnysocialgame-main-nav a.active {
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--thefunnysocialgame-brand-orange);
    border-radius: var(--thefunnysocialgame-radius-pill);
    box-shadow: var(--thefunnysocialgame-shadow-orange);
}

.thefunnysocialgame-btn-header-cta {
    background: var(--thefunnysocialgame-brand-orange-gradient);
    color: #ffffff;
    font-family: var(--thefunnysocialgame-font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.75rem 1.65rem;
    border-radius: var(--thefunnysocialgame-radius-sm);
    box-shadow: var(--thefunnysocialgame-shadow-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.thefunnysocialgame-btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 94, 20, 0.6);
}

.thefunnysocialgame-mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-sm);
    color: var(--thefunnysocialgame-text-pure);
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.thefunnysocialgame-mobile-nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(12, 15, 32, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--thefunnysocialgame-brand-orange);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 99;
}

.thefunnysocialgame-mobile-nav a {
    color: var(--thefunnysocialgame-text-primary);
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
}

.thefunnysocialgame-mobile-nav a.active {
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-hero-screenshot-style {
    position: relative;
    min-height: 720px;
    background: 
        linear-gradient(90deg, rgba(7, 9, 19, 0.95) 0%, rgba(7, 9, 19, 0.8) 45%, rgba(7, 9, 19, 0.25) 100%),
        url('../img/hero-wizard-bg.webp') right center/cover no-repeat;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
    overflow: hidden;
}

.thefunnysocialgame-hero-layout-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .thefunnysocialgame-hero-layout-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.thefunnysocialgame-hero-main-title {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2.25rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.thefunnysocialgame-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.thefunnysocialgame-btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #070913;
    font-family: var(--thefunnysocialgame-font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1.05rem 2.5rem;
    border-radius: var(--thefunnysocialgame-radius-sm);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-btn-get-started:hover {
    background: var(--thefunnysocialgame-brand-orange);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--thefunnysocialgame-shadow-orange);
}

.thefunnysocialgame-btn-play-video {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #ffffff;
    font-family: var(--thefunnysocialgame-font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-play-circle-green {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--thefunnysocialgame-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070913;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-btn-play-video:hover .thefunnysocialgame-play-circle-green {
    transform: scale(1.12);
    box-shadow: 0 0 35px rgba(34, 197, 94, 0.9);
}

.thefunnysocialgame-hero-testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(12, 15, 32, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-lg);
    padding: 1rem 1.5rem;
    max-width: 480px;
    box-shadow: var(--thefunnysocialgame-shadow-card);
}

.thefunnysocialgame-avatar-img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--thefunnysocialgame-brand-orange);
    flex-shrink: 0;
}

.thefunnysocialgame-testimonial-quote {
    font-size: 0.95rem;
    color: var(--thefunnysocialgame-text-primary);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.thefunnysocialgame-testimonial-author {
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--thefunnysocialgame-brand-green);
}

.thefunnysocialgame-fan-cards-section {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background: radial-gradient(circle at 50% 30%, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
    overflow: hidden;
}

.thefunnysocialgame-ghost-watermark-top {
    text-align: center;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.08em;
    user-select: none;
    margin-bottom: -3.5rem;
}

.thefunnysocialgame-ghost-watermark-bottom {
    text-align: center;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.08em;
    user-select: none;
    margin-top: -3.5rem;
}

.thefunnysocialgame-fan-cards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.thefunnysocialgame-fan-card-item {
    width: 250px;
    border-radius: var(--thefunnysocialgame-radius-lg);
    overflow: hidden;
    padding: 1rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
    transition: var(--thefunnysocialgame-transition);
    cursor: pointer;
}

.thefunnysocialgame-fan-card-item:hover {
    transform: translateY(-12px) scale(1.06) rotate(0deg) !important;
    z-index: 10;
}

.thefunnysocialgame-fan-card-item:nth-child(1) {
    background: #101426;
    border: 3px solid #2b3566;
    transform: rotate(-10deg) translateY(15px);
}

.thefunnysocialgame-fan-card-item:nth-child(2) {
    background: #5b68df;
    border: 3px solid #7c88ff;
    transform: rotate(-3deg);
}

.thefunnysocialgame-fan-card-item:nth-child(3) {
    background: #171d3d;
    border: 3px solid #38458f;
    transform: rotate(4deg) translateY(20px);
}

.thefunnysocialgame-fan-card-item:nth-child(4) {
    background: #ff5e14;
    border: 3px solid #ff884d;
    transform: rotate(12deg) translateY(10px);
}

.thefunnysocialgame-fan-card-title {
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.85rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.thefunnysocialgame-fan-card-img-wrap {
    border-radius: var(--thefunnysocialgame-radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #000000;
}

.thefunnysocialgame-fan-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thefunnysocialgame-welcome-destination-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0 2rem;
}

@media (min-width: 992px) {
    .thefunnysocialgame-welcome-destination-split {
        flex-direction: row;
        align-items: center;
        gap: 3.5rem;
    }
    .thefunnysocialgame-welcome-destination-split > div:first-child {
        flex: 1.1;
    }
    .thefunnysocialgame-welcome-destination-split > div:last-child {
        flex: 0.9;
    }
}

.thefunnysocialgame-welcome-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
}

.thefunnysocialgame-welcome-text {
    font-size: 1.1rem;
    color: var(--thefunnysocialgame-text-secondary);
    line-height: 1.8;
}

.thefunnysocialgame-bento-games-section {
    padding: 5rem 0;
    background: var(--thefunnysocialgame-bg-main);
    border-top: 1px solid var(--thefunnysocialgame-border-subtle);
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
}

.thefunnysocialgame-bento-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .thefunnysocialgame-bento-showcase-grid {
        flex-direction: row;
        align-items: stretch;
    }
    .thefunnysocialgame-bento-col-stacked {
        flex: 1;
    }
    .thefunnysocialgame-bento-card.tall {
        flex: 1.2;
    }
}

.thefunnysocialgame-bento-col-stacked {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thefunnysocialgame-bento-card {
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--thefunnysocialgame-shadow-card);
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-bento-card:hover {
    border-color: var(--thefunnysocialgame-brand-orange);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 94, 20, 0.3);
}

.thefunnysocialgame-bento-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    background: #000;
}

.thefunnysocialgame-bento-card.tall .thefunnysocialgame-bento-card-media {
    min-height: 480px;
}

.thefunnysocialgame-bento-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-bento-card:hover .thefunnysocialgame-bento-card-media img {
    transform: scale(1.08);
}

.thefunnysocialgame-bento-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(7, 9, 19, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.thefunnysocialgame-bento-card-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.thefunnysocialgame-bento-card-tag {
    font-size: 0.85rem;
    color: var(--thefunnysocialgame-brand-cyan);
    font-weight: 700;
}

.thefunnysocialgame-section {
    padding: 5rem 0;
}

.thefunnysocialgame-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.thefunnysocialgame-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 94, 20, 0.12);
    color: var(--thefunnysocialgame-brand-orange);
    border: 1px solid rgba(255, 94, 20, 0.35);
    padding: 0.35rem 1rem;
    border-radius: var(--thefunnysocialgame-radius-pill);
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.thefunnysocialgame-section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.thefunnysocialgame-section-subtitle {
    font-size: 1.1rem;
    color: var(--thefunnysocialgame-text-secondary);
    line-height: 1.7;
}

.thefunnysocialgame-controls-bar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    align-items: center;
}

.thefunnysocialgame-search-wrap {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.thefunnysocialgame-search-wrap input {
    width: 100%;
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-pill);
    padding: 0.95rem 1.5rem 0.95rem 3.2rem;
    color: var(--thefunnysocialgame-text-pure);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-search-wrap input:focus {
    outline: none;
    border-color: var(--thefunnysocialgame-brand-orange);
    background: var(--thefunnysocialgame-bg-surface-elevated);
    box-shadow: 0 0 20px rgba(255, 94, 20, 0.35);
}

.thefunnysocialgame-search-wrap svg {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    color: var(--thefunnysocialgame-brand-orange);
    pointer-events: none;
}

.thefunnysocialgame-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.thefunnysocialgame-filter-pill {
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-subtle);
    color: var(--thefunnysocialgame-text-secondary);
    padding: 0.65rem 1.5rem;
    border-radius: var(--thefunnysocialgame-radius-pill);
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-filter-pill:hover {
    border-color: var(--thefunnysocialgame-brand-orange);
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-filter-pill.active {
    background: var(--thefunnysocialgame-brand-orange-gradient);
    color: #ffffff;
    border-color: var(--thefunnysocialgame-brand-orange);
    box-shadow: var(--thefunnysocialgame-shadow-orange);
}

.thefunnysocialgame-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

.thefunnysocialgame-game-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    box-sizing: border-box;
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--thefunnysocialgame-transition);
    position: relative;
    box-shadow: var(--thefunnysocialgame-shadow-card);
}

.thefunnysocialgame-game-card:hover {
    border-color: var(--thefunnysocialgame-brand-orange);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 94, 20, 0.35);
}

.thefunnysocialgame-game-card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #000000;
}

.thefunnysocialgame-game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-game-card:hover .thefunnysocialgame-game-card-media img {
    transform: scale(1.08);
}

.thefunnysocialgame-game-card-disclaimer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 9, 19, 0.95);
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    color: #ffd000;
    font-weight: 800;
    text-align: center;
    border-top: 1px solid rgba(255, 208, 0, 0.35);
    z-index: 2;
}

.thefunnysocialgame-game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 19, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--thefunnysocialgame-transition);
    z-index: 3;
}

.thefunnysocialgame-game-card:hover .thefunnysocialgame-game-card-overlay {
    opacity: 1;
}

.thefunnysocialgame-game-card-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thefunnysocialgame-badge-rng {
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--thefunnysocialgame-brand-cyan);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.thefunnysocialgame-badge-free {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid var(--thefunnysocialgame-brand-green);
    color: var(--thefunnysocialgame-brand-green);
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.thefunnysocialgame-game-card-play-btn {
    align-self: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--thefunnysocialgame-brand-orange-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--thefunnysocialgame-shadow-orange);
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-game-card-play-btn:hover {
    transform: scale(1.15);
    background: #ffffff;
    color: #070913;
}

.thefunnysocialgame-game-card-meta {
    align-self: center;
    font-size: 0.85rem;
    color: var(--thefunnysocialgame-text-primary);
    font-weight: 800;
    background: rgba(12, 15, 32, 0.9);
    border: 1px solid var(--thefunnysocialgame-border-subtle);
    padding: 0.35rem 0.85rem;
    border-radius: var(--thefunnysocialgame-radius-pill);
}

.thefunnysocialgame-game-card-info {
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thefunnysocialgame-bg-surface-elevated);
    min-height: 84px;
    gap: 0.75rem;
}

.thefunnysocialgame-game-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thefunnysocialgame-game-card-cta {
    height: 38px;
    min-width: 105px;
    max-width: 105px;
    padding: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--thefunnysocialgame-brand-orange);
    background: rgba(255, 94, 20, 0.12);
    border: 1px solid rgba(255, 94, 20, 0.35);
    cursor: pointer;
    border-radius: var(--thefunnysocialgame-radius-sm);
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-game-card-cta:hover {
    background: var(--thefunnysocialgame-brand-orange);
    color: #ffffff;
}

.thefunnysocialgame-block-split {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5.5rem;
}

.thefunnysocialgame-block-split:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .thefunnysocialgame-block-split {
        flex-direction: row;
    }
    
    .thefunnysocialgame-block-split > * {
        flex: 1;
    }
    
    .thefunnysocialgame-block-split.reverse {
        flex-direction: row-reverse;
    }
}

.thefunnysocialgame-block-image-wrap {
    border-radius: var(--thefunnysocialgame-radius-xl);
    overflow: hidden;
    border: 1px solid var(--thefunnysocialgame-border-card);
    box-shadow: var(--thefunnysocialgame-shadow-card);
    aspect-ratio: 4/3;
    position: relative;
    width: 100%;
}

.thefunnysocialgame-block-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thefunnysocialgame-block-text h3 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    margin-bottom: 1.15rem;
}

.thefunnysocialgame-block-text p {
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.35rem;
}

.thefunnysocialgame-block-text ul {
    margin: 1.25rem 0 1.75rem 1.75rem;
    color: var(--thefunnysocialgame-text-secondary);
    list-style: disc;
}

.thefunnysocialgame-block-text li {
    margin-bottom: 0.65rem;
    font-size: 1.02rem;
}

.thefunnysocialgame-block-text li strong {
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-studio-layout {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

@media (min-width: 992px) {
    .thefunnysocialgame-studio-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .thefunnysocialgame-active-sim-panel {
        flex: 3.2;
    }

    .thefunnysocialgame-studio-sidebar {
        flex: 1;
        min-width: 320px;
    }
}

.thefunnysocialgame-active-sim-panel {
    background: var(--thefunnysocialgame-bg-surface);
    border: 2px solid var(--thefunnysocialgame-brand-orange);
    border-radius: var(--thefunnysocialgame-radius-xl);
    padding: 1.75rem;
    box-shadow: var(--thefunnysocialgame-shadow-card);
}

.thefunnysocialgame-in-slot-hud {
    background: #070913;
    border: 1px solid rgba(255, 94, 20, 0.4);
    border-radius: var(--thefunnysocialgame-radius-sm);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    color: var(--thefunnysocialgame-brand-cyan);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thefunnysocialgame-in-slot-hud span.warn {
    color: #ffd000;
}

.thefunnysocialgame-iframe-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000000;
    border-radius: var(--thefunnysocialgame-radius-md);
    overflow: hidden;
    border: 1px solid var(--thefunnysocialgame-border-subtle);
}

.thefunnysocialgame-iframe-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.thefunnysocialgame-sim-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
    flex-wrap: wrap;
    gap: 1rem;
}

.thefunnysocialgame-sim-toolbar-btns {
    display: flex;
    gap: 0.85rem;
}

.thefunnysocialgame-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--thefunnysocialgame-bg-surface-elevated);
    border: 1px solid var(--thefunnysocialgame-border-card);
    color: var(--thefunnysocialgame-text-pure);
    padding: 0.7rem 1.3rem;
    border-radius: var(--thefunnysocialgame-radius-md);
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-tool-btn:hover {
    border-color: var(--thefunnysocialgame-brand-orange);
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-sim-disclaimer-box {
    background: rgba(255, 208, 0, 0.08);
    border: 1px solid rgba(255, 208, 0, 0.35);
    border-radius: var(--thefunnysocialgame-radius-md);
    padding: 1.35rem;
    margin-top: 1.35rem;
    font-size: 0.92rem;
    color: var(--thefunnysocialgame-text-primary);
    line-height: 1.65;
}

.thefunnysocialgame-sim-disclaimer-box strong {
    color: #ffd000;
}

.thefunnysocialgame-studio-sidebar {
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-xl);
    padding: 1.75rem;
    box-shadow: var(--thefunnysocialgame-shadow-card);
}

.thefunnysocialgame-sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--thefunnysocialgame-border-subtle);
}

.thefunnysocialgame-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 580px;
    overflow-y: auto;
}

.thefunnysocialgame-sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thefunnysocialgame-bg-surface-elevated);
    border: 1px solid var(--thefunnysocialgame-border-subtle);
    border-radius: var(--thefunnysocialgame-radius-md);
    padding: 0.95rem 1.15rem;
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-sidebar-item:hover {
    border-color: var(--thefunnysocialgame-brand-orange);
    color: var(--thefunnysocialgame-text-pure);
    transform: translateX(4px);
}

.thefunnysocialgame-sidebar-item.active {
    background: var(--thefunnysocialgame-bg-surface-hover);
    border: 2px solid var(--thefunnysocialgame-brand-orange);
    color: var(--thefunnysocialgame-brand-orange);
    font-weight: 800;
}

.thefunnysocialgame-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.thefunnysocialgame-faq-card {
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-md);
    overflow: hidden;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-faq-card:hover, .thefunnysocialgame-faq-card.active {
    border-color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-faq-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.45rem 1.85rem;
    background: none;
    border: none;
    color: var(--thefunnysocialgame-text-pure);
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.thefunnysocialgame-faq-btn:hover {
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-faq-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--thefunnysocialgame-bg-surface-elevated);
    border: 1px solid var(--thefunnysocialgame-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-faq-card.active .thefunnysocialgame-faq-arrow {
    transform: rotate(45deg);
    background: var(--thefunnysocialgame-brand-orange);
    color: #ffffff;
}

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

.thefunnysocialgame-faq-card.active .thefunnysocialgame-faq-content {
    max-height: 500px;
}

.thefunnysocialgame-faq-content-inner {
    padding: 0 1.85rem 1.65rem;
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    border-top: 1px solid var(--thefunnysocialgame-border-subtle);
}

.thefunnysocialgame-readable-box {
    max-width: 920px;
    margin: 0 auto;
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-xl);
    padding: 3.75rem 3.25rem;
    box-shadow: var(--thefunnysocialgame-shadow-card);
}

.thefunnysocialgame-readable-box h2 {
    font-size: 1.55rem;
    margin: 2.4rem 0 0.95rem;
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-readable-box h2:first-child {
    margin-top: 0;
}

.thefunnysocialgame-readable-box p {
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
}

.thefunnysocialgame-readable-box ul {
    margin: 1.15rem 0 1.65rem 1.75rem;
    color: var(--thefunnysocialgame-text-secondary);
    list-style: disc;
}

.thefunnysocialgame-readable-box li {
    margin-bottom: 0.75rem;
    font-size: 1.02rem;
}

.thefunnysocialgame-readable-box li strong {
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-contact-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1040px;
    margin: 0 auto;
}

@media (min-width: 860px) {
    .thefunnysocialgame-contact-split {
        flex-direction: row;
    }
    
    .thefunnysocialgame-contact-card {
        flex: 1;
    }
    
    .thefunnysocialgame-contact-card:last-child {
        flex: 1.25;
    }
}

.thefunnysocialgame-contact-card {
    background: var(--thefunnysocialgame-bg-surface);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--thefunnysocialgame-shadow-card);
}

.thefunnysocialgame-contact-card:last-child {
    border: 2px solid var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.thefunnysocialgame-contact-detail svg {
    color: var(--thefunnysocialgame-brand-orange);
    margin-top: 0.2rem;
}

.thefunnysocialgame-contact-detail strong {
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.thefunnysocialgame-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thefunnysocialgame-form-group label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-form-group input,
.thefunnysocialgame-form-group select,
.thefunnysocialgame-form-group textarea {
    width: 100%;
    background: var(--thefunnysocialgame-bg-surface-elevated);
    border: 1px solid var(--thefunnysocialgame-border-card);
    border-radius: var(--thefunnysocialgame-radius-md);
    padding: 0.95rem 1.35rem;
    color: var(--thefunnysocialgame-text-pure);
    font-size: 1rem;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-form-group input:focus,
.thefunnysocialgame-form-group select:focus,
.thefunnysocialgame-form-group textarea:focus {
    outline: none;
    border-color: var(--thefunnysocialgame-brand-orange);
    background: var(--thefunnysocialgame-bg-surface-hover);
    box-shadow: 0 0 15px rgba(255, 94, 20, 0.35);
}

.thefunnysocialgame-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.thefunnysocialgame-site-footer {
    background: #05070e;
    border-top: 1px solid var(--thefunnysocialgame-border-subtle);
    padding: 4.5rem 0 3rem;
}

.thefunnysocialgame-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    justify-content: space-between;
}

.thefunnysocialgame-footer-brand {
    flex: 2 1 340px;
}

.thefunnysocialgame-footer-nav-col {
    flex: 1 1 180px;
}

.thefunnysocialgame-footer-brand h3 {
    font-size: 1.65rem;
    margin-bottom: 1.15rem;
}

.thefunnysocialgame-footer-desc {
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.65rem;
    max-width: 460px;
}

.thefunnysocialgame-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.thefunnysocialgame-footer-badge-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--thefunnysocialgame-border-subtle);
    color: var(--thefunnysocialgame-text-primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
}

.thefunnysocialgame-footer-badge-18 {
    background: rgba(255, 94, 20, 0.15);
    color: var(--thefunnysocialgame-brand-orange);
    border: 1px solid var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-footer-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.thefunnysocialgame-footer-partners li,
.thefunnysocialgame-footer-partners a {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 140px;
    max-width: 220px;
    display: block;
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-footer-partners a:hover {
    transform: translateY(-3px);
}

.thefunnysocialgame-footer-partners img {
    width: 100%;
    height: auto;
    max-height: 52px;
    border-radius: var(--thefunnysocialgame-radius-sm);
}

.thefunnysocialgame-footer-nav-col h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.35rem;
    color: var(--thefunnysocialgame-text-pure);
}

.thefunnysocialgame-footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.thefunnysocialgame-footer-nav-col a {
    color: var(--thefunnysocialgame-text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

.thefunnysocialgame-footer-nav-col a:hover {
    color: var(--thefunnysocialgame-brand-orange);
}

.thefunnysocialgame-footer-bottom {
    border-top: 1px solid var(--thefunnysocialgame-border-subtle);
    padding-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--thefunnysocialgame-text-muted);
}

@media (min-width: 768px) {
    .thefunnysocialgame-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.thefunnysocialgame-cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 860px;
    margin: 0 auto;
    background: rgba(17, 22, 46, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid var(--thefunnysocialgame-brand-orange);
    border-radius: var(--thefunnysocialgame-radius-lg);
    padding: 1.65rem 2.25rem;
    z-index: 10000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 94, 20, 0.3);
}

.thefunnysocialgame-cookie-box {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

@media (min-width: 768px) {
    .thefunnysocialgame-cookie-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.thefunnysocialgame-cookie-text {
    font-size: 0.95rem;
    color: var(--thefunnysocialgame-text-primary);
    line-height: 1.65;
}

.thefunnysocialgame-cookie-text a {
    color: var(--thefunnysocialgame-brand-orange);
    text-decoration: underline;
    font-weight: 700;
}

.thefunnysocialgame-cookie-actions {
    display: flex;
    gap: 0.85rem;
    flex-shrink: 0;
}

.thefunnysocialgame-cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--thefunnysocialgame-border-card);
    color: var(--thefunnysocialgame-text-secondary);
    padding: 0.7rem 1.35rem;
    border-radius: var(--thefunnysocialgame-radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.thefunnysocialgame-cookie-btn-accept {
    background: var(--thefunnysocialgame-brand-orange-gradient);
    border: none;
    color: #ffffff;
    padding: 0.7rem 1.65rem;
    border-radius: var(--thefunnysocialgame-radius-md);
    font-family: var(--thefunnysocialgame-font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--thefunnysocialgame-shadow-orange);
}

.thefunnysocialgame-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thefunnysocialgame-toast {
    background: #171c38;
    border: 2px solid var(--thefunnysocialgame-brand-orange);
    border-radius: var(--thefunnysocialgame-radius-md);
    padding: 1.15rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    color: var(--thefunnysocialgame-text-pure);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateX(50px);
    transition: var(--thefunnysocialgame-transition);
}

.thefunnysocialgame-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.thefunnysocialgame-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.2);
    color: var(--thefunnysocialgame-brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.thefunnysocialgame-toast-title {
    font-weight: 800;
    font-size: 1rem;
}

.thefunnysocialgame-toast-message {
    font-size: 0.9rem;
    color: var(--thefunnysocialgame-text-secondary);
}

.thefunnysocialgame-toast-close {
    background: none;
    border: none;
    color: var(--thefunnysocialgame-text-muted);
    font-size: 1.35rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .thefunnysocialgame-main-nav, .thefunnysocialgame-btn-header-cta {
        display: none;
    }
    
    .thefunnysocialgame-mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .thefunnysocialgame-games-grid {
        gap: 1.5rem;
    }

    .thefunnysocialgame-game-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        width: calc((100% - 1.5rem) / 2);
        max-width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.55rem !important;
        line-height: 1.15 !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }

    h3 {
        font-size: 1.05rem !important;
    }

    h4 {
        font-size: 0.95rem !important;
    }

    body {
        font-size: 0.88rem;
    }

    .thefunnysocialgame-container {
        padding: 0 1rem;
    }

    .thefunnysocialgame-section {
        padding: 1.75rem 0;
    }

    .thefunnysocialgame-hero-screenshot-style {
        min-height: auto;
        padding: 1.75rem 0 1.5rem;
    }

    .thefunnysocialgame-hero-layout-split {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .thefunnysocialgame-hero-main-title {
        font-size: 1.65rem !important;
        margin-bottom: 1.25rem;
    }

    .thefunnysocialgame-hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .thefunnysocialgame-btn-get-started {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .thefunnysocialgame-btn-play-video {
        font-size: 0.9rem;
    }

    .thefunnysocialgame-play-circle-green {
        width: 44px;
        height: 44px;
    }

    .thefunnysocialgame-hero-testimonial-badge {
        padding: 0.75rem 1rem;
        gap: 0.85rem;
    }

    .thefunnysocialgame-avatar-img {
        width: 48px;
        height: 48px;
    }

    .thefunnysocialgame-testimonial-quote {
        font-size: 0.82rem;
    }

    .thefunnysocialgame-testimonial-author {
        font-size: 0.75rem;
    }

    .thefunnysocialgame-fan-cards-section {
        padding: 2rem 0 1.5rem;
    }

    .thefunnysocialgame-ghost-watermark-top,
    .thefunnysocialgame-ghost-watermark-bottom {
        font-size: 1.85rem;
        margin: 0;
    }

    .thefunnysocialgame-fan-cards-grid {
        gap: 0.85rem;
        padding: 1rem 0;
    }

    .thefunnysocialgame-fan-card-item {
        width: 140px;
        padding: 0.6rem;
        transform: none !important;
    }

    .thefunnysocialgame-fan-card-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .thefunnysocialgame-welcome-destination-split {
        padding: 1.5rem 0 1rem;
        gap: 1rem;
    }

    .thefunnysocialgame-welcome-title {
        font-size: 1.35rem !important;
    }

    .thefunnysocialgame-welcome-text {
        font-size: 0.88rem;
    }

    .thefunnysocialgame-bento-games-section {
        padding: 1.75rem 0;
    }

    .thefunnysocialgame-bento-showcase-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .thefunnysocialgame-bento-card-title {
        font-size: 1.05rem;
    }

    .thefunnysocialgame-bento-card-tag {
        font-size: 0.75rem;
    }

    .thefunnysocialgame-controls-bar {
        margin-bottom: 1.75rem;
        gap: 1rem;
    }

    .thefunnysocialgame-search-wrap input {
        font-size: 0.88rem;
        padding: 0.75rem 1rem 0.75rem 2.8rem;
    }

    .thefunnysocialgame-filter-pills {
        gap: 0.5rem;
    }

    .thefunnysocialgame-filter-pill {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
    }

    .thefunnysocialgame-games-grid {
        gap: 1.25rem;
    }

    .thefunnysocialgame-game-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .thefunnysocialgame-game-card-title {
        font-size: 0.92rem;
    }

    .thefunnysocialgame-game-card-cta {
        font-size: 0.78rem;
        min-width: 92px;
        max-width: 92px;
        height: 34px;
    }

    .thefunnysocialgame-game-card-disclaimer {
        font-size: 0.68rem;
        padding: 0.35rem 0.5rem;
    }

    .thefunnysocialgame-block-split {
        gap: 1.5rem;
        margin-bottom: 2.25rem;
    }

    .thefunnysocialgame-block-text h3 {
        font-size: 1.15rem;
    }

    .thefunnysocialgame-block-text p,
    .thefunnysocialgame-block-text li {
        font-size: 0.88rem;
    }

    .thefunnysocialgame-section-header {
        margin-bottom: 1.75rem;
    }

    .thefunnysocialgame-section-title {
        font-size: 1.35rem !important;
    }

    .thefunnysocialgame-section-subtitle {
        font-size: 0.88rem;
    }

    .thefunnysocialgame-section-tag {
        font-size: 0.75rem;
    }

    .thefunnysocialgame-readable-box {
        padding: 1.75rem 1.25rem;
    }

    .thefunnysocialgame-readable-box h2 {
        font-size: 1.15rem;
    }

    .thefunnysocialgame-readable-box p,
    .thefunnysocialgame-readable-box li {
        font-size: 0.88rem;
    }

    .thefunnysocialgame-contact-card {
        padding: 1.75rem 1.25rem;
    }

    .thefunnysocialgame-contact-card h3 {
        font-size: 1.15rem;
    }

    .thefunnysocialgame-contact-detail {
        font-size: 0.85rem;
    }

    .thefunnysocialgame-form-group label {
        font-size: 0.85rem;
    }

    .thefunnysocialgame-form-group input,
    .thefunnysocialgame-form-group select,
    .thefunnysocialgame-form-group textarea {
        font-size: 0.88rem;
        padding: 0.75rem 1rem;
    }

    .thefunnysocialgame-active-sim-panel {
        padding: 1rem;
    }

    .thefunnysocialgame-in-slot-hud {
        font-size: 0.75rem;
        padding: 0.5rem 0.85rem;
    }

    .thefunnysocialgame-tool-btn {
        font-size: 0.8rem;
        padding: 0.55rem 0.95rem;
    }

    .thefunnysocialgame-sim-disclaimer-box {
        font-size: 0.8rem;
        padding: 0.95rem;
    }

    .thefunnysocialgame-sidebar-item {
        font-size: 0.85rem;
        padding: 0.75rem 0.95rem;
    }

    .thefunnysocialgame-faq-btn {
        font-size: 0.95rem;
        padding: 1.1rem 1.25rem;
    }

    .thefunnysocialgame-faq-content-inner {
        font-size: 0.85rem;
        padding: 0 1.25rem 1.25rem;
    }

    .thefunnysocialgame-marquee-top-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .thefunnysocialgame-marquee-mid-bar {
        margin: 1.75rem 0;
        font-size: 0.8rem;
        padding: 0.7rem 0;
    }

    .thefunnysocialgame-marquee-compliance-bar {
        font-size: 0.75rem;
        padding: 0.65rem 0;
    }

    .thefunnysocialgame-site-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .thefunnysocialgame-footer-brand h3 {
        font-size: 1.3rem;
    }

    .thefunnysocialgame-footer-desc {
        font-size: 0.82rem;
    }

    .thefunnysocialgame-footer-badge-pill {
        font-size: 0.72rem;
        padding: 0.25rem 0.65rem;
    }

    .thefunnysocialgame-footer-nav-col h4 {
        font-size: 1.05rem;
    }

    .thefunnysocialgame-footer-nav-col a {
        font-size: 0.85rem;
    }

    .thefunnysocialgame-footer-bottom {
        font-size: 0.78rem;
    }

    .thefunnysocialgame-footer-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .thefunnysocialgame-cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 1.15rem 1.25rem;
    }

    .thefunnysocialgame-cookie-text {
        font-size: 0.82rem;
    }

    .thefunnysocialgame-cookie-btn-decline,
    .thefunnysocialgame-cookie-btn-accept {
        font-size: 0.8rem;
        padding: 0.55rem 1.15rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem !important;
    }

    h2 {
        font-size: 1.15rem !important;
    }

    h3 {
        font-size: 0.95rem !important;
    }

    body {
        font-size: 0.82rem;
    }

    .thefunnysocialgame-container {
        padding: 0 0.85rem;
    }

    .thefunnysocialgame-section {
        padding: 1.35rem 0;
    }

    .thefunnysocialgame-hero-main-title {
        font-size: 1.45rem !important;
    }

    .thefunnysocialgame-section-title {
        font-size: 1.2rem !important;
    }

    .thefunnysocialgame-welcome-title {
        font-size: 1.2rem !important;
    }

    .thefunnysocialgame-ghost-watermark-top,
    .thefunnysocialgame-ghost-watermark-bottom {
        font-size: 1.5rem;
    }

    .thefunnysocialgame-game-card-title {
        font-size: 0.85rem;
    }

    .thefunnysocialgame-game-card-info {
        padding: 0.75rem 0.85rem;
    }

    .thefunnysocialgame-filter-pill {
        font-size: 0.75rem;
        padding: 0.45rem 0.85rem;
    }

    .thefunnysocialgame-faq-btn {
        font-size: 0.88rem;
    }

    .thefunnysocialgame-logo {
        font-size: 1.2rem;
    }

    .thefunnysocialgame-logo img {
        width: 36px;
        height: 36px;
    }
}
