* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: white;
    text-align: center;
}

/* Branding Section */
.branding {
    padding: 40px 20px 10px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo {
    max-height: 120px;
    object-fit: contain;
}

.powered-text {
    font-size: 18px;
    font-weight: 600;
    color: #bbbbbb;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffcc00, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: black;
}

.secondary {
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.primary:hover {
    transform: scale(1.05);
}

.secondary:hover {
    background: #ffcc00;
    color: black;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #2a2a2a;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #ffcc00;
}

/* Footer */
footer {
    padding: 25px;
    background: #111;
    font-size: 14px;
    color: #999;
}