* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a4d54 0%, #2b6b72 50%, #3d8b93 100%);
    color: #e8dcc4;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(240, 138, 106, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo-container {
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(240, 138, 106, 0.9);
    color: #1a4d54;
    box-shadow: 0 8px 30px rgba(240, 138, 106, 0.3);
}

.btn-primary:hover {
    background: rgba(240, 138, 106, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(240, 138, 106, 0.4);
}

.btn-secondary {
    background: rgba(232, 220, 196, 0.1);
    color: #e8dcc4;
    border: 2px solid rgba(232, 220, 196, 0.3);
}

.btn-secondary:hover {
    background: rgba(232, 220, 196, 0.2);
    border-color: rgba(232, 220, 196, 0.5);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: rgba(26, 77, 84, 0.3);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(232, 220, 196, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 220, 196, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f08a6a, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(232, 220, 196, 0.08);
    border-color: rgba(232, 220, 196, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: block;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #f08a6a;
}

.feature-description {
    opacity: 0.9;
    line-height: 1.8;
}

/* Getting Started Section */
.getting-started {
    padding: 100px 20px;
}

.code-block {
    background: rgba(26, 77, 84, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 220, 196, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(240, 138, 106, 0.1);
    border-bottom: 1px solid rgba(232, 220, 196, 0.1);
}

.code-header {
    margin-bottom: 20px;
    padding-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.code-content {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1rem;
    color: #a8d5ba;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.install-steps {
    max-width: 800px;
    margin: 60px auto;
}

.step {
    background: rgba(232, 220, 196, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 220, 196, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 40px;
    height: 40px;
    background: rgba(240, 138, 106, 0.9);
    color: #1a4d54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #f08a6a;
}

.step-description {
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 60px 20px 40px;
    text-align: center;
    background: rgba(26, 77, 84, 0.5);
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #e8dcc4;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: #f08a6a;
}

.footer-text {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        padding-left: 30px;
    }

    .step-number {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 15px;
    }
}