:root { --primary-color: #C0392B; --secondary-color: #27AE60; --accent-color: #F1C40F; --background-light: #F8F9F9; --text-color: #333; --text-light: #fff; --border-color: #EAECEE; --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05); } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--background-light); color: var(--text-color); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } .section { padding: 4rem 0; text-align: center; } .section:nth-of-type(odd) { background-color: #F8F9F9; } h1, h2, h3, h4 { font-family: 'Georgia', serif; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--primary-color); } h1 { font-size: 2.5rem; } h2 { font-size: 2rem; margin-bottom: 2.5rem; } h3 { font-size: 1.5rem; } p { margin-bottom: 1.5rem; font-size: 1rem; } a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; } a:hover { color: var(--accent-color); } .btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; } .btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .btn-primary { background-color: var(--primary-color); color: var(--text-light); border: 2px solid var(--primary-color); } .btn-primary:hover { background-color: #A93226; border-color: #A93226; } .btn-secondary { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); } .btn-secondary:hover { background-color: var(--primary-color); color: var(--text-light); } .btn-to-top { position: fixed; bottom: 2rem; right: 2rem; background-color: var(--secondary-color); color: var(--text-light); border: none; padding: 0.8rem; border-radius: 50%; box-shadow: var(--shadow-light); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; cursor: pointer; } .btn-to-top.show { opacity: 1; visibility: visible; } .btn-to-top i { color: white; } .fas, .fab { color: var(--secondary-color); } .header { position: sticky; top: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px); z-index: 1000; transition: box-shadow 0.3s ease; padding: 1rem 0; } .header.scrolled { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } .logo { font-size: 28px; font-weight: 700; } .nav { display: none; } .nav-list { display: flex; list-style: none; } .nav-list a { color: var(--text-color); font-weight: 500; padding: 0.5rem 1rem; position: relative; } .nav-list a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 50%; background-color: var(--primary-color); transition: width 0.3s ease, left 0.3s ease; } .nav-list a:hover::after { width: 100%; left: 0; } .header-cta-social { display: flex; align-items: center; gap: 1rem; } .social-icons a { font-size: 1.2rem; margin-left: 0.75rem; color: var(--text-color); transition: color 0.3s ease; } .social-icons a:hover { color: var(--accent-color); } .hero-section { background: linear-gradient(to bottom, var(--background-light), #fff); padding: 6rem 1.5rem; text-align: center; overflow: hidden; } .hero-content { display: flex; flex-direction: column-reverse; align-items: center; gap: 3rem; max-width: 1200px; margin: 0 auto; } .hero-text { max-width: 600px; text-align: center; } .hero-text h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; } .hero-text .subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: #555; margin-bottom: 2rem; } .hero-buttons { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; } .hero-features { display: flex; justify-content: center; gap: 2rem; font-size: 0.9rem; color: #777; } .hero-features span i { color: var(--primary-color); } .hero-image-container { width: 100%; max-width: 500px; animation: fadeIn 2s ease-in-out; } .hero-image { width: 100%; height: auto; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15)); } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .about-section .features-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; } .about-section .feature-item { text-align: center; } .about-section .feature-item i { font-size: 3rem; margin-bottom: 1rem; color: var(--primary-color); } .how-to-play-section { background-color: #fff; } .how-to-play-section .step-list { display: grid; gap: 2rem; } .how-to-play-section .step-item { text-align: center; background-color: #F8F9F9; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-light); transition: transform 0.3s ease; } .how-to-play-section .step-item:hover { transform: translateY(-5px); } .how-to-play-section .step-item i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 1rem; } .features-section .features-grid { display: grid; gap: 2rem; } .features-section .feature-card { background-color: #fff; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-light); text-align: center; transition: transform 0.3s ease; } .features-section .feature-card:hover { transform: scale(1.03); } .features-section .feature-card i { font-size: 3rem; color: var(--accent-color); margin-bottom: 1rem; } .event-section { background-color: #fff; } .countdown-container, .timeline-container { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 1.2rem; font-weight: bold; margin-bottom: 1.5rem; } .countdown-container i, .timeline-container i { font-size: 2rem; color: var(--primary-color); } #countdown { font-size: 1.5rem; color: var(--secondary-color); } #countdown span { font-family: monospace; font-size: 2rem; } .gallery-section { background-color: #F8F9F9; } .gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); } .gallery-grid a { display: block; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow-light); } .gallery-image { width: 100%; height: auto; display: block; transition: transform 0.3s ease; } .gallery-grid a:hover .gallery-image { transform: scale(1.05); } .faq-section { background-color: #fff; } .faq-list { max-width: 800px; margin: 0 auto; text-align: left; } .faq-item { border-bottom: 1px solid var(--border-color); padding: 1rem 0; } .faq-item summary { font-weight: bold; cursor: pointer; padding: 1rem 0; list-style: none; position: relative; } .faq-item summary::before { content: '+'; font-size: 1.5rem; font-weight: normal; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); transition: transform 0.3s ease; } .faq-item[open] summary::before { content: '-'; } .faq-item p { padding: 0.5rem 1rem 1rem; color: #555; } .responsible-gaming-section { background-color: #fff; text-align: left; } .responsible-gaming-section .container { max-width: 800px; } .disclaimer-block { background-color: #ffebee; border-left: 5px solid var(--primary-color); padding: 1rem 1.5rem; margin-bottom: 2rem; } .disclaimer-heading { font-weight: bold; color: var(--primary-color); } .responsible-gaming-section ul { list-style-type: '🎄'; padding-left: 1.5rem; margin-bottom: 1.5rem; } .responsible-gaming-section li { margin-bottom: 0.5rem; } .support-links { list-style: none; padding: 0; } .contact-section { background-color: #F8F9F9; } .contact-grid { display: grid; gap: 2rem; text-align: left; } .contact-form { background-color: #fff; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-light); } .form-group { margin-bottom: 1rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: bold; } .form-group input, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary-color); } .checkbox-group { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; } .checkbox-group input { width: auto; } .contact-info-map { background-color: #fff; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-light); } .contact-info p { margin-bottom: 0.5rem; } .contact-info i { color: var(--secondary-color); margin-right: 0.5rem; } .map-container { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; } .map-image { width: 100%; height: auto; display: block; } .form-status { margin-top: 1rem; font-weight: bold; } .form-status.success { color: var(--secondary-color); } .form-status.error { color: var(--primary-color); } .error-message { font-size: 0.8rem; color: var(--primary-color); display: none; margin-top: 0.25rem; } input:invalid:not(:focus):not(:placeholder-shown) { border-color: var(--primary-color); } input:invalid:not(:focus):not(:placeholder-shown)~.error-message { display: block; } .footer { background-color: var(--primary-color); color: var(--text-light); padding: 3rem 1.5rem 1rem; margin-top: auto; } .footer a { color: var(--text-light); } .footer a:hover { color: var(--accent-color); } .footer-top { display: grid; gap: 2rem; text-align: center; } .footer-logo-disclaimer img { height: 40px; margin-bottom: 1rem; } .footer-nav, .footer-legal, .footer-social { text-align: center; } .footer-nav ul, .footer-legal ul { list-style: none; padding: 0; margin-top: 0.5rem; } .footer-nav li, .footer-legal li { margin-bottom: 0.5rem; } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; } .age-disclaimer { font-size: 0.8rem; margin-top: 0.5rem; } .cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px); box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); padding: 1rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; z-index: 1000; } .cookie-banner p { margin: 0; } .cookie-buttons { display: flex; gap: 1rem; } .cookie-link { color: var(--primary-color); font-weight: bold; } @media (min-width: 768px) { h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; } .header-container { padding: 0 2rem; } .nav { display: block; } .header-cta-social { justify-content: flex-end; } .hero-content { flex-direction: row; text-align: left; } .hero-text { text-align: left; } .hero-buttons { justify-content: flex-start; } .hero-features { justify-content: flex-start; } .about-section .features-list { flex-direction: row; gap: 2rem; } .how-to-play-section .step-list { grid-template-columns: repeat(2, 1fr); } .features-section .features-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid { grid-template-columns: repeat(3, 1fr); } .contact-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; text-align: left; } .footer-logo-disclaimer, .footer-nav, .footer-legal, .footer-social { text-align: left; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; } } @media (min-width: 1024px) { h1 { font-size: 4rem; } h2 { font-size: 3rem; } .how-to-play-section .step-list { grid-template-columns: repeat(4, 1fr); } .features-section .features-grid { grid-template-columns: repeat(3, 1fr); } } .footer-responsibl { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; } .footer-responsibl img { width: 100%; margin: 0 15px; max-width: 150px; padding: 15px; border-radius: 10px; background: #fc9999; } .legal-content { background-color: var(--container-bg-color); padding: 3rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); margin: 2rem 1rem; } .legal-content h1, .legal-content h2 { color: var(--primary-color); margin-bottom: 1rem; text-align: center; } .legal-content h1 { font-size: 2.5rem; } .legal-content h2 { font-size: 1.8rem; margin-top: 2.5rem; border-bottom: 2px solid var(--secondary-color); padding-bottom: 0.5rem; } .legal-content p, .legal-content ul { margin-bottom: 1.5rem; } .legal-content ul { list-style-type: none; padding-left: 0; } .legal-content li::before { content: "\2022"; color: var(--secondary-color); font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } .age-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); display: flex; align-items: center; justify-content: center; z-index: 9999; } .age-box { background: #fff; border: 4px solid #C0392B; border-radius: 10px; padding: 30px; text-align: center; max-width: 400px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); } .age-box h2 { color: #C0392B; margin-bottom: 15px; } .age-box p { margin-bottom: 25px; font-size: 16px; color: #333; } .age-box button { background: #C0392B; color: #fff; border: none; padding: 12px 25px; margin: 0 10px; font-size: 16px; cursor: pointer; border-radius: 5px; transition: background 0.3s; } .age-box button:hover { background: #a93226; }