<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cream: #EFE4D2;
    --primary-blue: #254D70;
    --primary-navy: #131D4F;
    --primary-brown: #954C2E;
    --accent-electric: #FF6B9D;
    --accent-teal: #4ECDC4;
    --accent-violet: #9B59B6;
    --accent-orange: #F39C12;
    --black: #000000;
    --white: #FFFFFF;
}
a {
    color: wheat;
    text-decoration: none;
}
body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: var(--primary-cream);
    background: var(--primary-navy);
    overflow-x: hidden;
}

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

/* Abstract Background */
.abstract-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 50%, var(--primary-brown) 100%);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-electric);
    top: 10%;
    left: 10%;
    animation-delay: -5s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-teal);
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-violet);
    bottom: 20%;
    left: 50%;
    animation-delay: -15s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--accent-orange);
    top: 30%;
    right: 30%;
    animation-delay: -20s;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(19, 29, 79, 0.8);
    border-bottom: 1px solid rgba(239, 228, 210, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-abstract {
    display: flex;
    gap: 5px;
}

.logo-shape {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    animation: logoShapeAnim 3s infinite ease-in-out;
}

.logo-shape:nth-child(1) {
    background: var(--accent-electric);
    animation-delay: 0s;
}

.logo-shape:nth-child(2) {
    background: var(--accent-teal);
    animation-delay: 0.5s;
}

.logo-shape:nth-child(3) {
    background: var(--accent-orange);
    animation-delay: 1s;
}

@keyframes logoShapeAnim {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-cream);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    color: var(--primary-cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-electric);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link:hover {
    transform: translateY(100%);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.abstract-element {
    position: absolute;
    opacity: 0.3;
    animation: abstractFloat 15s infinite ease-in-out;
}

.element-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid var(--accent-electric);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    background: var(--accent-teal);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.element-3 {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes abstractFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-50px) rotate(180deg); opacity: 0.6; }
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, var(--accent-electric), var(--accent-teal), var(--accent-orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary-cream);
    margin-bottom: 50px;
    opacity: 0.8;
    font-weight: 300;
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--accent-electric);
    color: var(--primary-cream);
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.cta-button:hover {
    color: var(--black);
    border-color: var(--accent-electric);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-electric);
    transition: left 0.3s ease;
    z-index: 1;
}

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

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-cream);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-cream);
    opacity: 0.7;
}

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

.feature-card {
    text-align: center;
    padding: 60px 40px;
    background: rgba(239, 228, 210, 0.05);
    border: 1px solid rgba(239, 228, 210, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-teal) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-electric);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

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

.icon-shape {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-1 .icon-shape {
    background: var(--accent-electric);
    animation-delay: 0s;
}

.icon-2 .icon-shape {
    background: var(--accent-teal);
    animation-delay: -1s;
}

.icon-3 .icon-shape {
    background: var(--accent-orange);
    animation-delay: -2s;
}

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

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-cream);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 16px;
    color: var(--primary-cream);
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    padding: 120px 0;
    background: rgba(149, 76, 46, 0.1);
}

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

.about-art {
    position: relative;
    height: 400px;
}

.art-piece {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.art-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    animation: artLayerMove 12s ease-in-out infinite;
}

.layer-1 {
    background: linear-gradient(45deg, var(--accent-electric), transparent);
    animation-delay: 0s;
}

.layer-2 {
    background: linear-gradient(-45deg, var(--accent-teal), transparent);
    animation-delay: -4s;
}

.layer-3 {
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    animation-delay: -8s;
}

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

.about-text h2 {
    margin-bottom: 40px;
}

.manifesto-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--primary-cream);
    opacity: 0.9;
}

/* Games Section */
.games {
    padding: 120px 0;
    background: rgba(37, 77, 112, 0.1);
}

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

.game-card {
    position: relative;
    background: rgba(239, 228, 210, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(239, 228, 210, 0.1);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-electric);
}

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

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-teal) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-info {
    padding: 30px;
    text-align: center;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-cream);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.play-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--accent-electric);
    color: var(--primary-cream);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    border-radius: 50px;
}

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

.ripple-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-electric);
    transition: left 0.3s ease;
    z-index: 1;
    border-radius: 50px;
}

.play-button:hover .ripple-effect {
    left: 0;
}

.play-button span {
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

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

.contact-form {
    background: rgba(239, 228, 210, 0.05);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(239, 228, 210, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-input, .form-textarea {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(239, 228, 210, 0.2);
    border-radius: 10px;
    padding: 20px;
    color: var(--primary-cream);
    font-size: 16px;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-electric);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(239, 228, 210, 0.5);
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--accent-electric);
    color: var(--black);
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.submit-button:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.contact-art {
    position: relative;
    height: 400px;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    animation: contactShapeMove 10s ease-in-out infinite;
}

.contact-art .shape-1 {
    width: 150px;
    height: 150px;
    background: var(--accent-electric);
    top: 0;
    left: 0;
    opacity: 0.6;
    animation-delay: 0s;
}

.contact-art .shape-2 {
    width: 100px;
    height: 100px;
    background: var(--accent-teal);
    top: 50%;
    right: 20%;
    opacity: 0.7;
    animation-delay: -3s;
}

.contact-art .shape-3 {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    bottom: 0;
    left: 50%;
    opacity: 0.8;
    animation-delay: -6s;
}

@keyframes contactShapeMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Disclaimer */
.disclaimer {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    border-top: 1px solid rgba(239, 228, 210, 0.1);
}

.disclaimer p {
    font-size: 14px;
    color: var(--primary-cream);
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid rgba(239, 228, 210, 0.1);
}

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

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo p {
    font-size: 14px;
    color: var(--primary-cream);
    opacity: 0.6;
    margin-top: 5px;
}

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

.footer-link {
    color: var(--primary-cream);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-electric);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: var(--accent-electric);
    opacity: 1;
}

/* Game Pages Styles */
.game-page {
    min-height: 100vh;
    padding: 120px 0 40px;
    background: var(--primary-navy);
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--accent-electric);
    color: var(--primary-cream);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-decoration: none;
    margin-bottom: 40px;
}

.back-button:hover {
    background: var(--accent-electric);
    color: var(--black);
    transform: translateY(-3px);
}

.game-container {
    background: rgba(239, 228, 210, 0.05);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(239, 228, 210, 0.1);
    backdrop-filter: blur(10px);
}

.game-iframe {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border: none;
    border-radius: 15px;
    background: var(--black);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

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

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(239, 228, 210, 0.1);
    border-top: 3px solid var(--accent-electric);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}</pre></body></html>