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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

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

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

.logo-shape {
    position: absolute;
    border-radius: 50%;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-shape.shape-1 {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #FF1493, #8A2BE2);
    left: -20px;
    animation-delay: 0s;
}

.logo-shape.shape-2 {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #008B8B, #FF4500);
    left: -10px;
    top: 10px;
    animation-delay: 1s;
}

.logo-shape.shape-3 {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #FF4500, #FF1493);
    left: -25px;
    top: -5px;
    animation-delay: 2s;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #FF1493, #008B8B, #FF4500, #8A2BE2);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

a{
text-decoration:none;
color:white;
}

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

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

.nav-link:hover {
    color: #FF1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* Banner Styles */
.banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.1) 0%, rgba(0, 139, 139, 0.1) 50%, rgba(0, 0, 0, 1) 100%);
}

.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.abstract-shape {
    position: absolute;
    opacity: 0.8;
    animation: shapeFloat 6s ease-in-out infinite;
}

.shape-float-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.6), rgba(138, 43, 226, 0.6));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-float-2 {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.5), rgba(255, 69, 0, 0.5));
    border-radius: 50px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.shape-float-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.7), rgba(255, 20, 147, 0.7));
    border-radius: 50%;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-float-4 {
    width: 120px;
    height: 180px;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.4), rgba(0, 139, 139, 0.4));
    border-radius: 60px 60px 20px 20px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

.banner-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.highlight {
    background: linear-gradient(45deg, #FF1493, #FF4500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    color: #008B8B;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #FF1493, #8A2BE2);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.cta-button:active .button-ripple {
    width: 300px;
    height: 300px;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

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

.feature-icon .icon-shape {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-1 .icon-shape {
    background: linear-gradient(45deg, #FF1493, #8A2BE2);
    border-radius: 50% 20% 50% 20%;
}

.icon-2 .icon-shape {
    background: linear-gradient(135deg, #008B8B, #FF4500);
    border-radius: 20px;
    transform: rotate(45deg);
}

.icon-3 .icon-shape {
    background: linear-gradient(90deg, #FF4500, #FF1493);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #FF1493;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.05) 0%, rgba(0, 139, 139, 0.05) 100%);
}

.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%;
    border-radius: 20px;
    overflow: hidden;
}

.art-layer {
    position: absolute;
    border-radius: 20px;
    animation: layerFloat 8s ease-in-out infinite;
}

.layer-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.6), rgba(138, 43, 226, 0.6));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.layer-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.5), rgba(255, 69, 0, 0.5));
    border-radius: 50%;
    animation-delay: 2s;
}

.layer-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.7), rgba(255, 20, 147, 0.7));
    border-radius: 20px;
    animation-delay: 4s;
    transform: rotate(45deg);
}

.about-text {
    text-align: left;
}

.manifesto-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.8;
}

.signature {
    font-style: italic;
    color: #FF1493;
    margin-top: 40px;
    font-size: 1.1rem;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
}

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

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

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

.game-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #FF1493, #008B8B) border-box;
    background-clip: padding-box, border-box;
}

.game-frame img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.game-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.play-btn {
    background: linear-gradient(45deg, #FF1493, #8A2BE2);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.play-btn:active .ripple-effect {
    width: 200px;
    height: 200px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(255, 69, 0, 0.05) 100%);
}

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

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-label {
    font-weight: bold;
    color: #FF1493;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Disclaimer */
.disclaimer {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.disclaimer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.pattern-element {
    position: absolute;
    background: linear-gradient(45deg, #FF1493, #8A2BE2);
    border-radius: 50%;
    animation: patternFloat 6s ease-in-out infinite;
}

.pattern-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pattern-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.pattern-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 50%;
    animation-delay: 4s;
}

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

.disclaimer-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
}

.footer-content {
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-content > p:last-of-type {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #FF1493;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #008B8B;
    text-shadow: 0 0 5px rgba(0, 139, 139, 0.5);
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
}

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

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    33% { transform: translateY(-20px) rotate(120deg); opacity: 0.6; }
    66% { transform: translateY(20px) rotate(240deg); opacity: 0.9; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 20, 147, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 20, 147, 0.8), 0 0 30px rgba(255, 69, 0, 0.5); }
}

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

@keyframes layerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-5deg); }
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.1; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 0.2; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .header .container {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}