/* LoondonGentlePlay - Social Gaming Platform Styles */
/* Unique Color Palette - London Underground Theme */
:root {
    /* Base Colors */
    --lgp-oyster: #F6F4F0;
    --lgp-station: #ECE7DF;
    --lgp-ink: #14181F;
    --lgp-muted: #5B6672;

    /* Accent Colors */
    --lgp-tube-red: #D6403A;
    --lgp-river-blue: #2E5B9A;
    --lgp-line-teal: #1C7C78;
    --lgp-brass: #C8A15A;

    /* UI Colors */
    --lgp-border: rgba(20, 24, 31, 0.10);
    --lgp-shadow-soft: rgba(20, 24, 31, 0.08);
    --lgp-shadow-medium: rgba(20, 24, 31, 0.12);
    --lgp-overlay: rgba(20, 24, 31, 0.85);

    /* Typography */
    --lgp-font-heading: 'Fira Sans Condensed', sans-serif;
    --lgp-font-body: 'Karla', sans-serif;
    --lgp-font-mono: 'IBM Plex Mono', monospace;

    /* Spacing */
    --lgp-container: 1200px;
    --lgp-section-padding: clamp(4rem, 10vw, 8rem);
}

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

.lgp-body {
    font-family: var(--lgp-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--lgp-ink);
    background-color: var(--lgp-oyster);
    min-height: 100vh;
    overflow-x: hidden;
}

.lgp-body.lgp-age-blocked {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--lgp-font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--lgp-ink);
}

.lgp-mono {
    font-family: var(--lgp-font-mono);
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

/* Buttons */
.lgp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--lgp-font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lgp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lgp-btn:hover::before {
    opacity: 1;
}

.lgp-btn-primary {
    background: linear-gradient(135deg, var(--lgp-tube-red) 0%, #b83530 100%);
    color: white;
    box-shadow: 0 4px 15px var(--lgp-shadow-soft);
}

.lgp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--lgp-shadow-medium);
}

.lgp-btn-secondary {
    background: transparent;
    color: var(--lgp-ink);
    border: 2px solid var(--lgp-border);
}

.lgp-btn-secondary:hover {
    border-color: var(--lgp-tube-red);
    color: var(--lgp-tube-red);
}

.lgp-btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.lgp-btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.lgp-btn-full {
    width: 100%;
    justify-content: center;
}

.lgp-btn-compact {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.lgp-btn-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.lgp-btn:hover .lgp-btn-icon {
    transform: translateX(3px);
}

/* Navigation */
.lgp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(246, 244, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lgp-border);
    transition: all 0.3s ease;
}

.lgp-nav.lgp-nav-game {
    background: rgba(246, 244, 240, 0.98);
}

.lgp-nav-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lgp-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lgp-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.lgp-logo-text {
    font-family: var(--lgp-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lgp-ink);
}

.lgp-logo-accent {
    color: var(--lgp-tube-red);
}

.lgp-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.lgp-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--lgp-ink);
    transition: all 0.3s ease;
}

.lgp-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.lgp-nav-link {
    font-family: var(--lgp-font-body);
    font-weight: 500;
    color: var(--lgp-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.lgp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lgp-tube-red);
    transition: width 0.3s ease;
}

.lgp-nav-link:hover,
.lgp-nav-link-active {
    color: var(--lgp-ink);
}

.lgp-nav-link:hover::after,
.lgp-nav-link-active::after {
    width: 100%;
}

.lgp-nav-cta {
    background: linear-gradient(135deg, var(--lgp-tube-red) 0%, #b83530 100%);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
}

.lgp-nav-cta::after {
    display: none;
}

.lgp-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--lgp-shadow-soft);
}

/* Age Verification Modal */
.lgp-age-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lgp-overlay);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lgp-age-modal.lgp-modal-visible {
    opacity: 1;
    visibility: visible;
}

.lgp-age-modal-content {
    background: var(--lgp-oyster);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lgp-age-modal.lgp-modal-visible .lgp-age-modal-content {
    transform: scale(1);
}

.lgp-age-modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.lgp-age-modal-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lgp-age-modal-text {
    color: var(--lgp-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lgp-age-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Banner */
.lgp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--lgp-ink);
    color: var(--lgp-oyster);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lgp-cookie-content {
    max-width: var(--lgp-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lgp-cookie-icon {
    font-size: 2rem;
}

.lgp-cookie-text h4 {
    color: var(--lgp-oyster);
    margin-bottom: 0.25rem;
}

.lgp-cookie-text p {
    color: var(--lgp-muted);
    font-size: 0.875rem;
}

.lgp-cookie-text a {
    color: var(--lgp-line-teal);
    text-decoration: underline;
}

.lgp-cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
}

/* Hero Section */
.lgp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.lgp-hero-background {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
}

.lgp-hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 244, 240, 0.3) 0%, rgba(236, 231, 223, 0.2) 100%);
}

