:root {
    --agency-brand: #009CD9;         /* Cerulean Blue */
    --agency-brand-dark: #007bb0;    /* Darker Cerulean */
    --agency-black: #000000;         /* Deep Black */
    --agency-light: #F1FAEE;         /* Soft grey-white */
    --agency-white: #ffffff;         /* Pure White */
    --agency-card: #121212;          /* Sleek charcoal card background */
    --agency-card-hover: #1e1e1e;    /* Hover card background */
    --agency-text: #ffffff;          /* Default body text color */
    --agency-muted: #a3a3a3;         /* Secondary muted text */
    --agency-muted-strong: #e5e5e5;  /* Stronger readability text */
    --agency-border: rgba(255, 255, 255, 0.08);
    --agency-border-soft: rgba(255, 255, 255, 0.04);
    --agency-shadow: 0 0 30px rgba(0, 156, 217, 0.15);
    --agency-font-body: "Poppins", sans-serif;
    --agency-font-display: "Montserrat", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--agency-black);
}

body.agency-page {
    margin: 0;
    background: var(--agency-black);
    color: var(--agency-text);
    font-family: var(--agency-font-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.agency-page button,
body.agency-page input,
body.agency-page textarea {
    font: inherit;
}

body.agency-page button {
    cursor: pointer;
}

body.agency-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Screen reader only utility class */
.agency-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Gradient text effect */
.agency-gradient-text {
    background: linear-gradient(90deg, var(--agency-white) 0%, var(--agency-brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Sticky Header Styling */
.agency-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid var(--agency-border-soft);
    backdrop-filter: blur(20px);
    transition: box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.agency-header--scrolled {
    border-bottom-color: rgba(0, 156, 217, 0.2);
    box-shadow: 0 4px 30px rgba(0, 156, 217, 0.1);
    background: rgba(0, 0, 0, 0.95);
}

.agency-header__inner {
    width: min(100%, 1280px);
    height: 88px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.agency-header__brand {
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--agency-brand) 0%, var(--agency-white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 300ms ease;
}

.agency-header__brand:hover {
    transform: scale(1.02);
}

.agency-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.agency-nav__link {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 250ms ease;
    position: relative;
    padding: 6px 0;
}

.agency-nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--agency-brand);
    transition: width 250ms ease;
}

.agency-nav__link:hover::after,
.agency-nav__link--active::after {
    width: 100%;
}

.agency-nav__link:hover,
.agency-nav__link--active {
    color: var(--agency-white);
}

.agency-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Call to action header button */
.agency-auth-button {
    min-height: 42px;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.agency-auth-button--solid {
    color: var(--agency-white);
    background: var(--agency-brand);
    border: 1px solid var(--agency-brand);
}

.agency-auth-button--solid:hover {
    background: var(--agency-brand-dark);
    border-color: var(--agency-brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 156, 217, 0.3);
}

.agency-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--agency-border);
    border-radius: 4px;
    background: transparent;
    color: var(--agency-brand);
    place-items: center;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.agency-menu-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--agency-white);
    border-radius: 2px;
    transition: transform 250ms ease, opacity 250ms ease;
}

/* Mobile Nav Drawer styling */
.agency-mobile-nav {
    display: none;
    width: 100%;
    background: var(--agency-black);
    border-bottom: 1px solid var(--agency-border);
    padding: 0 24px 24px;
}

.agency-mobile-nav--open {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agency-mobile-nav__link {
    padding: 12px 16px;
    border: 1px solid var(--agency-border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--agency-white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 250ms ease, color 250ms ease;
}

.agency-mobile-nav__link:hover {
    background: rgba(0, 156, 217, 0.1);
    color: var(--agency-brand);
    border-color: var(--agency-brand);
}

/* Main Layout & Section Spacing */
.agency-main {
    min-height: 100vh;
}

.agency-section {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 96px 24px;
}

/* Hero Section Styles */
.agency-hero {
    padding-top: 150px;
    width: 100%;
}

.agency-hero__card {
    position: relative;
    border: 1px solid var(--agency-border-soft);
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 12px;
    overflow: hidden;
}

.agency-hero__card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 156, 217, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.agency-hero__card_wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.agency-hero__content {
    width: 100%;
}

.agency-hero__title {
    margin: 0 0 16px;
    font-family: var(--agency-font-display);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.agency-hero__subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--agency-brand);
    font-weight: 500;
    margin: 0 0 24px;
    line-height: 1.4;
    max-width: 580px;
}

.agency-hero__description {
    font-size: 16px;
    color: var(--agency-muted);
    line-height: 1.8;
    margin: 0 0 32px;
    max-width: 560px;
}

.agency-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.agency-hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--agency-muted-strong);
    font-weight: 500;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid var(--agency-border);
}

.agency-icon-bubble {
    color: var(--agency-brand);
    font-size: 14px;
    font-weight: 900;
}

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

.agency-main-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 16px 32px;
    border: 0;
    border-radius: 4px;
    background: var(--agency-brand);
    color: var(--agency-white);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 250ms ease, background-color 250ms ease, box-shadow 250ms ease;
    box-shadow: 0 4px 15px rgba(0, 156, 217, 0.2);
}

