@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Exo+2:wght@300;400;500&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Exo 2', sans-serif;
    color: #fff;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 400% 400%;
    animation: rainbowFlow 18s ease infinite;
}

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

.glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    padding: 25px;
    margin: 20px;
}

header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0,255,255,0.5);
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 50px;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 120px;
}

h1, h2, h3 { font-family: 'Orbitron', sans-serif; }

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 30px;
}

.app-card {
    transition: all 0.4s ease;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.app-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin-top: 15px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255,0,255,0.6);
}

input, textarea, button {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1em;
    outline: none;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.7); }

button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
}