.lgp-hero-container {
    position: relative;
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.lgp-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lgp-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.lgp-hero-title-line {
    display: block;
}

.lgp-hero-title-accent {
    color: var(--lgp-tube-red);
    position: relative;
}

.lgp-hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background: var(--lgp-tube-red);
    opacity: 0.3;
}

.lgp-hero-subtitle {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 500px;
}

.lgp-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lgp-hero-visual {
    display: flex;
    justify-content: center;
}

.lgp-hero-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px var(--lgp-shadow-soft);
    transform: rotate(-3deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lgp-hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.lgp-hero-game-preview {
    text-align: center;
}

.lgp-hero-game-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.lgp-hero-game-title {
    display: block;
    font-family: var(--lgp-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lgp-hero-game-tag {
    display: inline-block;
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--lgp-brass);
    color: white;
    border-radius: 20px;
}

.lgp-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: lgp-bounce 2s infinite;
}

.lgp-hero-scroll-text {
    display: block;
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-muted);
    margin-bottom: 0.5rem;
}

.lgp-hero-scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--lgp-tube-red), transparent);
    margin: 0 auto;
}

@keyframes lgp-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.lgp-section-header {
    margin-bottom: 3rem;
}

.lgp-section-header-center {
    text-align: center;
}

.lgp-section-header-left {
    text-align: left;
}

.lgp-section-tag {
    display: inline-block;
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-tube-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.lgp-section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.lgp-section-subtitle {
    font-size: 1.125rem;
    color: var(--lgp-muted);
    max-width: 600px;
}

.lgp-section-header-center .lgp-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.lgp-about {
    padding: var(--lgp-section-padding) 0;
    background: linear-gradient(180deg, var(--lgp-station) 0%, var(--lgp-oyster) 100%);
}

.lgp-about-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lgp-about-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--lgp-muted);
    margin-bottom: 1.5rem;
}

.lgp-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.lgp-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px var(--lgp-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lgp-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--lgp-shadow-medium);
}

.lgp-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.lgp-stat-value {
    font-family: var(--lgp-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lgp-tube-red);
    margin-bottom: 0.25rem;
}

.lgp-stat-label {
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Games Section */
.lgp-games {
    padding: var(--lgp-section-padding) 0;
}

.lgp-games-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-games-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lgp-game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--lgp-shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lgp-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--lgp-shadow-medium);
}

.lgp-game-visual {
    background: linear-gradient(135deg, var(--lgp-line-teal) 0%, var(--lgp-river-blue) 100%);
    position: relative;
    overflow: hidden;
}

.lgp-game-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lgp-game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lgp-game-placeholder-icon {
    font-size: 8rem;
    opacity: 0.3;
}

.lgp-game-placeholder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 124, 120, 0.2) 0%, rgba(46, 91, 154, 0.2) 100%);
}

.lgp-game-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--lgp-brass);
    color: white;
    font-family: var(--lgp-font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lgp-game-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.lgp-game-category {
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-line-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.lgp-game-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lgp-game-description {
    color: var(--lgp-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.lgp-game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lgp-game-feature {
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: var(--lgp-station);
    border-radius: 6px;
    color: var(--lgp-muted);
}

.lgp-btn-game {
    align-self: flex-start;
}

/* Advantages Section */
.lgp-advantages {
    padding: var(--lgp-section-padding) 0;
    background: linear-gradient(180deg, var(--lgp-station) 0%, var(--lgp-oyster) 100%);
}

.lgp-advantages-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lgp-advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--lgp-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lgp-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--lgp-shadow-medium);
}

.lgp-advantage-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lgp-tube-red) 0%, #b83530 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lgp-advantage-icon {
    font-size: 1.75rem;
}

.lgp-advantage-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.lgp-advantage-description {
    color: var(--lgp-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Contact CTA Section */
.lgp-contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--lgp-ink) 0%, #2a2e38 100%);
    color: var(--lgp-oyster);
}

