/* MetroReelChronicles - Main Styles */

/* Base Styles */
:root {
    --primary-color: #7d1dff;
    --secondary-color: #00e5ff;
    --accent-color: #ff3e6a;
    --dark-bg: #0a0a12;
    --darker-bg: #05050a;
    --text-light: #ffffff;
    --text-dim: #9c9cb0;
    --movie-color: #ff4747;
    --dungeon-color: #5e17eb;
    --night-city-color: #00ccff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glow: 0 0 10px rgba(125, 29, 255, 0.6), 0 0 20px rgba(125, 29, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.metroreelchronicles-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Noise Overlay */
.metroreelchronicles-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgdmFsdWVzPSIwIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 10;
    opacity: 0.05;
}

/* Navbar */
.metroreelchronicles-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.95), rgba(10, 10, 18, 0.8) 60%, transparent);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.metroreelchronicles-navbar.metroreelchronicles-navbar-scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.metroreelchronicles-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.metroreelchronicles-logo-hexagon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s infinite alternate;
}

.metroreelchronicles-logo-hexagon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(125, 29, 255, 0.5));
}

.metroreelchronicles-logo-hexagon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(125, 29, 255, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.metroreelchronicles-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: all var(--transition-fast);
}

.metroreelchronicles-logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
}

.metroreelchronicles-nav-links {
    display: flex;
    gap: 2.5rem;
}

.metroreelchronicles-nav-item {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.metroreelchronicles-nav-text {
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.metroreelchronicles-nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

.metroreelchronicles-nav-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 29, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.metroreelchronicles-nav-item:hover:after {
    left: 100%;
}

.metroreelchronicles-nav-item:hover .metroreelchronicles-nav-text {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.metroreelchronicles-nav-item:hover .metroreelchronicles-nav-line,
.metroreelchronicles-nav-item.metroreelchronicles-active .metroreelchronicles-nav-line {
    width: 100%;
}

.metroreelchronicles-nav-item.metroreelchronicles-active .metroreelchronicles-nav-text {
    color: var(--secondary-color);
}

.metroreelchronicles-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.metroreelchronicles-nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

@keyframes pulse-glow {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

.metroreelchronicles-nav-items {
    display: flex;
    position: relative;
    background: rgba(20, 20, 35, 0.5);
    border-radius: 50px;
    padding: 0.5rem;
    margin: 0 auto;
}

.metroreelchronicles-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    color: var(--text-dim);
    z-index: 2;
}

.metroreelchronicles-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.metroreelchronicles-nav-icon svg {
    width: 18px;
    height: 18px;
    transition: all var(--transition-fast);
}

.metroreelchronicles-nav-text {
    transition: all var(--transition-fast);
}

.metroreelchronicles-nav-indicator {
    position: absolute;
    height: 80%;
    top: 10%;
    z-index: 1;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(125, 29, 255, 0.5);
}

.metroreelchronicles-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}
   
.metroreelchronicles-logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
    position: relative;
}

.metroreelchronicles-nav-links {
    display: flex;
    gap: 2rem;
}

.metroreelchronicles-nav-item {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
}

.metroreelchronicles-nav-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-fast);
}

.metroreelchronicles-nav-item:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.metroreelchronicles-nav-item:hover:after,
.metroreelchronicles-nav-item.metroreelchronicles-active:after {
    width: 100%;
}

.metroreelchronicles-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.metroreelchronicles-nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.metroreelchronicles-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.metroreelchronicles-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(125, 29, 255, 0.15), transparent 35%),
        radial-gradient(circle at 70% 50%, rgba(0, 229, 255, 0.15), transparent 35%),
        radial-gradient(circle at center, rgba(255, 62, 106, 0.08), transparent 40%);
    z-index: -1;
}

.metroreelchronicles-hero-backdrop:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--dark-bg) 80%);
}

.metroreelchronicles-hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.metroreelchronicles-hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.metroreelchronicles-glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(125, 29, 255, 0.7);
    animation: glitch 3s infinite;
}

.metroreelchronicles-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-dim);
}

.metroreelchronicles-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 15px rgba(125, 29, 255, 0.4);
    cursor: pointer;
}

.metroreelchronicles-button-text {
    position: relative;
    z-index: 2;
}

.metroreelchronicles-button-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: all 1s ease;
}

.metroreelchronicles-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(125, 29, 255, 0.6);
}

.metroreelchronicles-cta-button:hover .metroreelchronicles-button-glare {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Games Section */
.metroreelchronicles-games-section {
    padding: 8rem 5% 10rem;
    position: relative;
}

.metroreelchronicles-section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metroreelchronicles-games-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.metroreelchronicles-game-card {
    width: 330px;
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-slow);
}

.metroreelchronicles-game-card:nth-child(1) {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23300a0a"/><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>'), linear-gradient(45deg, #400000, #700000);
    border: 1px solid rgba(255, 71, 71, 0.3);
}

.metroreelchronicles-game-card:nth-child(2) {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23190046"/><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>'), linear-gradient(45deg, #2a0070, #4a00c0);
    border: 1px solid rgba(94, 23, 235, 0.3);
}

.metroreelchronicles-game-card:nth-child(3) {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23001824"/><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>'), linear-gradient(45deg, #003754, #005a8c);
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.metroreelchronicles-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    transition: all var(--transition-fast);
}

.metroreelchronicles-game-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-slow);
}

.metroreelchronicles-game-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-slow);
}

.metroreelchronicles-game-icon svg {
    width: 40px;
    height: 40px;
    transition: all var(--transition-slow);
}

.metroreelchronicles-game-card:nth-child(1) .metroreelchronicles-game-icon {
    color: var(--movie-color);
}

.metroreelchronicles-game-card:nth-child(2) .metroreelchronicles-game-icon {
    color: var(--dungeon-color);
}

.metroreelchronicles-game-card:nth-child(3) .metroreelchronicles-game-icon {
    color: var(--night-city-color);
}

.metroreelchronicles-game-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all var(--transition-slow);
}

.metroreelchronicles-game-desc {
    color: var(--text-dim);
    margin-bottom: 2rem;
    transition: all var(--transition-slow);
    opacity: 0.8;
}

.metroreelchronicles-game-button {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

/* Game Card Hover Effects */
.metroreelchronicles-game-card:hover {
    transform: translateY(-15px) scale(1.03);
}

.metroreelchronicles-game-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(255, 71, 71, 0.2), 0 0 20px rgba(255, 71, 71, 0.2);
}

.metroreelchronicles-game-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(94, 23, 235, 0.2), 0 0 20px rgba(94, 23, 235, 0.2);
}

.metroreelchronicles-game-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(0, 204, 255, 0.2), 0 0 20px rgba(0, 204, 255, 0.2);
}

