* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: #0b0e14;
    color: #eef2f6;
    min-height: 100vh;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #1e2936;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: #f7931a;
    font-size: 2rem;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-login, .btn-signup {
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-login {
    color: #a0b3c9;
    border: 1px solid #2f3d4e;
}

.btn-login:hover {
    background: #1e2936;
    border-color: #f7931a;
}

.btn-signup {
    background: #f7931a;
    color: #0b0e14;
}

.btn-signup:hover {
    background: #ff9f2e;
    transform: translateY(-2px);
}

/* Hero */
.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #f7931a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #a0b3c9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #f7931a;
    color: #0b0e14;
}

.btn-primary:hover {
    background: #ff9f2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 26, 0.3);
}

.btn-outline {
    border: 2px solid #2f3d4e;
    color: #a0b3c9;
}

.btn-outline:hover {
    border-color: #f7931a;
    color: #f7931a;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 30px;
    background: #131a24;
    border-radius: 20px;
    border: 1px solid #1e2936;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f7931a;
}

.stat-label {
    color: #a0b3c9;
    font-size: 0.9rem;
}

/* Features */
.features-section {
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #131a24;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #1e2936;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #f7931a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: #f7931a;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: #a0b3c9;
    line-height: 1.6;
}

/* Admin Access */
.admin-access {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #1e2936;
    margin-top: 40px;
}

.admin-access p {
    color: #a0b3c9;
    margin-bottom: 16px;
}

.btn-admin {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #f7931a;
    color: #f7931a;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-admin:hover {
    background: #f7931a;
    color: #0b0e14;
}

/* Footer */
.landing-footer {
    border-top: 1px solid #1e2936;
    padding: 30px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.landing-footer p {
    color: #6d839b;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #a0b3c9;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f7931a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .landing-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .landing-footer {
        flex-direction: column;
        text-align: center;
    }
}