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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #fff;
    color: #000;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-section {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.logo-area {
    margin-bottom: 60px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

.brand-name {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.yellow {
    color: #FFD700;
}

.subtitle {
    font-size: 18px;
    color: #666;
}

.features-section {
    margin-bottom: 50px;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 18px;
    margin-bottom: 13px;
    background: #f8f8f8;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-check {
    color: #FFD700;
    font-weight: bold;
    font-size: 20px;
}

.start-button {
    width: 100%;
    padding: 18px;
    background: #FFD700;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.terms {
    font-size: 12px;
    color: #999;
}
.subtitle {
    font-size: 18px;
    color: #666;
    margin: 16px 0;
}

@media (max-width: 600px) {
    .brand-name {
        font-size: 42px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}
