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

:root {
    --electric-pink: #FF0080;
    --deep-teal: #008B8B;
    --fiery-orange: #FF4500;
    --cool-violet: #8A2BE2;
    --stark-black: #000000;
    --pure-white: #FFFFFF;
    --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: 'Inter', system-ui, Arial, sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background: var(--stark-black);
    overflow-x: hidden;
}

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

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

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}


a{
text-decoration:none;
color:white;
text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50% 30% 70% 40%;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 20% 80% 30% 60%;
    top: 50%;
    right: -10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-3);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, var(--fiery-orange), var(--electric-pink));
    border-radius: 30% 70% 40% 60%;
    top: 70%;
    right: 20%;
    animation-delay: 15s;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-shapes {
    position: absolute;
    top: -10px;
    right: -30px;
}

.logo-shape-1, .logo-shape-2 {
    position: absolute;
    width: 15px;
    height: 15px;
    animation: pulse 2s infinite;
}

.logo-shape-1 {
    background: var(--electric-pink);
    border-radius: 50%;
    top: 0;
    right: 0;
}

.logo-shape-2 {
    background: var(--deep-teal);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 20px;
    right: 10px;
    animation-delay: 1s;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

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

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

.nav-link:hover {
    color: var(--electric-pink);
    text-shadow: 0 0 10px var(--electric-pink);
}

/* Banner Section */
.banner-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

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

.banner-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.title-accent {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

.ae-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    border-radius: 50% 20% 80% 30%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

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

.ae-3 {
    width: 180px;
    height: 180px;
    background: var(--gradient-3);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% { transform: scale(1) rotate(0deg); border-radius: 50% 20% 80% 30%; }
    25% { transform: scale(1.2) rotate(90deg); border-radius: 20% 80% 50% 30%; }
    50% { transform: scale(0.8) rotate(180deg); border-radius: 80% 30% 20% 50%; }
    75% { transform: scale(1.1) rotate(270deg); border-radius: 30% 50% 80% 20%; }
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    background: var(--gradient-1);
    -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;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    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: radial-gradient(circle, var(--electric-pink) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.2);
}

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

.icon-shape {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.icon-1 .icon-shape {
    background: var(--gradient-1);
    border-radius: 50% 20% 80% 30%;
    animation: rotate 10s infinite linear;
}

.icon-2 .icon-shape {
    background: var(--gradient-2);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotate 12s infinite linear reverse;
}

.icon-3 .icon-shape {
    background: var(--gradient-3);
    border-radius: 20% 80% 60% 40%;
    animation: rotate 8s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--pure-white);
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(138, 43, 226, 0.1));
}

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

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

.art-piece {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.layer-1 {
    width: 200px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50% 30% 70% 40%;
    top: 0;
    left: 0;
    opacity: 0.8;
    animation-delay: 0s;
}

.layer-2 {
    width: 150px;
    height: 200px;
    background: var(--gradient-2);
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    top: 100px;
    right: 50px;
    opacity: 0.6;
    animation-delay: 7s;
}

.layer-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 50%;
    bottom: 50px;
    left: 100px;
    opacity: 0.9;
    animation-delay: 14s;
}

@keyframes artFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -20px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-15px, 10px) rotate(-3deg) scale(0.95); }
    75% { transform: translate(10px, -5px) rotate(2deg) scale(1.02); }
}

.about-text {
    color: var(--pure-white);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.manifesto-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Games Section */
.games-section {
    padding: 100px 0;
}

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

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.game-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--deep-teal));
    padding: 3px;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--electric-pink), var(--deep-teal), var(--fiery-orange), var(--cool-violet));
    border-radius: 20px;
    animation: borderRotate 4s linear infinite;
    z-index: 1;
}

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

.game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 17px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 17px;
}

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

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

.game-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--pure-white);
    text-align: center;
}

.play-btn {
    background: var(--gradient-1);
    color: var(--pure-white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.3s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.play-btn:hover::before {
    width: 200px;
    height: 200px;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1), rgba(255, 69, 0, 0.1));
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--pure-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.submit-btn {
    background: var(--gradient-2);
    color: var(--pure-white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

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

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

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

.cs-2 {
    width: 100px;
    height: 200px;
    background: var(--gradient-2);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    top: 50%;
    right: 20%;
    animation-delay: 5s;
}

.cs-3 {
    width: 120px;
    height: 120px;
    background: var(--gradient-3);
    border-radius: 30% 70% 40% 60%;
    bottom: 20%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes contactFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.disclaimer-pattern {
    position: relative;
    width: 100px;
    height: 100px;
}

.pattern-element {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.6;
    animation: patternPulse 3s infinite ease-in-out;
}

.pe-1 {
    background: var(--electric-pink);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.pe-2 {
    background: var(--deep-teal);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 0;
    animation-delay: 1s;
}

.pe-3 {
    background: var(--fiery-orange);
    border-radius: 20% 80% 40% 60%;
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes patternPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.disclaimer-text {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

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

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

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

.footer-link:hover {
    color: var(--electric-pink);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .disclaimer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--stark-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}