:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00ff88;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --card-bg: #111111;
    --nav-bg: rgba(10, 10, 10, 0.95);
    --glow-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
    --glass-bg: rgba(17, 17, 17, 0.7);
}

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

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(162, 155, 254, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 10s ease infinite;
}

nav {
    position: fixed;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 35%;
    position: relative;
    z-index: 1;
    filter: grayscale(100%) brightness(0.8) drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.logo::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #4a4a4a 0%, transparent 70%);
    animation: pulse 2s infinite;
    opacity: 0.5;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2c2c2c, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    background: var(--glass-bg);
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2c2c2c, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4a4a4a, transparent);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.features {
    padding: 8rem 2rem;
    background: var(--background-color);
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 92, 231, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow-shadow);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.3));
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.download {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.1), rgba(0, 255, 136, 0.1));
    position: relative;
    overflow: hidden;
}

.download h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.download h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.about {
    padding: 8rem 2rem;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.about p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.access-steps {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 1rem;
    list-style-position: inside;
    border: 1px solid rgba(108, 92, 231, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.access-steps li {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.access-steps li::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.access-steps li:hover::before {
    transform: translateX(5px);
}

.access-steps li:hover {
    transform: translateX(10px);
    color: var(--accent-color);
}

.access-steps strong {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.access-steps strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.access-steps li:hover strong {
    color: var(--accent-color);
}

.access-steps li:hover strong::after {
    transform: scaleX(1);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    animation: fall linear infinite;
    opacity: 0.5;
    filter: blur(1px);
}

.random-credit {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

footer {
    background: var(--glass-bg);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 35%;
    filter: grayscale(100%) brightness(0.8) drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 0.8rem;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px) rotate(8deg);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    border-color: var(--accent-color);
}

@keyframes backgroundPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.5; }
}

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

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .features h2, .download h2 {
        font-size: 2.5rem;
    }
}
