* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    background: white;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
}

h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.feature-link:hover {
    transform: translateY(-5px);
}

.feature {
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-link:hover .feature {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.emoji {
    font-size: 42px;
    display: block;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.feature p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.inline-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 18px;
    padding: 14px 35px;
}

.button.secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.button.secondary:hover {
    background: #667eea;
    color: white;
}

.cta {
    margin-bottom: 25px;
}

footer {
    margin-top: 25px;
    color: #999;
    font-size: 13px;
}

@media (max-width: 900px) {
    .container {
        padding: 30px;
    }

    .features {
        gap: 20px;
    }

    .feature {
        padding: 20px 12px;
    }

    .emoji {
        font-size: 36px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 25px 20px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inline-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .feature {
        padding: 18px 15px;
    }
}