.agency-main-button:hover {
    background: var(--agency-brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 156, 217, 0.35);
}

.agency-main-button--outline {
    background: transparent;
    color: var(--agency-white);
    border: 1px solid var(--agency-white);
    box-shadow: none;
}

.agency-main-button--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--agency-white);
    transform: translateY(-2px);
    box-shadow: none;
}

.agency-main-button__icon {
    font-size: 16px;
    transition: transform 250ms ease;
}

.agency-main-button:hover .agency-main-button__icon {
    transform: translateX(4px);
}

.agency-hero__media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.agency-hero__image {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 156, 217, 0.1);
    border: 1px solid var(--agency-border);
    transition: transform 500ms ease;
}

.agency-hero__image:hover {
    transform: translateY(-4px) scale(1.01);
}

/* Stats Section Styles */
.agency-stats {
    padding-top: 24px;
    padding-bottom: 24px;
}

.agency-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.agency-stat-card {
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--agency-border);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--agency-card) 0%, rgba(0,0,0,1) 100%);
    transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.agency-stat-card:hover {
    border-color: var(--agency-brand);
    transform: translateY(-4px);
    box-shadow: var(--agency-shadow);
}

.agency-stat-card__number {
    margin: 0 0 12px;
    color: var(--agency-brand);
    font-family: var(--agency-font-display);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1;
}

.agency-stat-card__label {
    margin: 0;
    color: var(--agency-muted);
    font-size: 14px;
    font-weight: 500;
}

/* About Us Section Styles */
.agency-about {
    border-top: 1px solid var(--agency-border-soft);
}

.agency-about__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: flex-start;
}

.agency-section-title {
    margin: 0 0 24px;
    font-family: var(--agency-font-display);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.agency-about__image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--agency-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-color: var(--agency-card);
}

.agency-about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agency-copy {
    margin: 0;
    color: var(--agency-muted);
    font-size: 15px;
    line-height: 1.8;
}

.agency-copy--highlight {
    font-size: 18px;
    color: var(--agency-white);
    line-height: 1.6;
    font-weight: 400;
}

.agency-about__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.agency-pillar-card {
    background: var(--agency-card);
    border: 1px solid var(--agency-border);
    border-radius: 8px;
    padding: 24px;
    transition: transform 250ms ease, border-color 250ms ease;
}

.agency-pillar-card:hover {
    transform: translateY(-2px);
    border-color: var(--agency-brand);
}