.metroreelchronicles-game-card:hover .metroreelchronicles-game-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.metroreelchronicles-game-card:hover .metroreelchronicles-game-icon {
    transform: translateY(-30px) scale(0.8);
    background: rgba(255, 255, 255, 0.15);
}

.metroreelchronicles-game-card:hover .metroreelchronicles-game-title {
    transform: translateY(-15px);
}

.metroreelchronicles-game-card:hover .metroreelchronicles-game-desc {
    transform: translateY(-10px);
}

.metroreelchronicles-game-card:hover .metroreelchronicles-game-button {
    opacity: 1;
    transform: translateY(0);
}

.metroreelchronicles-game-card:nth-child(1):hover .metroreelchronicles-game-button {
    background: var(--movie-color);
}

.metroreelchronicles-game-card:nth-child(2):hover .metroreelchronicles-game-button {
    background: var(--dungeon-color);
}

.metroreelchronicles-game-card:nth-child(3):hover .metroreelchronicles-game-button {
    background: var(--night-city-color);
}

/* About Section */
.metroreelchronicles-about-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

.metroreelchronicles-about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.metroreelchronicles-about-container {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.metroreelchronicles-about-text {
    flex: 1;
}

.metroreelchronicles-about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.metroreelchronicles-about-image {
    flex: 1;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metroreelchronicles-hologram {
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 L180,90 L100,180 L20,90 Z" fill="none" stroke="%237d1dff" stroke-width="2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%2300e5ff" stroke-width="2"/><path d="M70,100 L130,100 M100,70 L100,130" stroke="%23ff3e6a" stroke-width="2"/></svg>');
    background-size: contain;
    position: relative;
    animation: rotate3d 20s linear infinite;
}

.metroreelchronicles-hologram:before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s infinite alternate;
}

.metroreelchronicles-hologram:after {
    content: '';
    position: absolute;
    inset: -50px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 4s infinite alternate-reverse;
}

/* Contact Section */
.metroreelchronicles-contact-section {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
}

.metroreelchronicles-contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metroreelchronicles-form-group {
    position: relative;
}

.metroreelchronicles-input,
.metroreelchronicles-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.metroreelchronicles-textarea {
    min-height: 150px;
    resize: vertical;
}

.metroreelchronicles-input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all var(--transition-fast);
}

.metroreelchronicles-input:focus,
.metroreelchronicles-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.metroreelchronicles-input:focus + .metroreelchronicles-input-line,
.metroreelchronicles-textarea:focus + .metroreelchronicles-input-line {
    width: 100%;
}

.metroreelchronicles-submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.metroreelchronicles-button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease-out;
}

.metroreelchronicles-submit-button:hover {
    box-shadow: 0 5px 15px rgba(125, 29, 255, 0.4);
}

.metroreelchronicles-submit-button:active .metroreelchronicles-button-pulse {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: all 0.3s ease-out;
}

/* Footer */
.metroreelchronicles-footer {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.metroreelchronicles-footer-graphic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
}

.metroreelchronicles-footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18.17 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="%23100e1f" opacity=".25"/><path d="M0 0v15.81c13 21.11 27.64 41.05 47.69 56.24C99.41 111.27 165 111 224.58 91.58c31.15-10.15 60.09-26.07 89.67-39.8 40.92-19 84.73-46 130.83-49.67 36.26-2.85 70.9 9.42 98.6 31.56 31.77 25.39 62.32 62 103.63 73 40.44 10.79 81.35-6.69 119.13-24.28s75.16-39 116.92-43.05c59.73-5.85 113.28 22.88 168.9 38.84 30.2 8.66 59 6.17 87.09-7.5 22.43-10.89 48-26.93 60.65-49.24V0z" fill="%237d1dff" opacity=".15"/><path d="M0 0v5.63C149.93 59 314.09 71.32 475.83 42.57c43-7.64 84.23-20.12 127.61-26.46 59-8.63 112.48 12.24 165.56 35.4C827.93 77.22 886 95.24 951.2 90c86.53-7 172.46-45.71 248.8-84.81V0z" fill="%2300e5ff" opacity=".15"/></svg>');
    background-size: cover;
    animation: wave 15s linear infinite;
}

.metroreelchronicles-footer-cubes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
}

.metroreelchronicles-footer-cube {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0.1;
    transform-style: preserve-3d;
    transform: rotateX(45deg) rotateY(45deg);
    animation: float 10s ease-in-out infinite alternate;
    position: relative;
}

.metroreelchronicles-footer-cube:nth-child(2) {
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    animation-delay: 2s;
    animation-duration: 12s;
}

.metroreelchronicles-footer-cube:nth-child(3) {
    background: linear-gradient(135deg, var(--accent-color), transparent);
    animation-delay: 4s;
    animation-duration: 14s;
}

.metroreelchronicles-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 5% 4rem;
    position: relative;
    z-index: 2;
}

.metroreelchronicles-footer-brand {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.metroreelchronicles-footer-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.metroreelchronicles-footer-logo:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent, transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

.metroreelchronicles-footer-logo svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.metroreelchronicles-footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metroreelchronicles-footer-slogan {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.metroreelchronicles-footer-social {
    display: flex;
    gap: 1rem;
}

.metroreelchronicles-social-button {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    transform: rotate(45deg);
}

.metroreelchronicles-social-button svg {
    width: 18px;
    height: 18px;
    color: white;
    transform: rotate(-45deg);
    transition: all var(--transition-fast);
}

.metroreelchronicles-social-button:before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--darker-bg);
    border-radius: 6px;
    transition: all var(--transition-fast);
    z-index: 1;
}

.metroreelchronicles-social-button svg {
    position: relative;
    z-index: 2;
}

.metroreelchronicles-social-button:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 15px rgba(125, 29, 255, 0.5);
}

.metroreelchronicles-social-button:hover:before {
    inset: 2px;
}

.metroreelchronicles-footer-navigation {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.metroreelchronicles-footer-nav-column {
    flex: 1;
    min-width: 200px;
}

.metroreelchronicles-footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.metroreelchronicles-footer-heading:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.metroreelchronicles-footer-nav-list,
.metroreelchronicles-footer-contact-list {
    list-style: none;
}

.metroreelchronicles-footer-nav-list li {
    margin-bottom: 1rem;
}

.metroreelchronicles-footer-nav-list a {
    color: var(--text-dim);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.metroreelchronicles-footer-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: all var(--transition-fast);
    opacity: 0;
}

.metroreelchronicles-footer-nav-list a:hover {
    color: var(--text-light);
    padding-left: 1rem;
}

.metroreelchronicles-footer-nav-list a:hover:before {
    width: 8px;
    opacity: 1;
}

.metroreelchronicles-footer-contact-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dim);
}