.lgp-contact-cta-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.lgp-contact-cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lgp-contact-cta-title {
    color: var(--lgp-oyster);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lgp-contact-cta-text {
    color: var(--lgp-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Join CTA Section */
.lgp-join-cta {
    padding: var(--lgp-section-padding) 0;
    background: linear-gradient(135deg, var(--lgp-station) 0%, var(--lgp-oyster) 100%);
}

.lgp-join-cta-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.lgp-join-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lgp-join-cta-text {
    font-size: 1.125rem;
    color: var(--lgp-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.lgp-join-cta-actions {
    display: flex;
    justify-content: center;
}

/* Page Header */
.lgp-page-header {
    padding: calc(80px + 4rem) 0 4rem;
    background: linear-gradient(135deg, var(--lgp-station) 0%, var(--lgp-oyster) 100%);
}

.lgp-page-header-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-page-header-content {
    text-align: center;
}

.lgp-page-header-tag {
    display: inline-block;
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-tube-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.lgp-page-header-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.lgp-page-header-subtitle {
    font-size: 1.125rem;
    color: var(--lgp-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.lgp-contact-section {
    padding: var(--lgp-section-padding) 0;
}

.lgp-contact-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.lgp-contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lgp-contact-info-text {
    color: var(--lgp-muted);
    margin-bottom: 2rem;
}

.lgp-contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--lgp-shadow-soft);
    margin-bottom: 1.5rem;
}

.lgp-contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lgp-contact-info-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lgp-tube-red) 0%, #b83530 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lgp-contact-info-icon {
    font-size: 1.25rem;
}

.lgp-contact-info-label {
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-tube-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.lgp-contact-info-value {
    color: var(--lgp-muted);
    font-size: 0.9375rem;
}

.lgp-contact-hours {
    background: var(--lgp-station);
    padding: 1.5rem;
    border-radius: 12px;
}

.lgp-contact-hours-title {
    font-family: var(--lgp-font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.lgp-contact-hours-text {
    color: var(--lgp-muted);
    font-size: 0.9375rem;
}

/* Contact Form */
.lgp-contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--lgp-shadow-soft);
}

.lgp-contact-form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.lgp-contact-form-text {
    color: var(--lgp-muted);
    margin-bottom: 2rem;
}

.lgp-form-group {
    margin-bottom: 1.5rem;
}

.lgp-form-label {
    display: block;
    font-family: var(--lgp-font-mono);
    font-size: 0.75rem;
    color: var(--lgp-tube-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.lgp-form-input,
.lgp-form-select,
.lgp-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--lgp-font-body);
    font-size: 1rem;
    color: var(--lgp-ink);
    background: var(--lgp-oyster);
    border: 2px solid var(--lgp-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lgp-form-input:focus,
.lgp-form-select:focus,
.lgp-form-textarea:focus {
    outline: none;
    border-color: var(--lgp-tube-red);
    background: white;
}

.lgp-form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Game Page */
.lgp-game-page {
    padding-top: 80px;
}

.lgp-game-section {
    padding: 2rem 0 var(--lgp-section-padding);
    background: linear-gradient(180deg, var(--lgp-station) 0%, var(--lgp-oyster) 100%);
}

.lgp-game-header {
    padding: 2rem 0;
}

.lgp-game-header-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-game-breadcrumb {
    font-family: var(--lgp-font-mono);
    font-size: 0.8125rem;
    color: var(--lgp-muted);
    margin-bottom: 1rem;
}

.lgp-breadcrumb-link {
    color: var(--lgp-tube-red);
    text-decoration: none;
}

.lgp-breadcrumb-separator {
    margin: 0 0.5rem;
}

.lgp-breadcrumb-current {
    color: var(--lgp-muted);
}

.lgp-game-page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.lgp-game-page-subtitle {
    color: var(--lgp-muted);
    font-size: 1.0625rem;
}

.lgp-game-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-game-frame-wrapper {
    background: var(--lgp-ink);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 25px 60px var(--lgp-shadow-medium);
    margin-bottom: 2rem;
}

.lgp-game-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.lgp-game-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lgp-game-info-panel {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.lgp-game-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--lgp-shadow-soft);
}

.lgp-game-info-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.lgp-game-info-description {
    color: var(--lgp-muted);
    margin-bottom: 1.5rem;
}

.lgp-game-info-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lgp-game-info-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lgp-game-info-feature-icon {
    font-size: 1.25rem;
}

.lgp-game-info-feature-text {
    color: var(--lgp-muted);
}

.lgp-game-info-notice {
    background: linear-gradient(135deg, var(--lgp-line-teal) 0%, var(--lgp-river-blue) 100%);
    color: white;
}

.lgp-game-notice-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lgp-game-notice-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.lgp-game-notice-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.lgp-more-games {
    padding: 4rem 0;
    background: var(--lgp-oyster);
}

.lgp-more-games-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.lgp-more-games-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lgp-more-games-text {
    color: var(--lgp-muted);
    margin-bottom: 2rem;
}

/* Legal Content */
.lgp-legal-content {
    padding: var(--lgp-section-padding) 0;
}

.lgp-legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-legal-text {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--lgp-shadow-soft);
}

.lgp-legal-updated {
    font-family: var(--lgp-font-mono);
    font-size: 0.8125rem;
    color: var(--lgp-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--lgp-border);
}

.lgp-legal-heading {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.lgp-legal-heading:first-child {
    margin-top: 0;
}

.lgp-legal-subheading {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.lgp-legal-paragraph {
    color: var(--lgp-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lgp-legal-list {
    color: var(--lgp-muted);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.lgp-legal-list li {
    margin-bottom: 0.5rem;
}

.lgp-legal-contact {
    font-family: var(--lgp-font-mono);
    color: var(--lgp-tube-red);
    font-size: 0.9375rem;
}

.lgp-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.lgp-legal-table th,
.lgp-legal-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lgp-border);
}

.lgp-legal-table th {
    font-family: var(--lgp-font-heading);
    font-weight: 600;
    background: var(--lgp-station);
}

.lgp-legal-table td {
    color: var(--lgp-muted);
}

/* Footer */
.lgp-footer {
    background: var(--lgp-ink);
    color: var(--lgp-oyster);
    padding: 4rem 0 2rem;
}

.lgp-footer.lgp-footer-compact {
    padding: 3rem 0 2rem;
}

.lgp-footer-container {
    max-width: var(--lgp-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.lgp-disclaimer-box {
    background: rgba(214, 64, 58, 0.1);
    border: 1px solid var(--lgp-tube-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
}

.lgp-disclaimer-box.lgp-disclaimer-box-compact {
    padding: 1rem;
    margin-bottom: 2rem;
}

.lgp-disclaimer-icon {
    width: 50px;
    height: 50px;
    background: var(--lgp-tube-red);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lgp-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lgp-disclaimer-title {
    color: var(--lgp-tube-red);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.lgp-disclaimer-text {
    color: var(--lgp-muted);
    font-size: 0.8125rem;
    line-height: 1.6;
}

.lgp-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.lgp-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lgp-footer-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.lgp-footer-logo-text {
    font-family: var(--lgp-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lgp-oyster);
}

.lgp-footer-logo-accent {
    color: var(--lgp-tube-red);
}

.lgp-footer-description {
    color: var(--lgp-muted);
    font-size: 0.9375rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.lgp-footer-title {
    font-family: var(--lgp-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lgp-oyster);
    margin-bottom: 1rem;
}

.lgp-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lgp-footer-link {
    color: var(--lgp-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.lgp-footer-link:hover,
.lgp-footer-link-active {
    color: var(--lgp-tube-red);
}

.lgp-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lgp-footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.lgp-footer-contact-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.lgp-footer-contact-text {
    color: var(--lgp-muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

.lgp-responsible-gaming {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.lgp-responsible-title {
    font-family: var(--lgp-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lgp-oyster);
    margin-bottom: 0.75rem;
}

.lgp-responsible-text {
    color: var(--lgp-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.lgp-responsible-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lgp-responsible-link {
    color: var(--lgp-line-teal);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.lgp-responsible-link:hover {
    color: var(--lgp-tube-red);
}

.lgp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.lgp-footer-copyright {
    color: var(--lgp-muted);
    font-size: 0.8125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lgp-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lgp-hero-actions {
        justify-content: center;
    }

    .lgp-hero-visual {
        order: -1;
    }

    .lgp-about-content {
        grid-template-columns: 1fr;
    }

    .lgp-game-card {
        grid-template-columns: 1fr;
    }

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

    .lgp-contact-grid {
        grid-template-columns: 1fr;
    }

    .lgp-game-info-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .lgp-nav-toggle {
        display: flex;
    }

    .lgp-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--lgp-oyster);
        padding: 1rem 2rem;
        gap: 1rem;
        border-top: 1px solid var(--lgp-border);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .lgp-nav-menu.lgp-nav-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .lgp-nav-cta {
        padding: 0.75rem 1.5rem;
    }

    .lgp-advantages-grid {
        grid-template-columns: 1fr;
    }

    .lgp-about-stats {
        grid-template-columns: 1fr;
    }

    .lgp-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lgp-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .lgp-cookie-buttons {
        margin: 0;
        justify-content: center;
    }

    .lgp-disclaimer-box {
        flex-direction: column;
    }

    .lgp-legal-text {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .lgp-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .lgp-btn {
        width: 100%;
        justify-content: center;
    }

    .lgp-age-modal-content {
        padding: 2rem 1.5rem;
    }

    .lgp-legal-table {
        font-size: 0.8125rem;
    }

    .lgp-legal-table th,
    .lgp-legal-table td {
        padding: 0.5rem;
    }
}

/* Animations */
@keyframes lgp-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lgp-animate-in {
    animation: lgp-fade-in 0.6s ease forwards;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--lgp-tube-red);
    color: white;
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--lgp-tube-red);
    outline-offset: 2px;
}