.agency-pillar-card h3 {
    margin: 0 0 12px;
    font-family: var(--agency-font-display);
    color: var(--agency-brand);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agency-pillar-card p {
    margin: 0;
    font-size: 14px;
    color: var(--agency-muted);
    line-height: 1.6;
}

.agency-pillar-card ul {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: var(--agency-muted);
    line-height: 1.6;
}

.agency-pillar-card li {
    margin-bottom: 8px;
}

/* Services (Features) Section */
.agency-features {
    border-top: 1px solid var(--agency-border-soft);
    text-align: center;
}

.agency-section-kicker {
    margin: 0 0 8px;
    color: var(--agency-brand);
    font-family: var(--agency-font-display);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.agency-section-heading {
    margin: 0 0 20px;
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.agency-section-heading span {
    color: var(--agency-brand);
}

.agency-section-desc {
    max-width: 680px;
    margin: 0 auto 56px;
    color: var(--agency-muted);
    font-size: 16px;
    line-height: 1.7;
}

.agency-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    text-align: left;
}

.agency-feature-card {
    padding: 36px;
    border: 1px solid var(--agency-border);
    border-radius: 8px;
    background: var(--agency-card);
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.agency-feature-card:hover {
    border-color: var(--agency-brand);
    box-shadow: var(--agency-shadow);
    transform: translateY(-4px);
    background: var(--agency-card-hover);
}

.agency-feature-card__title {
    margin: 0 0 16px;
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.agency-feature-card:hover .agency-feature-card__title {
    color: var(--agency-brand);
}

/* Portfolio Section Styles */
.agency-jackpot {
    border-top: 1px solid var(--agency-border-soft);
    text-align: center;
}

.agency-jackpot__title {
    margin: 0 0 16px;
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.agency-jackpot__title span {
    color: var(--agency-brand);
}

.agency-jackpot__copy {
    max-width: 700px;
    margin: 0 auto 56px;
    color: var(--agency-muted);
    font-size: 16px;
    line-height: 1.7;
}

.agency-jackpot__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.agency-game-card {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--agency-border);
    background: var(--agency-card);
    transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
    aspect-ratio: 1 / 1;
}

.agency-game-card:hover {
    border-color: var(--agency-brand);
    box-shadow: var(--agency-shadow);
    transform: translateY(-4px);
}

.agency-game-card__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.agency-game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agency-game-card:hover .agency-game-card__image {
    transform: scale(1.08);
}

.agency-game-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 75%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transform: translateY(20px);
    opacity: 0;
    height: 100%;
    transition: transform 300ms ease, opacity 300ms ease;
}

.agency-game-card:hover .agency-game-card__overlay {
    transform: translateY(0);
    opacity: 1;
}

.agency-game-card__overlay h3 {
    margin: 0 0 12px;
    color: var(--agency-white);
    font-size: 16px;
    font-weight: 700;
}

.agency-portfolio-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--agency-brand);
    border-radius: 4px;
    color: var(--agency-white);
    background-color: var(--agency-brand);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 250ms ease, transform 250ms ease;
}

.agency-portfolio-btn:hover {
    background-color: var(--agency-brand-dark);
    transform: translateY(-1px);
}

/* Demo Reel Section */
.agency-reel {
    border-top: 1px solid var(--agency-border-soft);
    text-align: center;
}

.agency-reel__subtitle {
    max-width: 700px;
    margin: 0 auto 48px;
    color: var(--agency-muted);
    font-size: 16px;
    line-height: 1.7;
}

.agency-reel__wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.agency-reel__video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--agency-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16 / 9;
}

.agency-reel__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.agency-reel__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: var(--agency-brand);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 156, 217, 0.5);
    transition: transform 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.agency-reel__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--agency-white);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.agency-reel__play-icon {
    font-size: 24px;
    color: var(--agency-black);
    margin-left: 6px;
    transition: color 300ms ease;
}

.agency-reel__play-btn:hover .agency-reel__play-icon {
    color: var(--agency-brand);
}

/* Video Modal Styles */
.agency-reel__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.agency-reel__modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.agency-reel__close-btn {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: 0;
    color: var(--agency-white);
    font-size: 40px;
    line-height: 1;
    transition: color 250ms ease;
}

.agency-reel__close-btn:hover {
    color: var(--agency-brand);
}

.agency-reel__iframe-container {
    width: 100%;
    height: 100%;
}

.agency-reel__iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Providers / Clients Section */
.agency-providers {
    border-top: 1px solid var(--agency-border-soft);
    padding-top: 64px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(10,10,10,1) 100%);
}

.agency-hero__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.agency-hero__note p {
    margin: 0;
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.agency-hero__note-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 217, 0.4));
}

