* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
overflow-x: hidden;
color: #ffffff;
background: #0a0a1a;
perspective: 1000px;
}
#scene-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.glass {
background: rgba(20, 25, 46, 0.7);
backdrop-filter: blur(10px);
border-radius: 15px;
border: 1px solid rgba(92, 107, 192, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
header {
position: fixed;
top: 1rem;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
max-width: 1200px;
padding: 1.2rem 2rem;
z-index: 100;
}
.logo {
font-size: 1.8rem;
font-weight: 800;
letter-spacing: 1px;
background: linear-gradient(45deg, #3a86ff, #8338ec);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}
nav a {
color: #e0e0ff;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
font-weight: 500;
}
nav a:hover {
color: #3a86ff;
}
#hero {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
}
#hero h1 {
font-size: 4.5rem;
margin-bottom: 1.5rem;
line-height: 1.1;
text-shadow: 0 0 20px rgba(58, 134, 255, 0.5);
background: linear-gradient(to right, #8e2de2, #4a00e0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#hero p {
font-size: 1.8rem;
max-width: 700px;
margin-bottom: 3rem;
opacity: 0.9;
}
#explore-btn {
padding: 1rem 3rem;
font-size: 1.2rem;
border: none;
border-radius: 50px;
background: linear-gradient(45deg, #3a86ff, #8338ec);
color: white;
cursor: pointer;
transition: all 0.3s ease;
font-weight: bold;
letter-spacing: 1px;
box-shadow: 0 10px 25px rgba(131, 56, 236, 0.3);
}
#explore-btn:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(131, 56, 236, 0.5);
}
section {
max-width: 1200px;
margin: 5rem auto;
padding: 3rem;
width: 90%;
}
section h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #3a86ff;
width: fit-content;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-card {
padding: 2rem;
transition: transform 0.4s ease;
border: 1px solid rgba(92, 107, 192, 0.3);
border-radius: 15px;
}
.feature-card:hover {
transform: translateY(-10px) scale(1.02);
}
.feature-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #8e2de2;
}
footer {
text-align: center;
padding: 2rem;
margin-top: 5rem;
}
@media (max-width: 768px) {
#hero h1 {
font-size: 3rem;
}
#hero p {
font-size: 1.2rem;
}
nav ul {
gap: 1rem;
}
header {
padding: 1rem;
}
section {
padding: 2rem;
margin: 3rem auto;
}
}