.metroreelchronicles-footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.metroreelchronicles-footer-bottom {
    padding: 2rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.metroreelchronicles-footer-line {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.metroreelchronicles-copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.metroreelchronicles-footer-links {
    display: flex;
    gap: 2rem;
}

.metroreelchronicles-footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.metroreelchronicles-footer-links a:hover {
    color: var(--text-light);
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0% {
        transform: rotateX(45deg) rotateY(45deg) translateY(0);
    }
    100% {
        transform: rotateX(45deg) rotateY(45deg) translateY(-30px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 0 0 10px rgba(125, 29, 255, 0.7);
    }
    1% {
        text-shadow: 3px 0 10px rgba(255, 62, 106, 0.7), -3px 0 10px rgba(0, 229, 255, 0.7);
        transform: translateX(2px);
    }
    2% {
        text-shadow: 3px 0 10px rgba(255, 62, 106, 0.7), -3px 0 10px rgba(0, 229, 255, 0.7);
        transform: translateX(-2px);
    }
    3% {
        text-shadow: 0 0 10px rgba(125, 29, 255, 0.7);
        transform: translateX(0);
    }
    50% {
        text-shadow: 0 0 10px rgba(125, 29, 255, 0.7);
    }
    51% {
        text-shadow: 2px 0 10px rgba(255, 62, 106, 0.7), -2px 0 10px rgba(0, 229, 255, 0.7);
        transform: translateX(1px);
    }
    52% {
        text-shadow: 2px 0 10px rgba(255, 62, 106, 0.7), -2px 0 10px rgba(0, 229, 255, 0.7);
        transform: translateX(-1px);
    }
    53% {
        text-shadow: 0 0 10px rgba(125, 29, 255, 0.7);
        transform: translateX(0);
    }
    100% {
        text-shadow: 0 0 10px rgba(125, 29, 255, 0.7);
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes pulse {
    from {
        transform: scale(0.95);
        opacity: 0.5;
    }
    to {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .metroreelchronicles-hero-title {
        font-size: 3rem;
    }
    
    .metroreelchronicles-section-title {
        font-size: 2.3rem;
    }
    
    .metroreelchronicles-about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .metroreelchronicles-footer-content {
        flex-direction: column;
    }
    
    .metroreelchronicles-footer-navigation {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .metroreelchronicles-nav-items {
        display: none;
    }
    
    .metroreelchronicles-nav-items.metroreelchronicles-nav-items-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 10, 0.95);
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }
    
    .metroreelchronicles-nav-items.metroreelchronicles-nav-items-mobile .metroreelchronicles-nav-item {
        padding: 1rem;
        justify-content: center;
    }
    
    .metroreelchronicles-nav-toggle {
        display: flex;
    }
    
    .metroreelchronicles-nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .metroreelchronicles-nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    
    .metroreelchronicles-nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
    
    .metroreelchronicles-hero-title {
        font-size: 2.5rem;
    }
    
    .metroreelchronicles-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .metroreelchronicles-games-container {
        gap: 2rem;
    }
    
    .metroreelchronicles-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Additional Navbar Styling */
.metroreelchronicles-navbar-scrolled {
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Ripple Effect for Buttons */
.metroreelchronicles-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* Custom Cursor Styles */
html, body {
    cursor: none;
}

.metroreelchronicles-cursor-dot,
.metroreelchronicles-cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: transform 0.15s;
}

.metroreelchronicles-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.metroreelchronicles-cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(125, 29, 255, 0.5);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.3s;
}

a, button, [onclick], .metroreelchronicles-game-card, .metroreelchronicles-nav-item, 
.metroreelchronicles-input, .metroreelchronicles-textarea, .metroreelchronicles-submit-button {
    cursor: none;
}

.metroreelchronicles-cursor-hover {
    transform: scale(1.5);
    background-color: var(--primary-color);
    mix-blend-mode: difference;
}

.metroreelchronicles-cursor-ring-hover {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 229, 255, 0.7);
    mix-blend-mode: difference;
}

.metroreelchronicles-cursor-click {
    transform: scale(0.8);
}

.metroreelchronicles-cursor-ring-click {
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(255, 62, 106, 0.1);
    border-color: rgba(255, 62, 106, 0.7);
}

/* Cursor Trail Effect */
.metroreelchronicles-cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    pointer-events: none;
    z-index: 9998;
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.metroreelchronicles-age-disclaimer {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.metroreelchronicles-age-badge {
    background: linear-gradient(135deg, #ff3e6a, #ff2b4d);
    color: white;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(255, 62, 106, 0.5);
    flex-shrink: 0;
    position: relative;
}

.metroreelchronicles-age-badge:after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 62, 106, 0.5);
    animation: pulse 2s infinite;
}

.metroreelchronicles-disclaimer-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* MetroReelChronicles - Contact Page Styles */

/* Base Styles */
:root {
    --primary-color: #7d1dff;
    --secondary-color: #00e5ff;
    --accent-color: #ff3e6a;
    --dark-bg: #0a0a12;
    --darker-bg: #05050a;
    --text-light: #ffffff;
    --text-dim: #9c9cb0;
    --movie-color: #ff4747;
    --dungeon-color: #5e17eb;
    --night-city-color: #00ccff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glow: 0 0 10px rgba(125, 29, 255, 0.6), 0 0 20px rgba(125, 29, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.metroreelchronicles-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Noise Overlay */
.metroreelchronicles-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgdmFsdWVzPSIwIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 10;
    opacity: 0.05;
}

/* Navbar */
.metroreelchronicles-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.95), rgba(10, 10, 18, 0.8) 60%, transparent);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.metroreelchronicles-navbar.metroreelchronicles-navbar-scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.metroreelchronicles-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.metroreelchronicles-logo-hexagon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s infinite alternate;
}

.metroreelchronicles-logo-hexagon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(125, 29, 255, 0.5));
}

.metroreelchronicles-logo-hexagon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(125, 29, 255, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.metroreelchronicles-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: all var(--transition-fast);
}

.metroreelchronicles-logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
}

.metroreelchronicles-nav-links {
    display: flex;
    gap: 2.5rem;
}

