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

body {
    font-family: 'Exo 2', sans-serif;
    background: #080e14;
    color: #00ffd1;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #00ffd1 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px #00ffd1;
}

.custom-cursor::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 50%;
    animation: cursorPulse 2s infinite;
}

@keyframes cursorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Cosmic Background */
.cosmic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #080e14 0%, #1a1a2e 50%, #532b88 100%);
}

.floating-spores {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00ffd1, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff6a00, transparent),
        radial-gradient(1px 1px at 90px 40px, #d4ff00, transparent),
        radial-gradient(1px 1px at 130px 80px, #532b88, transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: floatSpores 20s linear infinite;
}

.plasma-trails {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 255, 209, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 106, 0, 0.1) 50%, transparent 60%);
    animation: plasmaFlow 15s ease-in-out infinite;
}

@keyframes floatSpores {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

@keyframes plasmaFlow {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(30px); }
}

/* Typography */
.glitch-text {
    font-family: 'Orbitron', monospace;
    position: relative;
    animation: glitchFlicker 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitchBefore 3s infinite;
    color: #ff6a00;
    z-index: -1;
}

.glitch-text::after {
    animation: glitchAfter 3s infinite;
    color: #d4ff00;
    z-index: -2;
}

@keyframes glitchFlicker {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.8; }
}

@keyframes glitchBefore {
    0%, 90%, 100% { transform: translate(0); }
    95% { transform: translate(-2px, -1px); }
}

@keyframes glitchAfter {
    0%, 90%, 100% { transform: translate(0); }
    95% { transform: translate(2px, 1px); }
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: #00ffd1;
    text-shadow: 0 0 20px #00ffd1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #00ffd1;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(0, 255, 209, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 209, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffd1, #ff6a00, #d4ff00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGlow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(0, 255, 209, 0.8);
}

