/* Base Styles and Variables */
:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00f0ff;
    --deep-blue: #0022ff;
    --black: #000000;
    --dark-gray: #121212;
    --light-gray: #333333;
    --white: #ffffff;
    --font-pixel: 'Press Start 2P', cursive;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    font-family: var(--font-body);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlxcXF+fn5YWFhcXFxTU1NMTEwTrQu4AAAAFHRSTlMqGg4UMkQmTTQyFVBOLikhJh8bCUQLI9gAAAF7SURBVEjHrZTJkoMwDETZcGBJshh3YvL/n5mkKC4bgy9OeaAokEq7aZr8w95N18Vn0bW52X/M9NQkbaxrY9I0vTQmMeODiXM+oyamMkgSRoqqqtQ0iDQC4zWKgihpRnUIihKyOkTQGhJpQFKqgXlRFEkNHJmRBiJUoJGFiiZRaVkEJDJSlOiKtCJSNLCSiH7MSiNiRYE0EqmKVCJjkUYmZEASScQikbL/ZUyyIsNoXZRu0yrO6zaLYdvpWWSlxSHZ1lnsdc7IJNE75UrPXTw7na5cEelkOcDsLe4jM7PwfOe0Aihpn73Rbic+XJED3n2M8QjXNQfHvjuK1X6Oyzr1+zDBruw+x+W+G2VdVWJ2m2qyUF9Rx5N1YrHQFKUMEpqIHzEzr4iYISaS0N+HmCEm0DKkEzPELJUtoXMSFOm0wvrQNUUaGZ6bbQA7IAWNuw/MBmmVy7n7wJwCKoYt9pWt8VQMDq7y+BQ+HjUeZpPnj7Vl8FgLFo/D5fHIvB6j/0d+ADsOCWMQKuRwAAAAAElFTkSuQmCC');
    opacity: 0.03;
    z-index: 1000;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utility Classes */
.neon-text {
    color: var(--white);
    text-shadow: 0 0 5px var(--white), 0 0 10px var(--white), 0 0 15px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 25px var(--neon-blue);
    animation: flicker 3s infinite alternate;
}
.dis{
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.dis {
  font-size: 0.9rem;
  color: var(--color-gray);
}



.abstract-line {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.abstract-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 2s infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.section-header.left-align {
    text-align: left;
}

.left-align .abstract-line {
    margin-left: 0;
}

.glow-button {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    margin-top: 20px;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: all 0.4s ease;
}

.glow-button:hover {
    background-color: var(--neon-blue);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.glow-button:hover::before {
    left: 100%;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

.logo-abstract {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

.shape {
    position: absolute;
    background-color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    animation: rotate 4s infinite linear;
}

.shape-2 {
    width: 15px;
    height: 15px;
    bottom: 0;
    right: 0;
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    animation: rotate 4s infinite linear reverse;
}

.shape-3 {
    width: 10px;
    height: 25px;
    top: 10px;
    right: 10px;
    background-color: var(--white);
    box-shadow: 0 0 10px var(--white);
    animation: pulse 2s infinite alternate;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 15px;
}

.nav-link {
    position: relative;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.nav-link:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-blue);
}

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

.abstract-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
}

.abstract-shape.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--neon-pink);
    top: 20%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

.abstract-shape.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--neon-blue);
    top: 50%;
    right: 15%;
    animation: float 12s infinite ease-in-out reverse;
}

.abstract-shape.shape-3 {
    width: 200px;
    height: 200px;
    background-color: var(--deep-blue);
    bottom: 10%;
    left: 30%;
    animation: float 10s infinite ease-in-out 2s;
}

.abstract-shape.shape-4 {
    width: 250px;
    height: 250px;
    background-color: var(--neon-pink);
    top: 30%;
    right: 30%;
    animation: float 13s infinite ease-in-out 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.glitch {
    position: relative;
    color: var(--white);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-blue);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
}

/* Features Section */
.features-section {
    padding: 120px 40px;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.feature {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.1);
    border-color: var(--neon-blue);
}

.abstract-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-shape {
    position: absolute;
    transition: all 0.3s ease;
}

