body {
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #212529;
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.text-gradient {
    background: linear-gradient(90deg, #00C8FF, #FF007B, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-gradient {
    background: linear-gradient(90deg, #00C8FF, #FF007B);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #FF007B, #FF8C00);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 123, 0.4);
}

.hero-section {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.05), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 0, 123, 0.05), transparent 50%);
}

.hero-image {
    max-height: 600px;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 8px solid #fff;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 0, 123, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.editor-preview {
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 100%;
    border: 8px solid #fff;
}

.footer {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid #eaeaea;
}

.footer-links a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF007B;
}

.logo-brand {
    height: 40px;
    width: auto;
}
