.logo-font { 
    font-family: 'Trebuchet MS', Arial, sans-serif; 
}

.content-font { 
    font-family: Arial, sans-serif; 
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.gaming-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.play-btn {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.hero-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.progress-step {
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.story-text {
    line-height: 1.8;
    font-size: 1.125rem;
}

.quote-style {
    border-left: 4px solid #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.team-card {
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

#gameCanvas {
    border: 3px solid #fbbf24;
    border-radius: 12px;
    background: linear-gradient(180deg, #001122 0%, #000033 50%, #000000 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#gameUI {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #fbbf24;
}

#gameOver {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

#instructions {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid #667eea;
}

.game-btn {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.game-container {
    position: relative;
    display: inline-block;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: #fbbf24;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: #60a5fa;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-text {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.highlight-box {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-box {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid #60a5fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: #fbbf24;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.terms-section h3 {
    color: #60a5fa;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-text {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.numbered-list {
    counter-reset: section-counter;
}

.numbered-list > li {
    counter-increment: section-counter;
    margin-bottom: 0.5rem;
}

.numbered-list > li::before {
    content: counter(section-counter) ". ";
    color: #fbbf24;
    font-weight: bold;
}