@keyframes heroGlow {
    0% { filter: drop-shadow(0 0 10px #00ffd1); }
    100% { filter: drop-shadow(0 0 30px #ff6a00); }
}

/* Buttons */
.bio-button {
    background: linear-gradient(45deg, #00ffd1, #532b88);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #080e14;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.bio-button:hover::before {
    left: 100%;
}

.bio-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 209, 0.4);
}

/* Play Now Button */
.play-now-btn {
    background: linear-gradient(45deg, #ff6a00, #d4ff00);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: #080e14;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.play-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.play-now-btn:hover::before {
    left: 100%;
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

/* Game Grid */
.game-grid-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ffd1;
    font-family: 'Orbitron', monospace;
}

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

.game-card {
    background: rgba(83, 43, 136, 0.1);
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #00ffd1, transparent);
    animation: cardRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover::before {
    opacity: 0.3;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 209, 0.2);
    border-color: #00ffd1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 209, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.game-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 255, 209, 0.3));
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00ffd1;
    font-family: 'Orbitron', monospace;
}

.game-card p {
    color: rgba(0, 255, 209, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(8, 14, 20, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 209, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ff6a00;
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: featureFloat 3s ease-in-out infinite;
}

.feature-item h3 {
    color: #00ffd1;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.feature-item p {
    color: rgba(0, 255, 209, 0.7);
    line-height: 1.6;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(0, 255, 209, 0.8);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 50px 0;
    background: rgba(83, 43, 136, 0.1);
}

.disclaimer-scroll {
    background: rgba(8, 14, 20, 0.8);
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.disclaimer-scroll h3 {
    color: #ff6a00;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

.disclaimer-list {
    list-style: none;
}

.disclaimer-list li {
    padding: 0.5rem 0;
    color: rgba(0, 255, 209, 0.8);
    opacity: 0;
    animation: disclaimerReveal 0.5s ease forwards;
}

.disclaimer-list li:nth-child(1) { animation-delay: 0.1s; }
.disclaimer-list li:nth-child(2) { animation-delay: 0.2s; }
.disclaimer-list li:nth-child(3) { animation-delay: 0.3s; }
.disclaimer-list li:nth-child(4) { animation-delay: 0.4s; }
.disclaimer-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes disclaimerReveal {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Footer */
.cosmic-footer {
    background: rgba(8, 14, 20, 0.9);
    border-top: 1px solid rgba(0, 255, 209, 0.3);
    padding: 3rem 0 1rem;
    margin-top: 50px;
}

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

.footer-logo h3 {
    color: #00ffd1;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(0, 255, 209, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #00ffd1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6a00;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #ff6a00;
    text-shadow: 0 0 10px #ff6a00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 209, 0.2);
    color: rgba(0, 255, 209, 0.6);
    font-size: 0.9rem;
}

/* Game Pages */
.game-page {
    min-height: 100vh;
    padding: 120px 0 50px;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffd1;
}

.game-description {
    font-size: 1.2rem;
    color: rgba(0, 255, 209, 0.7);
}

.game-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.game-image-container {
    text-align: center;
}

.game-feature-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 255, 209, 0.3));
}

.game-player {
    background: rgba(8, 14, 20, 0.8);
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.lg-object {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    background: rgba(83, 43, 136, 0.1);
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.game-info h3 {
    color: #00ffd1;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.game-info p {
    color: rgba(0, 255, 209, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-features h4 {
    color: #ff6a00;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.game-features ul {
    list-style: none;
}

.game-features li {
    color: rgba(0, 255, 209, 0.7);
    padding: 0.3rem 0;
}

.game-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-button {
    background: linear-gradient(45deg, #532b88, #00ffd1);
    color: #080e14;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 209, 0.4);
}

/* Contact Page */
.contact-page {
    min-height: 100vh;
    padding: 120px 0 50px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffd1;
}

.page-description {
    font-size: 1.2rem;
    color: rgba(0, 255, 209, 0.7);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: rgba(8, 14, 20, 0.8);
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cosmic-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: #00ffd1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(83, 43, 136, 0.2);
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 10px;
    color: #00ffd1;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffd1;
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    position: relative;
    overflow: hidden;
}

.button-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.6s, height 0.6s;
}

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

.contact-info {
    background: rgba(83, 43, 136, 0.1);
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    color: #00ffd1;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(8, 14, 20, 0.5);
    border-radius: 10px;
}

.info-icon {
    font-size: 1.5rem;
    color: #ff6a00;
}

.info-text {
    color: rgba(0, 255, 209, 0.8);
    line-height: 1.5;
}

.info-text strong {
    color: #00ffd1;
}

.emergency-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.notice-icon {
    font-size: 1.5rem;
    color: #ff6a00;
    animation: emergencyBlink 2s infinite;
}

@keyframes emergencyBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 50px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    background: rgba(255, 106, 0, 0.1);
    color: #ff6a00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-scroll {
    background: rgba(8, 14, 20, 0.8);
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-height: 70vh;
    overflow-y: auto;
}

.content-scroll::-webkit-scrollbar {
    width: 8px;
}

.content-scroll::-webkit-scrollbar-track {
    background: rgba(83, 43, 136, 0.2);
    border-radius: 10px;
}

.content-scroll::-webkit-scrollbar-thumb {
    background: #ff6a00;
    border-radius: 10px;
}

.content-scroll::-webkit-scrollbar-thumb:hover {
    background: #00ffd1;
}

.legal-section {
    margin-bottom: 2rem;
    opacity: 0;
    animation: sectionReveal 0.8s ease forwards;
}

.legal-section:nth-child(1) { animation-delay: 0.1s; }
.legal-section:nth-child(2) { animation-delay: 0.2s; }
.legal-section:nth-child(3) { animation-delay: 0.3s; }
.legal-section:nth-child(4) { animation-delay: 0.4s; }
.legal-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes sectionReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.legal-section h2 {
    color: #00ffd1;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00ffd1, #ff6a00);
}

.legal-section p {
    color: rgba(0, 255, 209, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: rgba(0, 255, 209, 0.7);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-section strong {
    color: #00ffd1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .game-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-navigation {
        flex-direction: column;
        align-items: center;
    }

    .content-scroll {
        padding: 2rem 1.5rem;
        max-height: 60vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-title,
    .page-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .game-card {
        padding: 1rem;
    }

    .bio-button,
    .nav-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cosmic-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .content-scroll {
        padding: 1.5rem 1rem;
    }
}

/* Additional Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll triggered animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner for iframe */
.game-player::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 209, 0.3);
    border-top: 3px solid #00ffd1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}