213 lines
4.1 KiB
CSS
213 lines
4.1 KiB
CSS
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--gold-light: #f0d68c;
|
|
--gold-dark: #c9a55a;
|
|
--bg-dark: #0a0a0a;
|
|
--bg-card: #141414;
|
|
--text-primary: #ffffff;
|
|
--text-secondary: #a0a0a0;
|
|
--text-muted: #606060;
|
|
--border-light: rgba(255, 255, 255, 0.1);
|
|
--border-lighter: rgba(255, 255, 255, 0.05);
|
|
--green: #4caf50;
|
|
--orange: #ff9800;
|
|
--red: #ef4444;
|
|
--blue: #3b82f6;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background: var(--bg-dark);
|
|
color: var(--text-primary);
|
|
overflow-x: hidden;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Navigation */
|
|
nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20px 60px;
|
|
background: rgba(10, 10, 10, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
border-bottom: 1px solid var(--border-light);
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 40px;
|
|
list-style: none;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.nav-links a:hover, .nav-links a.active {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.nav-cta {
|
|
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
color: #0a0a0a;
|
|
padding: 10px 20px;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.nav-cta:hover {
|
|
box-shadow: 0 4px 15px rgba(240, 214, 140, 0.2);
|
|
}
|
|
|
|
.nav-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Feature Page Specific Styles */
|
|
.page-header {
|
|
padding: 160px 60px 80px;
|
|
text-align: center;
|
|
border-bottom: 1px solid var(--border-lighter);
|
|
}
|
|
|
|
.header-content .subtitle {
|
|
font-size: 20px;
|
|
color: var(--text-secondary);
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
padding: 80px 60px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.feature-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-lighter);
|
|
border-radius: 12px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--border-light);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
margin: 0 auto 24px;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 22px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: var(--bg-card);
|
|
padding: 60px 60px 30px;
|
|
border-top: 1px solid var(--border-lighter);
|
|
}
|
|
|
|
.footer-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 40px;
|
|
max-width: 1200px;
|
|
margin: 0 auto 40px;
|
|
}
|
|
|
|
.footer-about h3 {
|
|
font-size: 20px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.footer-about p {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.footer-links h4 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.footer-links ul {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: 30px;
|
|
border-top: 1px solid var(--border-lighter);
|
|
color: var(--text-muted);
|
|
font-size: 14px;
|
|
} |