.agency-hero__note-line:last-child {
    background: linear-gradient(90deg, rgba(0, 156, 217, 0.4), transparent);
}

.agency-providers-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
}

.agency-providers-slider::before,
.agency-providers-slider::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 120px;
    height: 100%;
    pointer-events: none;
}

.agency-providers-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--agency-black), transparent);
}

.agency-providers-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--agency-black), transparent);
}

.agency-providers-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: agencyScrollLogos 30s linear infinite;
}

.agency-providers-slider:hover .agency-providers-track {
    animation-play-state: paused;
}

.agency-provider-logo-card {
    width: 200px;
    height: 90px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--agency-border);
    border-radius: 6px;
    background: var(--agency-card);
    transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.agency-provider-logo-card:hover {
    border-color: rgba(0, 156, 217, 0.4);
    box-shadow: 0 4px 15px rgba(0, 156, 217, 0.1);
    transform: translateY(-2px);
}

.agency-provider-logo-card__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 250ms ease, filter 250ms ease;
}

.agency-provider-logo-card:hover .agency-provider-logo-card__image {
    opacity: 1;
    filter: none;
}

@keyframes agencyScrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-248px * 10)); /* (width 200px + gap 48px) * 10 logos */
    }
}

/* Blog Section Styling */
.agency-blog {
    border-top: 1px solid var(--agency-border-soft);
    text-align: center;
}

.agency-blog__description {
    max-width: 700px;
    margin: 0 auto 56px;
    color: var(--agency-muted);
    font-size: 16px;
    line-height: 1.7;
}

.agency-blog__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    text-align: left;
}

.agency-blog-card {
    border: 1px solid var(--agency-border);
    border-radius: 8px;
    background: var(--agency-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
    height: 100%;
}

.agency-blog-card:hover {
    border-color: var(--agency-brand);
    transform: translateY(-4px);
    box-shadow: var(--agency-shadow);
}

.agency-blog-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.agency-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.agency-blog-card:hover .agency-blog-card__image {
    transform: scale(1.05);
}

.agency-blog-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.agency-blog-card__date {
    font-size: 12px;
    color: var(--agency-brand);
    margin: 0 0 10px;
    font-weight: 600;
}

.agency-blog-card__title {
    margin: 0 0 12px;
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.agency-blog-card__copy {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--agency-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.agency-blog-card__link {
    color: var(--agency-brand);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 250ms ease;
}

.agency-blog-card__link:hover {
    color: var(--agency-white);
}

/* Contact Section Styling */
.agency-contact {
    border-top: 1px solid var(--agency-border-soft);
}

.agency-contact__layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: flex-start;
}

.agency-contact__form-container {
    background: var(--agency-card);
    border: 1px solid var(--agency-border);
    border-radius: 8px;
    padding: 40px;
}

.agency-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agency-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agency-form-group label {
    font-size: 14px;
    color: var(--agency-white);
    font-weight: 500;
}

.agency-form-group input,
.agency-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--agency-border);
    border-radius: 4px;
    color: var(--agency-white);
    font-size: 14px;
    transition: border-color 250ms ease, background-color 250ms ease;
}

.agency-form-group input:focus,
.agency-form-group textarea:focus {
    outline: none;
    border-color: var(--agency-brand);
    background-color: rgba(0, 0, 0, 0.6);
}

.agency-submit-btn {
    min-height: 50px;
    border: 0;
    border-radius: 4px;
    background-color: var(--agency-brand);
    color: var(--agency-white);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 250ms ease, transform 250ms ease;
    margin-top: 10px;
}

.agency-submit-btn:hover {
    background-color: var(--agency-brand-dark);
    transform: translateY(-1px);
}

.agency-contact__info-container {
    height: 100%;
}

.agency-contact-info-card {
    background: linear-gradient(135deg, var(--agency-card) 0%, rgba(0, 0, 0, 1) 100%);
    border: 1px solid var(--agency-border);
    border-radius: 8px;
    padding: 40px;
    height: 100%;
}

.agency-contact-info-card h3 {
    margin: 0 0 24px;
    font-family: var(--agency-font-display);
    color: var(--agency-white);
    font-size: 24px;
    font-weight: 800;
}

