:root {
    --primary-color: #00d2ff;
    --accent-color: #3a7bd5;
    --bg-color: #0f172a;
    --text-color: #f8fafc;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}

/* LAATIM CSS DESIGN */
.laatim-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    perspective: 1000px;
}

.laatim {
    width: 80px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    animation: spin 1.5s linear infinite, wobble 3s ease-in-out infinite;
}

.top-part {
    width: 80px;
    height: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    position: absolute;
    top: 0;
    border-bottom: 4px solid rgba(0,0,0,0.2);
}

.middle-part {
    width: 80px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), #1e40af);
    position: absolute;
    top: 15px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.bottom-point {
    width: 10px;
    height: 10px;
    background: #94a3b8;
    position: absolute;
    bottom: -5px;
    left: 35px;
    border-radius: 50%;
}

.shadow {
    width: 60px;
    height: 10px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    margin: 10px auto 0;
    filter: blur(4px);
    animation: shadow-pulse 3s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes wobble {
    0%, 100% { transform: rotateZ(-5deg); }
    50% { transform: rotateZ(5deg); }
}

@keyframes shadow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.extension-accent {
    color: #00ffcc;
    border-right: 3px solid #00ffcc; /* The Cursor */
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #00ffcc; }
}

/* TEXT STYLING */
h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    margin: 0;
}

h1 span {
    color: var(--primary-color);
}

.tagline {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #1e293b;
    color: white;
}

button {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: #0f172a;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: white;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #475569;
}
