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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    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 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-icon {
    position: relative;
}

.logo-icon svg {
    animation: logoIconFloat 4s ease-in-out infinite;
}

.logo-circle-1 {
    animation: logoFloat 3s ease-in-out infinite;
    transform-origin: center;
}

.logo-triangle {
    animation: logoFloat 3s ease-in-out infinite 0.5s;
    transform-origin: center;
}

.logo-rect {
    animation: logoFloat 3s ease-in-out infinite 1s;
    transform-origin: center;
}

.logo-circle-2 {
    animation: logoFloat 3s ease-in-out infinite 1.5s;
    transform-origin: center;
}

@keyframes logoIconFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

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

.logo-shape {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: logoFloat 3s ease-in-out infinite;
}

.shape-1 {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    animation-delay: 0s;
}

.shape-2 {
    background: linear-gradient(45deg, #4834d4, #686de0);
    animation-delay: 0.5s;
    transform: rotate(45deg);
    border-radius: 2px;
}

.shape-3 {
    background: linear-gradient(45deg, #00d2d3, #01a3a4);
    animation-delay: 1s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4834d4, #00d2d3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

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

.nav-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-shape,
.nav-link.active .nav-shape {
    transform: translateX(0);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('https://external-preview.redd.it/5-more-character-slots-with-patch-10-2-7-v0-IAmTUaPV_isvbzNFAehPQ-Iiv8098zZfs3Dd3Y4_3Sw.jpg?auto=webp&s=c61ffccd4aae8d3d366132301e91742d976310e7') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(22, 33, 62, 0.8) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 6s ease-in-out infinite;
}

.shape-hero-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(238, 90, 36, 0.3));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-hero-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(72, 52, 212, 0.3), rgba(104, 109, 224, 0.3));
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

.shape-hero-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(0, 210, 211, 0.3), rgba(1, 163, 164, 0.3));
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    transform: rotate(45deg);
    border-radius: 20px;
}

.shape-hero-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(0, 210, 211, 0.2));
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #ff6b6b, #4834d4, #00d2d3, #ff6b6b);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 40px;
}

.hero-actions {
    margin-top: 40px;
}

.explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(45deg, #ff6b6b, #4834d4, #00d2d3);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    animation: exploreGlow 3s ease-in-out infinite;
}

@keyframes exploreGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 15px 40px rgba(72, 52, 212, 0.4);
    }
}

.explore-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.5);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconSpin 4s linear infinite;
}

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

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

.explore-btn:hover .btn-ripple-explore {
    width: 300px;
    height: 300px;
}

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

.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, #4834d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    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(-2deg);
    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(72, 52, 212, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.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);
}

.game-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4834d4, #00d2d3, #ff6b6b);
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    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;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4834d4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    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: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.disclaimer-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff6b6b;
}

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

.disclaimer-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.disclaimer-text strong {
    color: #00d2d3;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        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: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .logo-abstract {
        gap: 10px;
    }
    
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}