/* Base Styles and Variables */
:root {
  --primary-color: #007bff;             /* Vivid Electric Blue */
  --primary-light: #33aaff;             /* Lighter Sky Blue */
  --primary-dark: #0056b3;              /* Deep Royal Blue */

  --secondary-color: #0d1b2a;           /* Midnight Navy */
  --secondary-light: #1b263b;           /* Cool Slate */
  --secondary-dark: #081120;            /* Almost Black Blue */

  --accent-color: #00e0ff;              /* Neon Aqua Blue */
  --accent-light: #66f2ff;              /* Soft Neon Cyan */
  --accent-dark: #009db3;               /* Ocean Teal */

  --text-light: #e6f1ff;                /* Icy White-Blue */
  --text-dark: #0a0a0a;                 /* Black Text */

  --danger-color: #ff4d6d;              /* Coral Alert Red (for errors only) */
  --success-color: #00ffcc;             /* Minty Aqua Green */
  --warning-color: #3399ff;             /* Alert Blue (replacing yellow/orange) */

  --border-radius: 8px;
  --card-border-radius: 12px;
  --transition-speed: 0.3s;

  --box-shadow: 0 4px 20px rgba(0, 170, 255, 0.4);   /* Soft blue glow */
  --card-glow: 0 0 15px rgba(0, 224, 255, 0.4);      /* Glowing aqua */
  --card-glow-hover: 0 0 25px rgba(0, 224, 255, 0.7);/* Brighter on hover */

}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
    background-color: var(--secondary-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-light);
}

button {
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

section {
    padding: 4rem 2rem;
}

.section-tagline {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

/* Particle Container */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#particles-js {
    width: 100%;
    height: 100%;
}

/* Header */
header {
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

/* .flame-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 2rem;
} */

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/home.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

/* Games Section */
.games {
    background-color: var(--secondary-dark);
    position: relative;
}

.games h3 {
    align-items: center;
    text-align: center;
    font-size: 50px;
}

.games p {
    align-items: center;
    text-align: center;
}

.whats-hot h3 {
    align-items: center;
    text-align: center;
    font-size: 50px;
}

.whats-hot p {
    align-items: center;
    text-align: center;
}

.testimonials h3 {
    align-items: center;
    text-align: center;
    font-size: 50px;
}

.testimonials p {
    align-items: center;
    text-align: center;
}



.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-glow-hover);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* .flame-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 69, 0, 0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.5s ease;
} */

/* .game-card:hover .flame-effect {
    transform: translateY(0);
} */

.game-info {
    padding: 1.5rem;
    text-align: center;
}

.game-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.play-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.play-button:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

/* What's Hot Section */
.whats-hot {
    background-color: var(--secondary-light);
    position: relative;
}

.hot-games-carousel {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hot-games-carousel::-webkit-scrollbar {
    display: none;
}

.hot-game {
    min-width: 280px;
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.hot-game:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-glow-hover);
    border-color: var(--primary-color);
}

.hot-game-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.hot-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hot-game:hover .hot-game-image img {
    transform: scale(1.1);
}

/* .flame-trail {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
} */

/* .hot-game:hover .flame-trail {
    left: 100%;
} */

.hot-game h3 {
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background-color: var(--secondary-dark);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-dark);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-glow-hover);
    border-color: var(--primary-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.quote::before, .quote::after {
    content: '"';
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.5;
}

.name {
    font-weight: 600;
    color: var(--primary-light);
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    border-top: 1px solid rgba(255, 69, 0, 0.3);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    transition: color var(--transition-speed) ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2.5rem;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body h3 {
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.modal-button {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.modal-button:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

/* Game Page Styles */
.game-page {
    background-color: var(--secondary-dark);
}

.game-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    background-color: var(--secondary-light);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.back-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.game-container {
    width: 100%;
    background-color: var(--secondary-dark);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.game-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.game-description {
    margin-bottom: 3rem;
}

.game-description h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.game-description h2::after {
    left: 0;
    transform: none;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 69, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--card-glow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.more-games h2 {
    text-align: left;
}

.more-games h2::after {
    left: 0;
    transform: none;
}

.more-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.more-game-card {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.more-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-glow);
    border-color: var(--primary-color);
}

.more-game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.more-game-card h3 {
    padding: 0.8rem;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.more-game-card .play-button {
    display: block;
    margin: 0 0.8rem 0.8rem;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.form-group input:focus ~ .form-border,
.form-group textarea:focus ~ .form-border {
    width: 100%;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.submit-button:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 69, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--card-glow);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card .social-icons {
    justify-content: center;
    margin-top: 0.5rem;
}

/* Legal Page Styles */
.legal-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header p {
    color: var(--accent-color);
}

.legal-container {
    background: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-container h2::after {
    display: none;
}

.legal-container p, 
.legal-container ul {
    margin-bottom: 1.5rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--secondary-dark);
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid var(--primary-color);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-speed) ease;
        z-index: -1;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        z-index: 100;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .game-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .game-container iframe {
        height: 400px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .legal-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .game-container iframe {
        height: 300px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}