/* ===== VINTAGE MARITIME PORTFOLIO - CLEAN & SOPHISTICATED ===== */

:root {
    /* Luxury Navy & White Color Palette */
    --navy-deep: #0f1419;
    --navy-rich: #1a2332;
    --navy-medium: #2d4263;
    --navy-light: #3e5b8a;
    --white: #ffffff;
    --cream: #fefefe;
    --silver: #f8fafc;
    --gold: #d4af37;
    --coral: #ff6b6b;
    
    /* Neutral Grays */
    --charcoal: #1a202c;
    --gray-800: #2d3748;
    --gray-600: #4a5568;
    --gray-400: #a0aec0;
    --gray-200: #e2e8f0;
    --gray-100: #f7fafc;
    
    /* Semantic Colors */
    --success: #38a169;
    --warning: --gold;
    --danger: var(--coral);
    --info: var(--navy-medium);
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', Monaco, monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.4;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;
    
    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    
    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(29, 53, 87, 0.1);
    --shadow-md: 0 4px 12px rgba(29, 53, 87, 0.15);
    --shadow-lg: 0 8px 24px rgba(29, 53, 87, 0.2);
    --shadow-xl: 0 16px 40px rgba(29, 53, 87, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 2rem;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--navy-deep);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-top: 0;
}

p {
    margin-top: 0;
    margin-bottom: var(--space-4);
}

a {
    color: inherit;
    text-decoration: inherit;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-20) 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 20, 25, 0.06);
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: var(--space-3) 0;
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--navy-deep);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: var(--space-2) 0;
}

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

.nav-link:hover {
    color: var(--navy-deep);
}

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

.cta-nav {
    background: var(--coral);
    color: var(--white) !important;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
}

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

.cta-nav:hover {
    background: #d63947;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--white);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(80px + var(--space-16));
    padding-bottom: var(--space-16);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--navy-deep);
    margin-bottom: var(--space-6);
}

.hero-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.hero-cta-group {
    margin-bottom: var(--space-12);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    font-size: var(--text-2xl);
}

.cta-hint {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-top: var(--space-2);
    font-style: italic;
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--navy-deep);
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--gray-600);
}

/* Game Preview Card */
.hero-right {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.game-preview {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--gray-200);
}

.preview-badge {
    background: #10b981;
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
}

