/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate Modal */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    border: 3px solid #dc2626;
}

.badge-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.age-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.badge-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid #eab308;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.age-text {
    font-size: 24px;
    font-weight: 900;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.verification-title {
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
}

.age-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.fire-btn, .smoke-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fire-btn {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.fire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.smoke-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.smoke-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.age-footer p {
    font-size: 14px;
    color: #9ca3af;
}

/* Main Content */
.main-content {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
.firefighter-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, white 0%, #fef2f2 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    border-bottom: 3px solid #dc2626;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
    border: 3px solid #eab308;
}

.badge-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fire-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #ea580c;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item:hover {
    color: #dc2626;
}

.nav-item:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #dc2626;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.fire-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.5);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 50%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 30%; left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { top: 70%; left: 30%; animation-delay: 3s; }
.particle:nth-child(5) { top: 80%; left: 70%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border: 2px solid #eab308;
    animation: glow 3s infinite ease-in-out;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.title-line {
    display: block;
}

.title-line:first-child {
    color: #374151;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
}

.fire-gradient {
    background: linear-gradient(135deg, #dc2626, #ea580c, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fire-cta-button {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border: 3px solid #eab308;
}

.fire-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.btn-flame {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.fire-cta-button:hover .btn-flame {
    opacity: 0.3;
    animation: flame-pulse 1s infinite;
}

@keyframes flame-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

/* Overview Section */
.overview-section {
    padding: 120px 0;
    background: white;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-visual {
    position: relative;
}

.fire-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    border: 4px solid #dc2626;
}

.fire-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: frame-glow 3s infinite ease-in-out;
}

@keyframes frame-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.overview-content {
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    margin-bottom: 30px;
    border-radius: 2px;
}

.section-text {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.features-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 80px;
    font-family: 'Roboto', sans-serif;
}

.fire-accent {
    color: #dc2626;
    margin: 0 20px;
    font-size: 40px;
    vertical-align: middle;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    border: 2px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.card-header {
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* Game Preview Section */
.preview-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.preview-section .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.game-showcase {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.game-screen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.2);
    border: 4px solid #dc2626;
}

.game-screen img {
    width: 100%;
    height: auto;
    display: block;
}

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

.game-screen:hover .play-overlay {
    opacity: 1;
}

.fire-play-btn {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.4);
}

.fire-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(234, 179, 8, 0.6);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.card-header {
    margin-bottom: 25px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    border-radius: 2px;
}

.about-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.fire-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.fire-link:hover {
    color: #ea580c;
}

.fire-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fire-link:hover::after {
    transform: scaleX(1);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 120px 0;
    background: white;
}

.disclaimer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.disclaimer-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fef2f2;
    border-radius: 15px;
    border-left: 5px solid #dc2626;
    transition: all 0.3s ease;
}

.disclaimer-point:hover {
    background: #fecaca;
    transform: translateX(10px);
}

.point-icon {
    font-size: 24px;
    min-width: 30px;
}

.disclaimer-point p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-visual {
    position: relative;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.1);
    border: 2px solid #f3f4f6;
}

.form-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.1);
}

.fire-submit-btn {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.fire-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Badges Section */
.badges-section {
    padding: 80px 0;
    background: white;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: block;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.badge-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.badge-glow {
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fd5858, #b10008);
    border: 2px solid #fecaca;
}

.badge-glow img {
    max-height: 60px;
    width: auto;
}

/* Footer */
.firefighter-footer {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-stripe {
    height: 6px;
    background: linear-gradient(90deg, #dc2626, #ea580c, #eab308);
    width: 100%;
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 32px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    max-width: 500px;
}

.footer-newsletter h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #4b5563;
    border-radius: 10px;
    background: #374151;
    color: white;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #dc2626;
}

.newsletter-btn {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.footer-links {
    border-top: 2px solid #4b5563;
    padding-top: 40px;
}

.links-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.links-grid a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.links-grid a:hover {
    color: #dc2626;
}

.links-grid a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.links-grid a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    border-top: 2px solid #4b5563;
    padding: 30px 0;
}

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

.emergency-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .overview-layout,
    .disclaimer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .emergency-line {
        width: 100px;
    }
    
    .hero-section {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .contact-form {
        padding: 30px;
        margin: 0 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .fire-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .feature-card,
    .about-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-title {
        font-size: 36px;
    }
}


.content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #ff5e00;
}

.content-block p,
ul {
    color: rgba(0, 0, 0, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}
