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

:root {
    --electric-pink: #FF1493;
    --deep-teal: #008B8B;
    --fiery-orange: #FF4500;
    --cool-violet: #8A2BE2;
    --stark-white: #FFFFFF;
    --deep-black: #000000;
    --gradient-1: linear-gradient(135deg, var(--electric-pink), var(--cool-violet));
    --gradient-2: linear-gradient(45deg, var(--deep-teal), var(--fiery-orange));
    --gradient-3: linear-gradient(90deg, var(--electric-pink), var(--deep-teal));
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--deep-black);
    color: var(--stark-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Background Abstract Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-2);
    border-radius: 50% 20% 80% 40%;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape3 {
    width: 300px;
    height: 100px;
    background: var(--electric-pink);
    border-radius: 100px;
    top: 80%;
    left: 50%;
    transform: rotate(45deg);
    animation-delay: -10s;
}

.shape4 {
    width: 120px;
    height: 120px;
    background: var(--deep-teal);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(20px, 20px) rotate(270deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.logo-shape {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: logoSpin 10s infinite linear;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { transform: rotate(180deg); border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { transform: rotate(360deg); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: var(--stark-white);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-item::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 1;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--electric-pink);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px 50px;
    background: 
        linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 139, 139, 0.1)),
        url('https://cdn.prod.website-files.com/63b3249466615535f76d4b4e/64fd5f07666d45a0552e5f40_640f2f5b09e63c3c5f930db4_Zeus_Sanctuary_artbanner.webp') center/cover;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.abstract-art {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    z-index: -1;
}

.art-element {
    position: absolute;
    animation: artFloat 15s infinite ease-in-out;
}

.element1 {
    width: 150px;
    height: 150px;
    background: var(--gradient-1);
    border-radius: 50% 20% 80% 40%;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.element2 {
    width: 200px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 100px;
    top: 100px;
    right: 0;
    animation-delay: -5s;
}

.element3 {
    width: 120px;
    height: 120px;
    background: var(--fiery-orange);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

@keyframes artFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(20px, -30px) rotate(120deg); opacity: 1; }
    66% { transform: translate(-15px, 20px) rotate(240deg); opacity: 0.5; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
    margin-top: 20px;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--electric-pink);
    color: var(--stark-white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.3s ease;
    z-index: -1;
}

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

.cta-button:hover {
    border-color: transparent;
    transform: translateY(-2px);
}

.button-ripple {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.05), rgba(0, 139, 139, 0.05));
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--electric-pink), var(--deep-teal), var(--fiery-orange), var(--electric-pink));
    opacity: 0;
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.icon-core {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-rings,
.icon-connections,
.icon-brush {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-rings {
    width: 120%;
    height: 120%;
    border: 2px solid var(--deep-teal);
    border-radius: 50%;
    animation: iconRotate 8s linear infinite;
}

.icon-connections::before,
.icon-connections::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--fiery-orange);
    top: 50%;
    left: 50%;
    transform-origin: left center;
}

.icon-connections::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-connections::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.icon-brush {
    width: 60%;
    height: 60%;
    background: var(--cool-violet);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    animation: iconSway 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes iconSway {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--electric-pink);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1), transparent);
}

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

.game-card {
    position: relative;
    transition: all 0.3s ease;
}

.game-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gradient-1);
    padding: 4px;
    transition: all 0.3s ease;
}

.game-frame img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 20, 147, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
}

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

.game-card:hover .game-frame {
    transform: scale(1.05);
    background: var(--gradient-2);
}

.game-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--stark-white);
}

.play-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--stark-white);
    color: var(--stark-white);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--stark-white);
    transition: left 0.3s ease;
    z-index: -1;
}

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

.play-button:hover {
    color: var(--deep-black);
    transform: scale(1.1);
}

.play-ripple {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    background: rgba(255, 69, 0, 0.1);
    border-top: 2px solid var(--fiery-orange);
    border-bottom: 2px solid var(--fiery-orange);
}

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

.disclaimer-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fiery-orange);
}

.disclaimer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--deep-black);
    overflow: hidden;
}

.footer-art {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    opacity: 0.1;
}

.footer-shape {
    position: absolute;
    bottom: 0;
}

.footer-shape.shape1 {
    width: 200px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 100px 100px 0 0;
    left: 20%;
    animation: footerFloat 8s ease-in-out infinite;
}

