* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1a4d8f 0%, #0a2540 50%, #000814 100%);
    min-height: 100vh;
    color: #fff;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-renders {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.render {
    position: absolute;
    opacity: 0.15;
    animation: floatRender 20s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}

.render-1 {
    width: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.render-2 {
    width: 250px;
    top: 60%;
    right: 8%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.render-3 {
    width: 280px;
    bottom: 15%;
    left: 10%;
    animation-delay: 10s;
    animation-duration: 28s;
}

.render-4 {
    width: 320px;
    top: 40%;
    right: 5%;
    animation-delay: 15s;
    animation-duration: 32s;
}

.render-logo {
    width: 200px !important;
    opacity: 0.2 !important;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(255, 223, 0, 0.5));
}

.render-logo-1 {
    top: 25%;
    left: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.render-logo-2 {
    bottom: 30%;
    right: 12%;
    animation-delay: 12s;
    animation-duration: 26s;
}

@keyframes floatRender {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(10px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 223, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 223, 0, 0.4);
    border-radius: 50px;
    text-decoration: none;
    color: #ffdf00;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-button:hover {
    transform: translateX(-5px) scale(1.05);
    background: rgba(255, 223, 0, 0.3);
    box-shadow: 0 6px 20px rgba(255, 223, 0, 0.5);
}

.back-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.back-button:hover .back-icon {
    transform: translateX(-3px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffdf00 0%, #ff6b6b 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.subtitle {
    font-size: 1.2rem;
    color: #ffdf00;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(255, 223, 0, 0.5);
}

.characters {
    margin-bottom: 50px;
}

.characters h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ffdf00 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.character-card {
    background: rgba(17, 24, 39, 0.6);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 223, 0, 0.3);
    cursor: pointer;
}

.character-card:hover {
    transform: translateY(-10px);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 20px 40px rgba(255, 223, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.6);
}

.character-card.coming-soon {
    cursor: default;
    opacity: 0.6;
}

.character-card.coming-soon:hover {
    transform: none;
}

.character-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.character-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.placeholder {
    font-size: 5rem;
    opacity: 0.5;
}

.character-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.character-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 223, 0, 0.3);
}

footer p {
    color: #ffdf00;
    text-shadow: 0 2px 8px rgba(255, 223, 0, 0.3);
}

@media (max-width: 768px) {
    .back-button {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 1rem;
    }
    
    .back-text {
        display: none;
    }
    
    .back-icon {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .character-grid {
        grid-template-columns: 1fr;
    }
    
    header {
        padding: 80px 20px 60px;
    }
}
