* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('fon.webp') center center / cover no-repeat fixed;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeIn 0.5s ease-in;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.love-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.love-link:hover {
    transform: scale(1.1);
}

.love-icon {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.warning {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

main {
    padding: 40px 30px;
}

section {
    margin-bottom: 40px;
}

.intro {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(173, 216, 230, 0.3);
    background: rgba(173, 216, 230, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.intro h2 {
    color: #000;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.accordion-toggle {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.accordion-toggle:hover {
    color: #764ba2;
}

.arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
    display: inline-block;
}

.accordion-toggle.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.accordion-content.active {
    max-height: 200px;
    padding: 15px 0;
}

.description {
    font-size: 1.2em;
    color: #555;
}

.description strong {
    color: #e74c3c;
    font-size: 1.1em;
}

.contact {
    text-align: center;
    padding: 30px 0;
    background: rgba(173, 216, 230, 0.15);
    border-radius: 15px;
    margin: 30px 0;
}

.admin-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
}

.contact-button:active {
    transform: translateY(-1px);
}

.contact-telegram-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-button:hover .contact-telegram-icon {
    transform: translateY(-3px) rotate(20deg) scale(1.15);
}

.telegram-bot-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed rgba(102, 126, 234, 0.3);
}

.telegram-bot-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.telegram-bot-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.telegram-bot-link:hover::before {
    left: 100%;
}

.telegram-bot-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
}

.telegram-bot-link:active {
    transform: translateY(-1px);
}

.bot-text {
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

.telegram-bot-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.telegram-bot-link:hover .telegram-bot-icon {
    transform: translateY(-3px) rotate(20deg) scale(1.15);
}

.offer {
    background: rgba(173, 216, 230, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4a90e2;
}

.offer h2 {
    color: #000;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.offer h3 {
    color: #333;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.benefits {
    list-style: none;
    padding: 0;
}

.benefits li {
    padding: 12px 0;
    font-size: 1.1em;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.benefits li:last-child {
    border-bottom: none;
}

.benefits li:hover {
    padding-left: 10px;
    color: #667eea;
}

.benefits li strong {
    color: #e74c3c;
    font-size: 1.1em;
}

.conclusion {
    margin-top: 25px;
    font-size: 1.2em;
    text-align: center;
    color: #333;
    font-weight: 500;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.requirement {
    margin-top: 15px;
    text-align: center;
    font-size: 1.1em;
    color: #555;
}

.requirement strong {
    color: #e74c3c;
    font-size: 1.2em;
}

footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

footer a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}


/* Адаптивность */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 1.8em;
    }

    main {
        padding: 25px 20px;
    }

    .intro h2,
    .offer h2 {
        font-size: 1.5em;
    }

    .contact-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .benefits li {
        font-size: 1em;
    }

    .telegram-bot-link {
        padding: 12px 25px;
        font-size: 1em;
    }

    .telegram-bot-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 1.5em;
    }

    .warning {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    main {
        padding: 20px 15px;
    }

    .offer {
        padding: 20px;
    }

    .love-icon {
        width: 70px;
        height: 70px;
    }

    .telegram-bot-link {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .telegram-bot-icon {
        width: 22px;
        height: 22px;
    }
}