.metroreelchronicles-nav-item {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.metroreelchronicles-nav-text {
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.metroreelchronicles-nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

.metroreelchronicles-nav-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 29, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.metroreelchronicles-nav-item:hover:after {
    left: 100%;
}

.metroreelchronicles-nav-item:hover .metroreelchronicles-nav-text {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.metroreelchronicles-nav-item:hover .metroreelchronicles-nav-line,
.metroreelchronicles-nav-item.metroreelchronicles-active .metroreelchronicles-nav-line {
    width: 100%;
}

.metroreelchronicles-nav-item.metroreelchronicles-active .metroreelchronicles-nav-text {
    color: var(--secondary-color);
}

.metroreelchronicles-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.metroreelchronicles-nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Contact Hero Section */
.metroreelchronicles-contact-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.metroreelchronicles-contact-hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 2rem;
}

.metroreelchronicles-contact-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.metroreelchronicles-title-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    position: relative;
}

.metroreelchronicles-title-highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.metroreelchronicles-contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.metroreelchronicles-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(125, 29, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(125, 29, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.metroreelchronicles-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.metroreelchronicles-floating-cube,
.metroreelchronicles-floating-sphere,
.metroreelchronicles-floating-pyramid {
    position: absolute;
    opacity: 0.2;
}

.metroreelchronicles-floating-cube {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    transform-style: preserve-3d;
    transform: rotateX(45deg) rotateY(45deg);
    animation: float-cube 15s infinite linear;
}

.metroreelchronicles-floating-sphere {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    box-shadow: 0 0 20px var(--secondary-color);
    animation: float-sphere 20s infinite ease-in-out;
}

.metroreelchronicles-floating-pyramid {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 60%;
    background: linear-gradient(to top, var(--accent-color), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float-pyramid 18s infinite ease-in-out;
}

/* Contact Main Section */
.metroreelchronicles-contact-main {
    padding: 5rem 5%;
    position: relative;
}

.metroreelchronicles-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: a2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.metroreelchronicles-contact-methods {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.metroreelchronicles-section-title {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.metroreelchronicles-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metroreelchronicles-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metroreelchronicles-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(125, 29, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all var(--transition-slow);
}

.metroreelchronicles-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.metroreelchronicles-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.metroreelchronicles-card-text {
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

.metroreelchronicles-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(125, 29, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: all var(--transition-slow);
}

.metroreelchronicles-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.metroreelchronicles-contact-card:hover .metroreelchronicles-card-icon {
    background: rgba(125, 29, 255, 0.2);
    transform: scale(1.1);
}

.metroreelchronicles-contact-card:hover .metroreelchronicles-card-glow {
    opacity: 1;
}

.metroreelchronicles-social-connect {
    margin-top: 3rem;
}

.metroreelchronicles-social-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.metroreelchronicles-social-icons {
    display: flex;
    gap: 1rem;
}

.metroreelchronicles-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.metroreelchronicles-social-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-dim);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
}

.metroreelchronicles-social-icon:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    transition: all var(--transition-fast);
    opacity: 0;
}

.metroreelchronicles-social-icon:hover {
    transform: translateY(-5px);
}

.metroreelchronicles-social-icon:hover svg {
    color: white;
}

.metroreelchronicles-social-icon:hover:before {
    top: -150%;
    left: -150%;
    opacity: 1;
    animation: rotate-gradient 3s linear infinite;
}

/* Contact Form */
.metroreelchronicles-contact-form-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.metroreelchronicles-form-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
}

.metroreelchronicles-form-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(125, 29, 255, 0.2);
    border-radius: 50%;
    animation: pulse-circle 3s infinite alternate;
}

.metroreelchronicles-form-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.metroreelchronicles-form-lines span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.metroreelchronicles-form-lines span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.metroreelchronicles-form-lines span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(60deg);
}

.metroreelchronicles-form-lines span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(120deg);
}

.metroreelchronicles-contact-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metroreelchronicles-form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.metroreelchronicles-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.metroreelchronicles-form-group {
    flex: 1;
    position: relative;
    margin-bottom: 1.5rem;
}

.metroreelchronicles-input,
.metroreelchronicles-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-light);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.metroreelchronicles-textarea {
    min-height: 150px;
    resize: vertical;
}

.metroreelchronicles-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-dim);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.metroreelchronicles-input:focus ~ .metroreelchronicles-label,
.metroreelchronicles-textarea:focus ~ .metroreelchronicles-label,
.metroreelchronicles-input:valid ~ .metroreelchronicles-label,
.metroreelchronicles-textarea:valid ~ .metroreelchronicles-label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    background: var(--dark-bg);
    color: var(--secondary-color);
}

.metroreelchronicles-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all var(--transition-fast);
}

.metroreelchronicles-input:focus ~ .metroreelchronicles-input-line,
.metroreelchronicles-textarea:focus ~ .metroreelchronicles-input-line {
    width: 100%;
}

.metroreelchronicles-input:focus,
.metroreelchronicles-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.metroreelchronicles-form-submit {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.metroreelchronicles-submit-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.metroreelchronicles-submit-button svg {
    width: 20px;
    height: 20px;
    transition: all var(--transition-fast);
}

.metroreelchronicles-button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease-out;
}

.metroreelchronicles-submit-button:hover {
    box-shadow: 0 5px 15px rgba(125, 29, 255, 0.4);
    transform: translateY(-3px);
}

.metroreelchronicles-submit-button:hover svg {
    transform: translateX(5px);
}

.metroreelchronicles-submit-button:active .metroreelchronicles-button-pulse {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: all 0.3s ease-out;
}

/* Interactive Map Section */
.metroreelchronicles-map-section {
    padding: 5rem 5% 8rem;
    position: relative;
    text-align: center;
}

.metroreelchronicles-interactive-map {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.metroreelchronicles-map-container {
    flex: 3;
    min-width: 300px;
    aspect-ratio: 16/9;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23141423"/><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>');
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metroreelchronicles-map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0, 229, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 229, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.metroreelchronicles-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, var(--dark-bg));
    pointer-events: none;
    z-index: 2;
}

.metroreelchronicles-map-point {
    position: absolute;
    z-index: 3;
    cursor: pointer;
}

.metroreelchronicles-map-point[data-location="headquarters"] {
    top: 35%;
    left: 25%;
}

.metroreelchronicles-map-point[data-location="studio"] {
    top: 55%;
    right: 30%;
}

.metroreelchronicles-map-point[data-location="support"] {
    top: 25%;
    right: 20%;
}

.metroreelchronicles-map-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-fast);
}

.metroreelchronicles-marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: marker-pulse 2s infinite;
}

.metroreelchronicles-map-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(10, 10, 18, 0.9);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: all var(--transition-fast);
    visibility: hidden;
    border: 1px solid rgba(125, 29, 255, 0.3);
}

.metroreelchronicles-map-tooltip h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.metroreelchronicles-map-tooltip p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.metroreelchronicles-map-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(10, 10, 18, 0.9) transparent transparent transparent;
}