.footer-shape.shape2 {
    width: 150px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50% 50% 0 0;
    right: 30%;
    animation: footerFloat 10s ease-in-out infinite reverse;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.footer a {
    color: var(--electric-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--fiery-orange);
}

/* About page styles */
.about-page {
    padding-top: 80px;
    min-height: 100vh;
}

.about-hero {
    padding: 60px 0 100px;
    background: 
        linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 139, 139, 0.1)),
        url('https://t3.ftcdn.net/jpg/09/82/84/56/360_F_982845622_k0l6U6KcexAO1sn5yXvZPTqt8Js4x1gk.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-art {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(45deg, rgba(255, 20, 147, 0.2), rgba(0, 139, 139, 0.2)),
        url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop') center/cover;
    border-radius: 20px;
    overflow: hidden;
}

.about-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.art-piece {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 2;
}

.art-layer {
    position: absolute;
    border-radius: 50% 20% 80% 40%;
    animation: artRotate 20s linear infinite;
}

.layer1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--electric-pink), var(--cool-violet));
    opacity: 0.8;
    animation-delay: 0s;
}

.layer2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, var(--deep-teal), var(--fiery-orange));
    opacity: 0.7;
    animation-delay: -7s;
    animation-direction: reverse;
}

.layer3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: linear-gradient(90deg, var(--fiery-orange), var(--electric-pink));
    opacity: 0.6;
    animation-delay: -14s;
}

.art-center {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: var(--stark-white);
    border-radius: 50%;
    animation: centerPulse 4s ease-in-out infinite;
}

@keyframes artRotate {
    0% { transform: rotate(0deg); border-radius: 50% 20% 80% 40%; }
    25% { transform: rotate(90deg); border-radius: 20% 80% 40% 50%; }
    50% { transform: rotate(180deg); border-radius: 80% 40% 50% 20%; }
    75% { transform: rotate(270deg); border-radius: 40% 50% 20% 80%; }
    100% { transform: rotate(360deg); border-radius: 50% 20% 80% 40%; }
}

@keyframes centerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.about-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--deep-teal);
    font-weight: 300;
    margin-bottom: 40px;
}

.about-description {
    margin-bottom: 50px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--electric-pink);
    background: rgba(255, 20, 147, 0.2);
}

.value-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--electric-pink);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Contact page styles */
.contact-page {
    padding-top: 80px;
    min-height: 100vh;
}

.contact-hero {
    padding: 60px 0 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--deep-teal);
    margin-bottom: 50px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--electric-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--stark-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-pink);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--fiery-orange);
    color: var(--stark-white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    align-self: flex-start;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    transition: left 0.3s ease;
    z-index: -1;
}

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

.submit-button:hover {
    border-color: transparent;
    transform: translateY(-3px);
}

.contact-art {
    position: relative;
}

.contact-visual {
    position: relative;
    height: 300px;
    margin-bottom: 50px;
}

.visual-element {
    position: absolute;
    animation: contactFloat 15s infinite ease-in-out;
}

.element1 {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50% 20% 80% 40%;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.element2 {
    width: 80px;
    height: 80px;
    background: var(--fiery-orange);
    border-radius: 50%;
    top: 50px;
    right: 20px;
    animation-delay: -5s;
}

.element3 {
    width: 100px;
    height: 60px;
    background: var(--deep-teal);
    border-radius: 30px;
    bottom: 80px;
    left: 30px;
    animation-delay: -10s;
}

.element4 {
    width: 60px;
    height: 60px;
    background: var(--cool-violet);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20px;
    right: 50px;
    animation-delay: -7s;
}

@keyframes contactFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(15px, -20px) rotate(90deg); opacity: 1; }
    50% { transform: translate(-10px, 15px) rotate(180deg); opacity: 0.6; }
    75% { transform: translate(20px, 10px) rotate(270deg); opacity: 0.9; }
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--electric-pink);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 139, 139, 0.1);
    border-left: 4px solid var(--deep-teal);
    border-radius: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Policy page styles */
.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.last-updated {
    text-align: center;
    color: var(--deep-teal);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-pink);
    margin-bottom: 20px;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 20px 50px;
    }
    
    .abstract-art {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-art {
        height: 300px;
    }
    
    .art-piece {
        width: 250px;
        height: 250px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-visual {
        height: 250px;
    }
    
    .submit-button {
        align-self: stretch;
        text-align: center;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
}

/* Animation for button clicks */
@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.cta-button:active .button-ripple,
.play-button:active .play-ripple {
    animation: ripple 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Game page styles */
.game-container {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--deep-black);
}

.game-header {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 139, 139, 0.1));
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.back-button {
    background: transparent;
    border: 2px solid var(--deep-teal);
    color: var(--deep-teal);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.back-button:hover {
    background: var(--deep-teal);
    color: var(--stark-white);
    transform: translateY(-2px);
}

.game-frame-full {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}