* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    /* width: 100%;
    max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.support-btn {
    display: inline-block;
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.support-btn:hover {
    background-color: #1557b0;
}

.hero {
    text-align: center;
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(45deg, #0f0c29, #302b63, #24243e); */
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 100px 20px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, #ff8a00, #ff2070, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.platforms {
    color: #888;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.download-section {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.download-btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #1557b0;
}

.users-count {
    margin-top: 15px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
}

.features {
    margin-bottom: 80px;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.emoji {
    font-size: 2em;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: #888;
}

.free-section {
    text-align: center;
    margin-bottom: 80px;
}

.free-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.free-section > p {
    color: #888;
    margin-bottom: 40px;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.screenshot {
    text-align: center;
}

.screenshot img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

.screenshot p {
    color: #888;
}

.users-section {
    text-align: center;
    width: 100%;
    padding: 60px 0;
    background-color: #000;
}

.users-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.avatar-grid {
    margin: 0 auto;
    width: 100%;
    height: 400px;
    background-image: url('images/avatar_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-screenshots {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-screenshots {
        grid-template-columns: 1fr;
    }
    
    .avatar-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email {
    color: #888;
    font-size: 0.9em;
}

.contact-email a {
    color: #1a73e8;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: url('images/orb.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    top: -150px;
    right: -150px;
    z-index: 0;
    animation: floatAnimation 20s ease-in-out infinite;
    pointer-events: none;
}

.orb-second {
    width: 500px;
    height: 500px;
    top: 50%;
    left: -100px;
    opacity: 0.5;
    animation: floatAnimation2 25s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, 50px) rotate(5deg); }
    50% { transform: translate(-100px, 20px) rotate(10deg); }
    75% { transform: translate(-50px, -30px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatAnimation2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(-5deg); }
    50% { transform: translate(100px, -10px) rotate(-10deg); }
    75% { transform: translate(30px, 50px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
