    * {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Header */
header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}

.logo {
font-size: 2rem;
font-weight: bold;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-links a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

.nav-links a:hover {
color: #667eea;
}

.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background: linear-gradient(45deg, #667eea, #764ba2);
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.auth-buttons {
display: flex;
gap: 1rem;
}

/* Fixed Button Styles - Now Visible */
.btn {
padding: 12px 24px;
border: none;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
display: inline-block;
position: relative;
overflow: hidden;
background: linear-gradient(45deg, #667eea, #764ba2); /* Changed from white to gradient */
color: white; /* Changed from #333 to white */
border: 2px solid transparent; /* Changed from rgba(0,0,0,0.1) */
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 1;
}

.btn-outline {
background: transparent;
color: #667eea;
border: 2px solid #667eea;
}

/* Make outline buttons more visible on light backgrounds */
.btn-outline:hover {
color: black;
}

/* Hero buttons - more prominent */
.btn-hero {
padding: 16px 32px;
font-size: 1.1rem;
margin: 0.5rem;
min-width: 180px;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
border: none;
}

/* Primary button hover states */
.btn-primary:hover {
background: linear-gradient(45deg, #5a6fd1, #6a4299);
color: white;
}

/* Keep all your existing interactive effects (ripple, pulse, etc) */
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
transform: translateY(1px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 5px;
height: 5px;
background: rgba(255, 255, 255, 0.5);
opacity: 0;
border-radius: 100%;
transform: scale(1, 1) translate(-50%);
transform-origin: 50% 50%;
z-index: -1;
}

.btn:hover::after {
animation: ripple 1s ease-out;
}

@keyframes ripple {
0% {
    transform: scale(0, 0);
    opacity: 0.5;
}
100% {
    transform: scale(20, 20);
    opacity: 0;
}
}

/* Rest of your existing button animations and effects... */

/* Hero Section */
.hero {
padding: 6rem 0;
text-align: center;
color: white;
position: relative;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.5;
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}

.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
opacity: 0.9;
max-width: 600px;
margin-left: auto;
margin-right: auto;
animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero {
padding: 15px 35px;
font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
padding: 4rem 0;
margin-top: -2rem;
border-radius: 20px 20px 0 0;
box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}

.how-it-works::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.12)"/></svg>');
animation: float 20s ease-in-out infinite;
}

.how-it-works h2 {
text-align: center;
font-size: 3rem;
margin-bottom: 3rem;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
position: relative;
z-index: 2;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.step-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 25px;
padding: 3rem 2rem;
text-align: center;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
border: 2px solid rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
}

.step-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
transform: translateX(-100%);
transition: transform 0.6s ease;
}

.step-card:hover::before {
transform: translateX(100%);
}

.step-card:hover {
transform: translateY(-15px) scale(1.02);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.step-number {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
color: white;
font-size: 2rem;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
position: relative;
box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.step-number::after {
content: '';
position: absolute;
width: 100px;
height: 100px;
border: 3px solid rgba(255, 107, 107, 0.3);
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}

.step-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #333;
font-weight: 700;
}

.step-card p {
color: #666;
line-height: 1.6;
font-size: 1.1rem;
}

.stats-highlight {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 4rem 0;
position: relative;
overflow: hidden;
}

.stats-highlight::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,30 100,70 0,100" fill="rgba(255,255,255,0.05)"/><polygon points="0,20 100,0 100,40 0,60" fill="rgba(255,255,255,0.03)"/></svg>');
}

.stats-highlight h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
position: relative;
z-index: 2;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
position: relative;
z-index: 2;
}

.stat-item {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
transform: translateY(-10px);
background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
width: 60px;
height: 60px;
margin: 0 auto 1rem;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}

.stat-item h3 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 0.5rem;
background: linear-gradient(45deg, #fff, #f0f0f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.stat-item p {
font-size: 1.2rem;
opacity: 0.9;
}

@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.7; }
50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
33% { transform: translateY(-10px) rotate(1deg); }
66% { transform: translateY(5px) rotate(-1deg); }
}

/* Features Section */
.features {
padding: 4rem 0;
background: white;
}

.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.feature-card {
text-align: center;
padding: 2rem;
border-radius: 20px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #e1e5e9;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 1rem;
background: linear-gradient(45deg, #667eea, #764ba2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: white;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #333;
}

.feature-card p {
color: #666;
line-height: 1.6;
}

/* Stats Section */
.stats {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 4rem 0;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}

.stat-item h3 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.stat-item p {
font-size: 1.2rem;
opacity: 0.9;
}

/* Footer */
footer {
background: #333;
color: white;
padding: 3rem 0 1rem;
}

.footer-info {
text-align: center;
margin-bottom: 2rem;
}

.footer-info h3 {
color: #667eea;
margin-bottom: 1rem;
font-size: 1.5rem;
}

.footer-info p {
color: #ccc;
line-height: 1.6;
margin-bottom: 1rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #555;
color: #ccc;
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.nav-links {
    display: none;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

.search-form {
    flex-direction: column;
    align-items: center;
}

.search-input {
    width: 100%;
    max-width: 400px;
}

.auth-buttons {
    gap: 0.5rem;
}

.btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}
}