.preview-time {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.preview-visual {
    height: 300px;
    background: linear-gradient(180deg, #87ceeb 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sailing-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 0;
    left: 0;
    border-radius: 100% 100% 0 0;
}

.wave-1 {
    animation: wave 8s linear infinite;
    bottom: 0;
}

.wave-2 {
    animation: wave 10s linear infinite;
    bottom: 10px;
    opacity: 0.5;
    animation-delay: -2s;
}

.wave-3 {
    animation: wave 12s linear infinite;
    bottom: 20px;
    opacity: 0.3;
    animation-delay: -4s;
}

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

.boat {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    animation: sail 4s ease-in-out infinite;
}

@keyframes sail {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
    50% { transform: translate(-50%, -55%) rotate(5deg); }
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.preview-visual:hover .preview-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.preview-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.preview-play:hover {
    transform: scale(1.1);
    background: var(--white);
}

.play-icon {
    font-size: 30px;
    color: var(--navy-deep);
    margin-left: 5px;
}

.preview-footer {
    padding: var(--space-4);
    text-align: center;
}

.preview-footer p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

.reward-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

/* ===== SECTION HEADERS ===== */
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: var(--font-bold);
    color: var(--navy-deep);
    text-align: center;
    margin-bottom: var(--space-12);
}

/* ===== STORY SECTION ===== */
.story-section {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--space-20) 0;
}

.story-section .section-title {
    color: var(--white);
}

.achievements {
    display: grid;
    gap: var(--space-8);
}

.achievement {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.achievement-icon {
    font-size: var(--text-5xl);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-title h3 {
    font-size: var(--text-xl);
    color: var(--navy-deep);
}

.achievement-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.outcome {
    background: var(--white);
    color: var(--success);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 161, 105, 0.2);
}

/* ===== GAME SECTION ===== */
.game-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    color: var(--white);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.game-section .section-title {
    color: var(--white);
}

.game-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.game-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

.game-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-8);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

#gameCanvas {
    width: 100%;
    height: auto;
    max-width: 800px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    background: linear-gradient(to bottom, #87ceeb 0%, var(--navy-medium) 100%);
}

.game-ui {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.stat-display {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
}

.stat-icon {
    font-size: var(--text-lg);
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.game-button {
    padding: var(--space-3) var(--space-4);
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-button:hover:not(:disabled) {
    background: #d63947;
    transform: translateY(-1px);
}

.game-button:disabled {
    background: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.game-instructions {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}

.game-instructions p {
    margin-bottom: var(--space-2);
}

.game-instructions p:last-child {
    margin-bottom: 0;
}

.game-completion {
    background: linear-gradient(135deg, var(--success), #2d7d44);
    color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    margin-top: var(--space-8);
}

.completion-content h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.completion-reward {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin: var(--space-6) 0;
}

.reward-code {
    background: var(--white);
    color: var(--success);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: var(--font-extrabold);
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    display: inline-block;
    margin: var(--space-2) 0;
}

/* ===== WORK SECTION ===== */
.work-section {
    background: var(--white);
    padding: var(--space-20) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card.featured {
    border-color: var(--gold);
    background: var(--silver);
}

.service-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
}

.service-card h3 {
    font-size: var(--text-xl);
    color: var(--navy-deep);
    margin-bottom: var(--space-4);
}

.service-card p {
    color: var(--gray-600);
}

/* ===== CONNECT SECTION ===== */
.connect-section {
    background: var(--silver);
    padding: var(--space-20) 0;
}

.connect-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.connect-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
}

.connect-form-container {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: var(--space-6);
}

.form-header h3 {
    font-size: var(--text-xl);
    color: var(--navy-deep);
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: var(--font-semibold);
    color: var(--navy-deep);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background: var(--white);
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-medium);
}

.goal-group {
    background: var(--silver);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.discount-code {
    background: linear-gradient(135deg, var(--success), #2d7d44);
    color: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.discount-code label {
    color: var(--white);
}

.discount-code input {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.discount-code input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.discount-code small {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-xs);
    display: block;
    margin-top: var(--space-2);
}

.form-submit {
    margin-top: var(--space-4);
}

.form-note {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-align: center;
    margin-top: var(--space-4);
    font-style: italic;
}

.connect-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.connect-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.connect-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.connect-method:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: var(--text-2xl);
    width: 50px;
    text-align: center;
}

.method-content h4 {
    font-weight: var(--font-semibold);
    color: var(--navy-deep);
    margin-bottom: var(--space-1);
}

.method-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    margin: 0;
}

.method-content small {
    color: var(--gray-400);
    font-size: var(--text-xs);
}

.method-content a {
    color: var(--navy-medium);
    text-decoration: none;
}

.method-content a:hover {
    text-decoration: underline;
}

.personal-note-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
}

.signature {
    font-style: italic;
    color: var(--navy-medium);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--space-8) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
}

.footer-left p,
.footer-right p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

.footer-right {
    text-align: right;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-container {
        grid-template-columns: 1fr;
    }
    
    .connect-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav-menu {
        gap: var(--space-4);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .hero-section {
        padding-top: calc(60px + var(--space-12));
        padding-bottom: var(--space-12);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .game-container {
        padding: var(--space-4);
    }
    
    .connect-form-container {
        padding: var(--space-6);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: var(--font-bold); }
.font-semibold { font-weight: var(--font-semibold); }
.font-medium { font-weight: var(--font-medium); }

.bg-white { background-color: var(--white); }
.bg-cream { background-color: var(--cream); }
.bg-navy { background-color: var(--navy-deep); }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}