/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body */
body {
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    color: #f0f0f0;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #282c34, #1c1f26);
    perspective: 1000px;
}

.hero-content {
    transform: rotateX(5deg);
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4de1ff;
    text-shadow: 0 0 10px #4de1ff;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #4de1ff;
    color: #000302;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #00bcd4;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #4de1ff;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(12, 211, 111, 0.6);
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.card:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.card h3 {
    margin-bottom: 1rem;
    color: #00bcd4;
}

.card p {
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4de1ff;
}

.about p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Download Section */
.download {
    padding: 5rem 2rem;
    text-align: center;
    background: #111;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4de1ff;
}

.download p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: #aaa;
    font-size: 0.9rem;
}
