:root {
    --primary-color: #00e5ff;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--secondary-color);
    color: white;
    line-height: 1.6;
}

header {
    background-color: rgba(26, 26, 46, 0.9);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: white;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: white;
}

.features, .explore {
    padding: 100px 5%;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 10px;
    width: 30%;
}

footer {
    background-color: rgba(26, 26, 46, 0.9);
    padding: 20px 5%;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--primary-color);
    margin: 0 10px;
    text-decoration: none;
}

