:root {
    --bg-color: #050505;
    --accent-color: #29abe2;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --green-accent: #00ff88;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.logo {
    width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.main-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.accent-text {
    color: var(--green-accent);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-wrapper {
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 24px 60px;
    border-radius: 100px;
    font-size: 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(41, 171, 226, 0.4);
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.main-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(41, 171, 226, 0.6);
}

.main-button svg {
    width: 36px;
    height: 36px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--green-accent);
}

.icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

footer p {
    color: var(--text-secondary);
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 16px;
    }

    .main-button {
        font-size: 20px;
        padding: 18px 30px;
    }

    .main-button svg {
        width: 24px;
        height: 24px;
    }

    .container {
        padding: 60px 20px;
    }

    .logo {
        width: 200px;
    }
}