.agency-contact-lead {
    font-size: 16px;
    color: var(--agency-brand);
    font-weight: 500;
    margin-bottom: 32px;
}

.agency-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agency-contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--agency-muted);
    font-size: 15px;
}

.agency-contact-icon {
    font-size: 20px;
    color: var(--agency-brand);
    flex: 0 0 24px;
    display: inline-flex;
    justify-content: center;
}

/* Footer Section Styling */
.agency-footer {
    background: #050505;
    border-top: 1px solid var(--agency-border-soft);
    padding-top: 80px;
}

.agency-footer__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 24px;
}

.agency-footer__intro {
    max-width: 600px;
    margin-bottom: 48px;
}

.agency-footer__intro p {
    margin: 0;
    font-size: 15px;
    color: var(--agency-muted);
    line-height: 1.8;
}

.agency-footer__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 64px;
    margin-bottom: 64px;
}

.agency-footer__title {
    margin: 0 0 24px;
    color: var(--agency-white);
    font-family: var(--agency-font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agency-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agency-footer__link {
    color: var(--agency-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 250ms ease;
}

.agency-footer__link:hover {
    color: var(--agency-brand);
}

.agency-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--agency-muted);
    font-size: 14px;
}

.agency-contact-item__icon {
    color: var(--agency-brand);
    font-size: 16px;
}

.agency-subscribe-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.agency-subscribe-form__input {
    flex-grow: 1;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--agency-border);
    border-radius: 4px;
    color: var(--agency-white);
    font-size: 14px;
}

.agency-subscribe-form__input:focus {
    outline: none;
    border-color: var(--agency-brand);
}

.agency-subscribe-form__button {
    padding: 10px 20px;
    border: 0;
    border-radius: 4px;
    background-color: var(--agency-brand);
    color: var(--agency-white);
    font-weight: 600;
    font-size: 14px;
    transition: background 250ms ease;
}

.agency-subscribe-form__button:hover {
    background-color: var(--agency-brand-dark);
}

.agency-socials {
    display: flex;
    gap: 12px;
}

.agency-socials__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--agency-card);
    border: 1px solid var(--agency-border);
    color: var(--agency-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.agency-socials__link:hover {
    color: var(--agency-white);
    border-color: var(--agency-brand);
    transform: translateY(-2px);
}

.agency-footer__bottom {
    border-top: 1px solid var(--agency-border-soft);
    padding: 32px 0;
    text-align: center;
}

.agency-footer__bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--agency-muted);
}

/* Casino Sections Custom Styling */
.agency-casino-section {
    border-top: 1px solid var(--agency-border-soft);
    background: linear-gradient(180deg, var(--agency-black) 0%, rgba(0, 156, 217, 0.02) 100%);
}

.agency-casino-section .agency-pillar-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
}

.agency-casino-section .agency-pillar-card:hover {
    border-color: var(--agency-brand);
    background: rgba(0, 156, 217, 0.05);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .agency-hero__card_wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .agency-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    
    .agency-about__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .agency-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    
    .agency-jackpot__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .agency-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .agency-contact__layout {
        grid-template-columns: 1fr;
    }
    
    .agency-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .agency-header__inner {
        height: 72px;
    }
    
    .agency-nav {
        display: none;
    }
    
    .agency-menu-toggle {
        display: flex;
    }
    
    .agency-header__actions .agency-auth-button {
        display: none;
    }
    
    .agency-section {
        padding: 64px 20px;
    }
    
    .agency-hero__card_wrap {
        padding: 32px 20px;
    }
    
    .agency-features__grid {
        grid-template-columns: 1fr;
    }
    
    .agency-jackpot__grid {
        grid-template-columns: 1fr;
    }
    
    .agency-blog__grid {
        grid-template-columns: 1fr;
    }
    
    .agency-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .agency-about__pillars {
        grid-template-columns: 1fr;
    }
    
    .agency-providers-track {
        animation: agencyScrollLogosMobile 15s linear infinite;
    }
}

@keyframes agencyScrollLogosMobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-248px * 5)); /* scroll less on mobile for performance */
    }
}
