:root {
    --bg: #f5f5f5;
    --text: #222;
    --btn-bg: #4a8fff;
    --btn-hover: #2e74f7;
    --card: #fff;
}
body.dark {
    --bg: #121212;
    --text: #e0e0e0;
    --btn-bg: #2962ff;
    --btn-hover: #0039cb;
    --card: #1e1e1e;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.3s, color 0.3s;
}

header {
    background: var(--card);
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: background 0.3s;
}

.dark-toggle {
    cursor: pointer;
    font-size: 18px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.download-buttons button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-bg);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.download-buttons button:hover {
    background: var(--btn-hover);
}

.download-buttons button i {
    font-size: 20px;
}

footer {
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
    color: #777;
}
#main-content {
    display: none;
  }
#turnstile-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
text-align: center;
padding: 40px;
}
.about-section {
    padding: 3rem;
    text-align: center;
}
.typing {
    font-size: 3em;
    font-weight: 600;
}
.cursor {
    color: #333;
    animation: blink 1s infinite;
}
#typed-text {
    background-image: linear-gradient(45deg, #518ef7, rgb(181, 111, 246));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.mini-profile {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.12);
        background: white;
        border-radius: 20px;
    }

    .mini-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
