
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e8e8ed;
    background: #0a0a0a;
    line-height: 1.6;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

section {
    padding: 80px 0;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

p {
    font-size: 17px;
    color: #a1a1a6;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #06c;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #06c 0%, #0077ed 50%, #06c 100%);
    background-size: 200% auto;
    color: white;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease, opacity 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    will-change: transform, background-position;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    background-position: 100% center;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.link-button {
    font-size: 17px;
    font-weight: 500;
    color: #06c;
}

.section-subtitle {
    font-size: 21px;
    color: #86868b;
    margin-top: 12px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    section {
        padding: 60px 0;
    }
}