.icon-1 .icon-shape {
    width: 40px;
    height: 40px;
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    animation: pulse 2s infinite alternate;
}

.icon-1 .icon-shape::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--neon-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 10px var(--neon-blue);
}

.icon-1 .icon-shape::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--neon-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 0 10px var(--neon-blue);
}

.icon-2 .icon-shape {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    border: 3px solid var(--neon-blue);
    transform: rotate(45deg);
    animation: rotate 4s infinite linear;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.icon-3 .icon-shape {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-3 .icon-shape::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--neon-pink);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--neon-pink);
}

.icon-3 .icon-shape::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 40px;
    background-color: var(--neon-pink);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--neon-pink);
}

.icon-4 .icon-shape {
    width: 40px;
    height: 40px;
    background: conic-gradient(var(--neon-blue), var(--neon-pink), var(--neon-blue));
    border-radius: 50%;
    animation: rotate 4s infinite linear;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    padding: 120px 40px;
    background-color: var(--black);
    position: relative;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-art {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.art-piece {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.art-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    animation: artAnimation 15s infinite alternate;
    transform-origin: center;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.manifesto p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.manifesto p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
}

.signature {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-top: 30px;
    text-shadow: 0 0 5px var(--neon-pink);
}

/* Games Section */
.games-section {
    padding: 120px 40px;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.game-card {
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.game-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, var(--neon-pink), var(--neon-blue)) 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 240, 255, 0.3);
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.play-button {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
    transform: translateY(20px);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.2), transparent);
    transition: all 0.4s ease;
}

.game-frame:hover .play-button {
    transform: translateY(0);
}

.play-button:hover {
    background-color: var(--neon-pink);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.play-button:hover::before {
    left: 100%;
}

.game-title {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 120px 40px;
    background-color: var(--black);
    position: relative;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-form {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.glowing-input {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--light-gray);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glowing-input:focus {
    border-color: var(--neon-blue);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

textarea.glowing-input {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    position: relative;
}

.abstract-contact-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-pink) 10%, transparent 60%);
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 3s infinite alternate;
}

.contact-details {
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    position: relative;
}

.email-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 20px;
    border: 2px solid var(--neon-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.email-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    border-bottom: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
}

.location-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.location-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background-color: var(--neon-pink);
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon::before,
.social-icon::after {
    content: '';
    position: absolute;
    background-color: var(--neon-blue);
    transition: all 0.3s ease;
}

.icon-1::before {
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-1::after {
    width: 2px;
    height: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-2::before {
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-3::before {
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-3::after {
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.social-icon:hover {
    transform: rotate(45deg);
    border-color: var(--neon-pink);
}

.social-icon:hover::before,
.social-icon:hover::after {
    background-color: var(--neon-pink);
}

/* Footer */
footer {
    background-color: var(--black);
    padding: 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo .logo {
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-link {
    color: var(--neon-blue);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.footer-divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.5;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(15px);
    }
    50% {
        transform: translateY(-30px) translateX(0);
    }
    75% {
        transform: translateY(-15px) translateX(-15px);
    }
}

@keyframes artAnimation {
    0% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    20% {
        clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    }
    40% {
        clip-path: circle(50% at 50% 50%);
    }
    60% {
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
    80% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 25% 50%);
    }
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(40% 0 61% 0);
    }
    20% {
        clip-path: inset(92% 0 1% 0);
    }
    40% {
        clip-path: inset(43% 0 1% 0);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
    }
    80% {
        clip-path: inset(54% 0 7% 0);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(25% 0 58% 0);
    }
    20% {
        clip-path: inset(54% 0 7% 0);
    }
    40% {
        clip-path: inset(58% 0 43% 0);
    }
    60% {
        clip-path: inset(40% 0 61% 0);
    }
    80% {
        clip-path: inset(92% 0 1% 0);
    }
    100% {
        clip-path: inset(43% 0 1% 0);
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        padding: 20px;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-container,
    .contact-container {
        flex-direction: column;
    }
    
    .about-art {
        margin-bottom: 50px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .logo-container {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
}