/* Reset базовых стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.App {
    text-align: center;
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem;
}

.App-header {
    max-width: 400px;
    margin: 0 auto;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.title {
    margin: 0 0 1.5rem 0;
    color: #1f2937;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.subtitle {
    margin: 0 0 2rem 0;
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    text-indent: 0px;
}

.subheadline {
		font-size: 1.3em;
		margin-bottom: 30px;
		color: #6b7280;
		font-weight: 400;
		line-height: 1.6;
		
	}

.bullets {
		text-align: left;
		margin: 40px 0;
		padding: 0 20px;
}
	
.bullet-item {
	margin-bottom: 25px;
	padding-left: 30px;
	position: relative;
	font-size: 1.1em;
}

.bullet-item:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
	font-size: 1.2em;
}

.micro-trigger {
	font-style: italic;
	margin: 30px 0;
	color: #666;
	font-size: 1.1em;
	padding: 0 10px;
}

.cta-button {
	display: inline-block;
	background: #0088cc;
	color: white;
	padding: 18px 40px;
	font-size: 1.2em;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	margin: 20px 0;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,136,204,0.3);
}

.cta-button:hover {
	background: #0077b3;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,136,204,0.4);
}

.under-button {
	font-size: 0.9em;
	color: #7f8c8d;
	margin-top: 10px;
}	

.telegram-link {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}

.telegram-link:hover {
    background-color: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.3);
}

.telegram-link:active {
    transform: translateY(0);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
    background-color: #f8f8f8;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.1) contrast(1.1);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .App {
        padding: 1rem;
    }

    .App-header {
        max-width: 100%;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
        text-indent: 10px;
    }

    .telegram-link {
        font-size: 1rem;
        padding: 0.7rem 1.4rem;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}