.metroreelchronicles-map-point:hover .metroreelchronicles-map-marker {
    transform: scale(1.3);
    background: var(--secondary-color);
}

.metroreelchronicles-map-point:hover .metroreelchronicles-marker-pulse {
    background: var(--secondary-color);
}

.metroreelchronicles-map-point:hover .metroreelchronicles-map-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-20px);
    visibility: visible;
}

.metroreelchronicles-map-info {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metroreelchronicles-location-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    opacity: 0.7;
    transform: scale(0.95);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.metroreelchronicles-location-card:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgba(125, 29, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
}

.metroreelchronicles-location-card.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(125, 29, 255, 0.3);
    opacity: 1;
    transform: scale(1);
}

.metroreelchronicles-location-card.active:before {
    top: -50%;
    left: -50%;
}

.metroreelchronicles-location-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.metroreelchronicles-location-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.metroreelchronicles-location-address {
    font-style: normal;
    margin-bottom: 1rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.metroreelchronicles-location-hours h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.metroreelchronicles-location-hours p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.3rem;
}

/* Footer */
.metroreelchronicles-footer {
    background-color: var(--darker-bg);
    padding: 5rem 5% 2rem;
    position: relative;
}

.metroreelchronicles-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.metroreelchronicles-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.metroreelchronicles-footer-brand {
    flex: 1;
    min-width: 250px;
}

.metroreelchronicles-footer-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.metroreelchronicles-footer-logo:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent, transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

.metroreelchronicles-footer-logo svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.metroreelchronicles-footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metroreelchronicles-footer-slogan {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.metroreelchronicles-footer-social {
    display: flex;
    gap: 1rem;
}

.metroreelchronicles-social-button {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    transform: rotate(45deg);
}

.metroreelchronicles-social-button svg {
    width: 18px;
    height: 18px;
    color: white;
    transform: rotate(-45deg);
    transition: all var(--transition-fast);
}

.metroreelchronicles-social-button:before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--darker-bg);
    border-radius: 6px;
    transition: all var(--transition-fast);
    z-index: 1;
}

.metroreelchronicles-social-button svg {
    position: relative;
    z-index: 2;
}

.metroreelchronicles-social-button:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 15px rgba(125, 29, 255, 0.5);
}

.metroreelchronicles-social-button:hover:before {
    inset: 2px;
}

.metroreelchronicles-footer-navigation {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.metroreelchronicles-footer-nav-column {
    flex: 1;
    min-width: 200px;
}

.metroreelchronicles-footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.metroreelchronicles-footer-heading:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.metroreelchronicles-footer-nav-list,
.metroreelchronicles-footer-contact-list {
    list-style: none;
}

.metroreelchronicles-footer-nav-list li {
    margin-bottom: 1rem;
}

.metroreelchronicles-footer-nav-list a {
    color: var(--text-dim);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.metroreelchronicles-footer-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: all var(--transition-fast);
    opacity: 0;
}

.metroreelchronicles-footer-nav-list a:hover {
    color: var(--text-light);
    padding-left: 1rem;
}

.metroreelchronicles-footer-nav-list a:hover:before {
    width: 8px;
    opacity: 1;
}

.metroreelchronicles-footer-contact-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dim);
}

.metroreelchronicles-footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.metroreelchronicles-footer-bottom {
    padding: 2rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.metroreelchronicles-footer-line {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.metroreelchronicles-copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.metroreelchronicles-footer-links {
    display: flex;
    gap: 2rem;
}

.metroreelchronicles-footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.metroreelchronicles-footer-links a:hover {
    color: var(--text-light);
}

/* Age disclaimer styling */
.metroreelchronicles-age-disclaimer {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.metroreelchronicles-age-badge {
    background: linear-gradient(135deg, #ff3e6a, #ff2b4d);
    color: white;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(255, 62, 106, 0.5);
    flex-shrink: 0;
    position: relative;
}

.metroreelchronicles-age-badge:after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 62, 106, 0.5);
    animation: pulse 2s infinite;
}

.metroreelchronicles-disclaimer-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float-cube {
    0% {
        transform: rotateX(45deg) rotateY(45deg) translateX(0) translateY(0);
    }
    25% {
        transform: rotateX(45deg) rotateY(90deg) translateX(40px) translateY(20px);
    }
    50% {
        transform: rotateX(90deg) rotateY(135deg) translateX(0) translateY(0);
    }
    75% {
        transform: rotateX(45deg) rotateY(180deg) translateX(-40px) translateY(20px);
    }
    100% {
        transform: rotateX(45deg) rotateY(45deg) translateX(0) translateY(0);
    }
}

@keyframes float-sphere {
    0% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-20px);
    }
    66% {
        transform: translateX(-30px) translateY(-20px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes float-pyramid {
    0% {
        transform: rotate(0) translateX(0) translateY(0);
    }
    33% {
        transform: rotate(5deg) translateX(-20px) translateY(-30px);
    }
    66% {
        transform: rotate(-5deg) translateX(20px) translateY(-40px);
    }
    100% {
        transform: rotate(0) translateX(0) translateY(0);
    }
}

@keyframes marker-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .metroreelchronicles-contact-title {
        font-size: 2.8rem;
    }
    
    .metroreelchronicles-section-title {
        font-size: 2rem;
    }
    
    .metroreelchronicles-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .metroreelchronicles-interactive-map {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .metroreelchronicles-nav-links {
        display: none;
    }
    
    .metroreelchronicles-nav-toggle {
        display: flex;
    }
    
    .metroreelchronicles-nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .metroreelchronicles-nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    
    .metroreelchronicles-nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
    
    .metroreelchronicles-contact-title {
        font-size: 2.2rem;
    }
    
    .metroreelchronicles-contact-subtitle {
        font-size: 1rem;
    }
    
    .metroreelchronicles-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}/* MetroReelChronicles - Contact Page Styles */

/* Base Styles */
:root {
    --primary-color: #7d1dff;
    --secondary-color: #00e5ff;
    --accent-color: #ff3e6a;
    --dark-bg: #0a0a12;
    --darker-bg: #05050a;
    --text-light: #ffffff;
    --text-dim: #9c9cb0;
    --movie-color: #ff4747;
    --dungeon-color: #5e17eb;
    --night-city-color: #00ccff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glow: 0 0 10px rgba(125, 29, 255, 0.6), 0 0 20px rgba(125, 29, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.metroreelchronicles-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Noise Overlay */
.metroreelchronicles-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23141423"/><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>');
    pointer-events: none;
}


/* MetroReelChronicles - About Page Styles */

/* Base Styles */
:root {
    --primary-color: #7d1dff;
    --secondary-color: #00e5ff;
    --accent-color: #ff3e6a;
    --dark-bg: #0a0a12;
    --darker-bg: #05050a;
    --text-light: #ffffff;
    --text-dim: #9c9cb0;
    --movie-color: #ff4747;
    --dungeon-color: #5e17eb;
    --night-city-color: #00ccff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glow: 0 0 10px rgba(125, 29, 255, 0.6), 0 0 20px rgba(125, 29, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aboutpage-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Noise Overlay */
.aboutpage-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgdmFsdWVzPSIwIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 10;
    opacity: 0.05;
}

/* Navbar */
.aboutpage-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.95), rgba(10, 10, 18, 0.8) 60%, transparent);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.aboutpage-navbar.aboutpage-navbar-scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.aboutpage-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.aboutpage-logo-hexagon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s infinite alternate;
}

