SCBOT / app /static /css /style.css
rajaamaan86's picture
Upload 17 files
960c9e6 verified
Raw
History Blame Contribute Delete
7.58 kB
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');
:root {
--bg-dark: #090a0f;
--bg-card: rgba(17, 18, 30, 0.45);
--border-glow: rgba(147, 51, 234, 0.2);
--border-glow-hover: rgba(147, 51, 234, 0.4);
--primary: #8b5cf6;
--primary-glow: rgba(139, 92, 246, 0.5);
--secondary: #ec4899;
--success: #10b981;
--success-glow: rgba(16, 185, 129, 0.3);
--text-main: #f3f4f6;
--text-muted: #9ca3af;
--font-heading: 'Space Grotesk', sans-serif;
--font-body: 'Outfit', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-dark);
color: var(--text-main);
font-family: var(--font-body);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow-x: hidden;
position: relative;
}
/* Background Gradients */
body::before {
content: '';
position: absolute;
top: -200px;
left: -200px;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(9, 10, 15, 0) 70%);
z-index: -1;
filter: blur(80px);
}
body::after {
content: '';
position: absolute;
bottom: -200px;
right: -200px;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, rgba(9, 10, 15, 0) 70%);
z-index: -1;
filter: blur(80px);
}
/* Navigation */
header {
padding: 2rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
z-index: 10;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.logo i {
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Status Badge */
.status-badge {
display: flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 6px 14px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
}
.status-dot {
width: 8px;
height: 8px;
background-color: var(--success);
border-radius: 50%;
box-shadow: 0 0 10px var(--success-glow);
position: relative;
}
.status-dot.pulsate::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--success);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.8;
}
100% {
transform: scale(2.5);
opacity: 0;
}
}
/* Main Layout */
main {
flex-grow: 1;
padding: 3rem 5%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
max-width: 1200px;
width: 100%;
margin: 0 auto;
z-index: 5;
}
/* Hero Section */
.hero {
text-align: center;
margin-bottom: 4rem;
max-width: 800px;
}
.hero h1 {
font-family: var(--font-heading);
font-size: 3rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
background: linear-gradient(to right, #ffffff, #d8b4fe);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
color: var(--text-muted);
font-size: 1.15rem;
line-height: 1.6;
margin-bottom: 2rem;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
color: white;
text-decoration: none;
padding: 14px 28px;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}
/* Stats Section */
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
width: 100%;
margin-bottom: 4rem;
}
.stat-card {
background: var(--bg-card);
border: 1px solid var(--border-glow);
backdrop-filter: blur(16px);
border-radius: 16px;
padding: 2rem;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
opacity: 0.7;
}
.stat-card:hover {
transform: translateY(-5px);
border-color: var(--border-glow-hover);
box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}
.stat-icon {
font-size: 2.2rem;
color: var(--primary);
margin-bottom: 1rem;
}
.stat-number {
font-family: var(--font-heading);
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, #ffffff, #e9d5ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.stat-label {
color: var(--text-muted);
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 1px;
}
/* How It Works Section */
.guide-section {
width: 100%;
background: var(--bg-card);
border: 1px solid rgba(255, 255, 255, 0.05);
backdrop-filter: blur(16px);
border-radius: 20px;
padding: 3rem 2rem;
margin-bottom: 2rem;
}
.guide-section h2 {
font-family: var(--font-heading);
text-align: center;
font-size: 2rem;
margin-bottom: 2.5rem;
background: linear-gradient(to right, #ffffff, #f472b6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}
.step {
text-align: center;
position: relative;
}
.step-num {
width: 45px;
height: 45px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.2rem;
margin: 0 auto 1.2rem auto;
box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.step h3 {
font-size: 1.15rem;
font-weight: 600;
margin-bottom: 0.6rem;
}
.step p {
color: var(--text-muted);
font-size: 0.9rem;
line-height: 1.5;
}
/* Footer */
footer {
padding: 2rem;
text-align: center;
border-top: 1px solid rgba(255, 255, 255, 0.05);
color: var(--text-muted);
font-size: 0.85rem;
z-index: 10;
}
footer a {
color: var(--primary);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.2rem;
}
header {
padding: 1.5rem 5%;
flex-direction: column;
gap: 1rem;
}
.stats-grid {
grid-template-columns: 1fr;
}
.steps-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
}