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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    color: white;
    overflow-x: hidden;
}

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

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



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

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

.shape-1 {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    left: -10px;
    animation-delay: 0s;
}

.shape-2 {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #45b7d1, #96ceb4);
    left: 15px;
    top: -10px;
    animation-delay: 1s;
}

.shape-3 {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    left: 5px;
    top: 15px;
    animation-delay: 2s;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    margin-left: 40px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-shape {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: all 0.3s ease;
    z-index: -1;
    transform: skewX(-20deg);
}

.nav-link:hover .nav-shape {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://t4.ftcdn.net/jpg/09/82/84/51/360_F_982845131_K3fGB3wUi88FV5L7AFCLUJompgWIvK7a.jpg') center/cover;
    background-attachment: fixed;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

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

.shape-hero-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-hero-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.shape-hero-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(69, 183, 209, 0.3), transparent);
    bottom: 30%;
    left: 50%;
    animation-delay: 3s;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.05);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    mix-blend-mode: overlay;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}

.games .section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.game-card:hover {
    transform: translateY(-10px) rotate(2deg);
}

.game-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1) border-box;
    background-clip: border-box;
}

.game-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

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

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

.play-btn {
    position: relative;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

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

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

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    text-align: center;
}

.disclaimer h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #feca57;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    text-align: center;
}

.contact .section-title {
    margin-bottom: 30px;
}

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

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff6b6b;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes glow {
    0% { text-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    100% { text-shadow: 0 0 30px rgba(78, 205, 196, 0.8); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 10px 20px;
    }
    
    .nav {
        margin-top: 15px;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}