.aboutpage-logo-hexagon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(125, 29, 255, 0.5));
}

.aboutpage-logo-hexagon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(125, 29, 255, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.aboutpage-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: all var(--transition-fast);
}

.aboutpage-logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
}

.aboutpage-nav-links {
    display: flex;
    gap: 2.5rem;
}

.aboutpage-nav-item {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.aboutpage-nav-text {
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.aboutpage-nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

.aboutpage-nav-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 29, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.aboutpage-nav-item:hover:after {
    left: 100%;
}

.aboutpage-nav-item:hover .aboutpage-nav-text {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.aboutpage-nav-item:hover .aboutpage-nav-line,
.aboutpage-nav-item.aboutpage-active .aboutpage-nav-line {
    width: 100%;
}

.aboutpage-nav-item.aboutpage-active .aboutpage-nav-text {
    color: var(--secondary-color);
}

.aboutpage-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.aboutpage-nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* About Hero Section */
.aboutpage-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.aboutpage-hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 2rem;
}

.aboutpage-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.aboutpage-title-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    position: relative;
}

.aboutpage-title-highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.aboutpage-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.aboutpage-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(125, 29, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(125, 29, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* About Main Content */
.aboutpage-main {
    padding: 2rem 5%;
    position: relative;
}

.aboutpage-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling */
.aboutpage-section {
    margin-bottom: 6rem;
}

.aboutpage-section-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.aboutpage-section-title {
    font-size: 2.3rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.aboutpage-section-line {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-top: 1rem;
    border-radius: 3px;
    position: relative;
}

.aboutpage-section-line:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    filter: blur(10px);
    opacity: 0.5;
}

.aboutpage-content {
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.aboutpage-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Team Section */
.aboutpage-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.aboutpage-team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aboutpage-team-card:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgba(125, 29, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
}

.aboutpage-team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.aboutpage-team-card:hover:before {
    top: -50%;
    left: -50%;
}

.aboutpage-team-info {
    position: relative;
    z-index: 1;
}

.aboutpage-team-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.aboutpage-team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.aboutpage-team-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Games Section */
.aboutpage-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.aboutpage-game-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aboutpage-game-card:nth-child(1) {
    border-top: 3px solid var(--movie-color);
}

.aboutpage-game-card:nth-child(2) {
    border-top: 3px solid var(--dungeon-color);
}

.aboutpage-game-card:nth-child(3) {
    border-top: 3px solid var(--night-city-color);
}

.aboutpage-game-card:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgba(125, 29, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
}

.aboutpage-game-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.aboutpage-game-card:hover:before {
    top: -50%;
    left: -50%;
}

.aboutpage-game-info {
    position: relative;
    z-index: 1;
}

.aboutpage-game-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.aboutpage-game-card:nth-child(1) .aboutpage-game-title {
    color: var(--movie-color);
}

.aboutpage-game-card:nth-child(2) .aboutpage-game-title {
    color: var(--dungeon-color);
}

.aboutpage-game-card:nth-child(3) .aboutpage-game-title {
    color: var(--night-city-color);
}

.aboutpage-game-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.aboutpage-game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.aboutpage-game-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: all var(--transition-fast);
}

.aboutpage-game-card:nth-child(1) .aboutpage-game-features span:hover {
    background: rgba(255, 71, 71, 0.2);
    color: var(--text-light);
}

.aboutpage-game-card:nth-child(2) .aboutpage-game-features span:hover {
    background: rgba(94, 23, 235, 0.2);
    color: var(--text-light);
}

.aboutpage-game-card:nth-child(3) .aboutpage-game-features span:hover {
    background: rgba(0, 204, 255, 0.2);
    color: var(--text-light);
}

/* Values Section */
.aboutpage-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.aboutpage-value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aboutpage-value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.aboutpage-value-icon {
    width: 60px;
    height: 60px;
    background: rgba(125, 29, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-slow);
}

.aboutpage-value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
    transition: all var(--transition-fast);
}

.aboutpage-value-card:hover .aboutpage-value-icon {
    background: rgba(125, 29, 255, 0.2);
    transform: scale(1.1);
}

.aboutpage-value-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.aboutpage-value-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.aboutpage-cta-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    margin: 3rem 0 6rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aboutpage-cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(125, 29, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.15), transparent 40%);
    z-index: 0;
}

.aboutpage-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.aboutpage-cta-text {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.aboutpage-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.aboutpage-cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.aboutpage-cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.aboutpage-cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aboutpage-cta-button:hover {
    transform: translateY(-5px);
}

.aboutpage-cta-button.primary:hover {
    box-shadow: 0 8px 20px rgba(125, 29, 255, 0.3);
}

.aboutpage-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.aboutpage-footer {
    background-color: var(--darker-bg);
    padding: 5rem 5% 2rem;
    position: relative;
}

.aboutpage-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.aboutpage-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.aboutpage-footer-brand {
    flex: 1;
    min-width: 250px;
}

.aboutpage-footer-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.aboutpage-footer-logo:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent, transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

.aboutpage-footer-logo svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.aboutpage-footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.aboutpage-footer-slogan {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.aboutpage-footer-social {
    display: flex;
    gap: 1rem;
}

.aboutpage-social-button {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    transform: rotate(45deg);
}

.aboutpage-social-button svg {
    width: 18px;
    height: 18px;
    color: white;
    transform: rotate(-45deg);
    transition: all var(--transition-fast);
}

.aboutpage-social-button:before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--darker-bg);
    border-radius: 6px;
    transition: all var(--transition-fast);
    z-index: 1;
}

.aboutpage-social-button svg {
    position: relative;
    z-index: 2;
}

.aboutpage-social-button:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 15px rgba(125, 29, 255, 0.5);
}

.aboutpage-social-button:hover:before {
    inset: 2px;
}

.aboutpage-footer-navigation {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.aboutpage-footer-nav-column {
    flex: 1;
    min-width: 200px;
}

.aboutpage-footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.aboutpage-footer-heading:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.aboutpage-footer-nav-list,
.aboutpage-footer-contact-list {
    list-style: none;
}

.aboutpage-footer-nav-list li {
    margin-bottom: 1rem;
}

.aboutpage-footer-nav-list a {
    color: var(--text-dim);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.aboutpage-footer-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: all var(--transition-fast);
    opacity: 0;
}

.aboutpage-footer-nav-list a:hover {
    color: var(--text-light);
    padding-left: 1rem;
}

.aboutpage-footer-nav-list a:hover:before {
    width: 8px;
    opacity: 1;
}

.aboutpage-footer-contact-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dim);
}

.aboutpage-footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.aboutpage-footer-bottom {
    padding: 2rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.aboutpage-footer-line {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.aboutpage-copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.aboutpage-footer-links {
    display: flex;
    gap: 2rem;
}

.aboutpage-footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.aboutpage-footer-links a:hover {
    color: var(--text-light);
}

/* Age disclaimer styling */
.aboutpage-age-disclaimer {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.aboutpage-age-badge {
    background: linear-gradient(135deg, #ff3e6a, #ff2b4d);
    color: white;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(255, 62, 106, 0.5);
    flex-shrink: 0;
    position: relative;
}

.aboutpage-age-badge:after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 62, 106, 0.5);
    animation: pulse 2s infinite;
}

.aboutpage-disclaimer-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .aboutpage-hero-title {
        font-size: 2.8rem;
    }
    
    .aboutpage-section-title {
        font-size: 2rem;
    }
    
    .aboutpage-team-grid,
    .aboutpage-games-grid,
    .aboutpage-values-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .aboutpage-cta-section {
        padding: 3rem 2rem;
    }
    
    .aboutpage-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .aboutpage-nav-links {
        display: none;
    }
    
    .aboutpage-nav-toggle {
        display: flex;
    }
    
    .aboutpage-nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .aboutpage-nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    
    .aboutpage-nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
    
    .aboutpage-hero-title {
        font-size: 2.2rem;
    }
    
    .aboutpage-hero-subtitle {
        font-size: 1rem;
    }
    
    .aboutpage-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .aboutpage-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
   

.aboutpage-game-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.aboutpage-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aboutpage-game-card:hover .aboutpage-game-img {
    transform: scale(1.05);
}

/* MetroReelChronicles - Legal Pages Styles */

/* Base Styles */
:root {
    --primary-color: #7d1dff;
    --secondary-color: #00e5ff;
    --accent-color: #ff3e6a;
    --dark-bg: #0a0a12;
    --darker-bg: #05050a;
    --text-light: #ffffff;
    --text-dim: #9c9cb0;
    --movie-color: #ff4747;
    --dungeon-color: #5e17eb;
    --night-city-color: #00ccff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glow: 0 0 10px rgba(125, 29, 255, 0.6), 0 0 20px rgba(125, 29, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Noise Overlay */
.legal-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgdmFsdWVzPSIwIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 10;
    opacity: 0.05;
}

/* Navbar */
.legal-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.95), rgba(10, 10, 18, 0.8) 60%, transparent);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.legal-navbar.legal-navbar-scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.legal-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal-logo-hexagon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s infinite alternate;
}

.legal-logo-hexagon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(125, 29, 255, 0.5));
}

.legal-logo-hexagon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(125, 29, 255, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.legal-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: all var(--transition-fast);
}

.legal-logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
}

.legal-nav-links {
    display: flex;
    gap: 2.5rem;
}

.legal-nav-item {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.legal-nav-text {
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.legal-nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

.legal-nav-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 29, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.legal-nav-item:hover:after {
    left: 100%;
}

.legal-nav-item:hover .legal-nav-text {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.legal-nav-item:hover .legal-nav-line,
.legal-nav-item.legal-active .legal-nav-line {
    width: 100%;
}

.legal-nav-item.legal-active .legal-nav-text {
    color: var(--secondary-color);
}

.legal-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.legal-nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.legal-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.legal-hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 2rem;
}

.legal-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.legal-title-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    position: relative;
}

.legal-title-highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.legal-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.legal-last-updated {
    font-size: 0.9rem;
    color: var(--text-dim);
    background: rgba(125, 29, 255, 0.1);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-top: 1rem;
}

.legal-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(125, 29, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(125, 29, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Main Content */
.legal-main {
    padding: 2rem 5% 5rem;
    position: relative;
}

.legal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

/* Sidebar */
.legal-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.legal-sidebar-container {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.legal-sidebar-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.legal-sidebar-links {
    list-style: none;
    margin-bottom: 2.5rem;
}

.legal-sidebar-link {
    display: block;
    color: var(--text-dim);
    padding: 0.8rem 0;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 1.2rem;
}

.legal-sidebar-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.legal-sidebar-link:hover {
    color: var(--text-light);
    padding-left: 1.5rem;
}

.legal-sidebar-link:hover:before {
    opacity: 1;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px var(--primary-color);
}

.legal-sidebar-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-sidebar-link.active:before {
    background: var(--secondary-color);
    opacity: 1;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px var(--secondary-color);
}

.legal-sidebar-info {
    background: rgba(125, 29, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(125, 29, 255, 0.1);
}

.legal-sidebar-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.legal-sidebar-info p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-sidebar-button {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.legal-sidebar-button:hover {
    background: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

/* Content Area */
.legal-content {
    flex: 1;
    max-width: 900px;
}

.legal-warning-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 62, 106, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 62, 106, 0.2);
}

.legal-warning-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.legal-warning-icon:after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: pulse 2s infinite;
}

.legal-warning-badge p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Sections */
.legal-section {
    margin-bottom: 4rem;
}

.legal-section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.legal-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.legal-section-content {
    color: var(--text-dim);
}

.legal-section-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-list {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

/* Cards */
.legal-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
}

.legal-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-card-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.legal-card-content {
    color: var(--text-dim);
}

/* Support Section */
.legal-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.legal-support-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
}

.legal-support-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-support-icon {
    width: 60px;
    height: 60px;
    background: rgba(125, 29, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-slow);
}

.legal-support-icon svg {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
    stroke-width: 2;
    transition: all var(--transition-fast);
}

.legal-support-card:hover .legal-support-icon {
    background: rgba(125, 29, 255, 0.2);
    transform: scale(1.1);
}

.legal-support-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-support-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Info */
.legal-contact-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-contact-item {
    display: flex;
    margin-bottom: 1.2rem;
}

.legal-contact-label {
    min-width: 100px;
    font-weight: 700;
    color: var(--text-light);
}

.legal-contact-value {
    color: var(--text-dim);
}

/* CTA Section */
.legal-cta {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(125, 29, 255, 0.1), rgba(0, 229, 255, 0.1));
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 4rem;
    border: 1px solid rgba(125, 29, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.legal-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(125, 29, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.15), transparent 40%);
    z-index: 0;
}

.legal-cta-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.legal-cta-icon svg {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
    stroke-width: 2;
}

.legal-cta-content {
    position: relative;
    z-index: 1;
}

.legal-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-cta-content p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.legal-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(125, 29, 255, 0.3);
}

/* Footer */
.legal-footer {
    background-color: var(--darker-bg);
    padding: 5rem 5% 2rem;
    position: relative;
}

.legal-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.legal-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.legal-footer-brand {
    flex: 1;
    min-width: 250px;
}

.legal-footer-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.legal-footer-logo:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent, transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

.legal-footer-logo svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.legal-footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-footer-slogan {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.legal-footer-social {
    display: flex;
    gap: 1rem;
}

.legal-social-button {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    transform: rotate(45deg);
}

.legal-social-button svg {
    width: 18px;
    height: 18px;
    color: white;
    transform: rotate(-45deg);
    transition: all var(--transition-fast);
}

.legal-social-button:before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--darker-bg);
    border-radius: 6px;
    transition: all var(--transition-fast);
    z-index: 1;
}

.legal-social-button svg {
    position: relative;
    z-index: 2;
}

.legal-social-button:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 15px rgba(125, 29, 255, 0.5);
}

.legal-social-button:hover:before {
    inset: 2px;
}

.legal-footer-navigation {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.legal-footer-nav-column {
    flex: 1;
    min-width: 200px;
}

.legal-footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-footer-heading:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.legal-footer-nav-list,
.legal-footer-contact-list {
    list-style: none;
}

.legal-footer-nav-list li {
    margin-bottom: 1rem;
}

.legal-footer-nav-list a {
    color: var(--text-dim);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.legal-footer-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: all var(--transition-fast);
    opacity: 0;
}

.legal-footer-nav-list a:hover {
    color: var(--text-light);
    padding-left: 1rem;
}

.legal-footer-nav-list a:hover:before {
    width: 8px;
    opacity: 1;
}

.legal-footer-nav-list a.active {
    color: var(--secondary-color);
}

.legal-footer-contact-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dim);
}

.legal-footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.legal-footer-bottom {
    padding: 2rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.legal-footer-line {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.legal-copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.legal-age-badge {
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.legal-age-badge:after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .legal-container {
        flex-direction: column;
    }
    
    .legal-sidebar {
        width: 100%;
    }
    
    .legal-sidebar-container {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 992px) {
    .legal-hero-title {
        font-size: 2.8rem;
    }
    
    .legal-section-title {
        font-size: 1.6rem;
    }
    
    .legal-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-cta-icon {
        margin: 0 auto;
    }
    
    .legal-support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .legal-nav-links {
        display: none;
    }
    
    .legal-nav-toggle {
        display: flex;
    }
    
    .legal-nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .legal-nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    
    .legal-nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
    
    .legal-hero-title {
        font-size: 2.2rem;
    }
    
    .legal-hero-subtitle {
        font-size: 1rem;
    }
    
    .legal-warning-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .legal-warning-icon {
        margin: 0 auto 1rem;
    }
    
    .legal-contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}



/* Base Styles */
:root {
    --primary-color: #7d1dff;
    --secondary-color: #00e5ff;
    --accent-color: #ff3e6a;
    --dark-bg: #0a0a12;
    --darker-bg: #05050a;
    --text-light: #ffffff;
    --text-dim: #9c9cb0;
    --movie-color: #ff4747;
    --dungeon-color: #5e17eb;
    --night-city-color: #00ccff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glow: 0 0 10px rgba(125, 29, 255, 0.6), 0 0 20px rgba(125, 29, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* Noise Overlay */
.legal-noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgdmFsdWVzPSIwIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 10;
    opacity: 0.05;
}

/* Navbar */
.legal-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.95), rgba(10, 10, 18, 0.8) 60%, transparent);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.legal-navbar.legal-navbar-scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.legal-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal-logo-hexagon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s infinite alternate;
}

.legal-logo-hexagon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(125, 29, 255, 0.5));
}

.legal-logo-hexagon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(125, 29, 255, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.legal-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: all var(--transition-fast);
}

.legal-logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
}

.legal-nav-links {
    display: flex;
    gap: 2.5rem;
}

.legal-nav-item {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.legal-nav-text {
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}


.legal-info-icon{
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    flex-shrink: 0;
}


/* Age Verification Styles */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-verification-container {
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.95), rgba(15, 15, 25, 0.95));
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 29, 255, 0.2);
    animation: modal-appear 0.5s ease-out forwards;
}

.age-verification-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(125, 29, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.1), transparent 40%);
    pointer-events: none;
}

.age-verification-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.age-verification-logo svg {
    width: 40px;
    height: 40px;
    color: #7d1dff;
    filter: drop-shadow(0 0 5px rgba(125, 29, 255, 0.5));
}

.age-verification-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.age-verification-logo-highlight {
    color: #7d1dff;
    text-shadow: 0 0 8px rgba(125, 29, 255, 0.6);
}

.age-verification-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.age-verification-badge {
    background: linear-gradient(135deg, #ff3e6a, #ff2b4d);
    color: white;
    font-size: 28px;
    font-weight: 900;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 62, 106, 0.4);
}

.age-verification-badge::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 62, 106, 0.5);
    animation: pulse 2s infinite;
}

.age-verification-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.age-verification-text {
    color: #9c9cb0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.age-verification-question {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.age-verification-button {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.age-verification-button.confirm {
    background: linear-gradient(135deg, #7d1dff, #00e5ff);
    color: white;
    box-shadow: 0 5px 15px rgba(125, 29, 255, 0.3);
}

.age-verification-button.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #9c9cb0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-verification-button.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 29, 255, 0.4);
}

.age-verification-button.decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.age-verification-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.age-verification-button:active::before {
    opacity: 1;
    transform: scale(1);
    transition: all 0.2s ease;
}

.age-verification-notice {
    color: rgba(156, 156, 176, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.age-verification-notice a {
    color: #00e5ff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.age-verification-notice a:hover {
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.age-verification-notice a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00e5ff;
    transition: all 0.3s ease;
}

.age-verification-notice a:hover::after {
    width: 100%;
}

/* Animation Keyframes */
@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 576px) {
    .age-verification-container {
        padding: 2rem;
    }
    
    .age-verification-title {
        font-size: 1.8rem;
    }
    
    .age-verification-badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .age-verification-logo-text {
        font-size: 1.5rem;
    }
}

