* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L3 7v5c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-9-5z'/%3E%3C/svg%3E") 12 12, auto;
}

a, button, .card-button {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L3 7v5c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-9-5z'/%3E%3C/svg%3E") 12 12, pointer;
}

:root {
    --bg-dark: #1a1a1a;
    --bg-container: #2a2a2a;
    --bg-card: #333333;
    --bg-button: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-radius: 16px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    width: 100%;
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.container {
    background-color: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: auto;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    margin-bottom: 48px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.telegram-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.telegram-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.telegram-icon svg {
    width: 24px;
    height: 24px;
}

.logo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 4px;
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: fadeInDown 0.6s ease-out;
}

.logo-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-bottom: 48px;
}

.main-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.main-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.main-card:hover::before {
    left: 100%;
}

.main-card .card-button {
    margin-top: auto;
}

.main-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-button {
    display: inline-block;
    background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);
    color: #1a1a1a;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.card-button:hover::before {
    width: 300px;
    height: 300px;
}

.card-button:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L3 7v5c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-9-5z'/%3E%3C/svg%3E") 12 12, pointer;
}

.card-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-button span {
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 0;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-button);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--bg-button) 0%, #4a4a4a 100%);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Footer */
.footer {
    margin-top: 48px;
    padding-top: 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: var(--text-secondary);
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Анимации */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 16px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .container {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .logo-section {
        flex-direction: row;
        align-items: center;
    }

    .telegram-icon {
        width: 40px;
        height: 40px;
    }

    .telegram-icon svg {
        width: 20px;
        height: 20px;
    }

    .logo-title {
        font-size: 28px;
    }

    .logo-tagline {
        font-size: 14px;
    }

    .main-cards {
        gap: 20px;
    }

    .main-card {
        padding: 24px;
        max-width: 100%;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 15px;
    }

    .card-button {
        font-size: 16px;
        padding: 12px 18px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 12px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .container {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .header {
        margin-bottom: 32px;
    }

    .logo-title {
        font-size: 24px;
    }

    .logo-tagline {
        font-size: 13px;
    }

    .main-card {
        padding: 20px;
        max-width: 100%;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-button {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 15px;
    }

    .main-content {
        margin-bottom: 32px;
    }

    .footer {
        margin-top: 32px;
    }

    .footer p {
        font-size: 12px;
    }

    .feature-cards {
        gap: 12px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-text {
        font-size: 14px;
    }
}
/* --- SEO / FAQ blocks --- */
.seo-section, .faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

.seo-section h2, .faq-section h2 {
  margin: 0 0 12px 0;
}

.seo-section p, .seo-section li, .faq-section p {
  line-height: 1.65;
}

.faq-item {
  margin: 14px 0;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.faq-item h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.faq-links {
  margin-top: 16px;
}

/* ===== Global Pages Style ===== */
html, body {
  margin: 0;
  padding: 0;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

.page h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.page h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #cfd3dc;
}

.page ul {
  padding-left: 18px;
}

.page li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page a {
  color: #4da3ff;
  text-decoration: none;
}

.page a:hover {
  text-decoration: underline;
}

.page-footer {
  margin-top: 48px;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== Footer links style ===== */
.footer {
  text-align: center;
}

.footer a {
  color: rgba(207, 211, 220, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
}

.footer a:not(:last-child)::after {
  content: " · ";
  margin: 0 6px;
  color: rgba(207, 211, 220, 0.4);
}

/* ===== Footer links FORCE override ===== */
.footer a, .footer a:visited, .footer a:active {
  color: rgba(207, 211, 220, 0.75) !important;
  text-decoration: none !important;
}

.footer a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer p {
  margin: 10px 0 0 0;
}

.footer p a + a::before {
  content: " · ";
  margin: 0 6px;
  color: rgba(207, 211, 220, 0.35);
}

/* ===== Footer FAQ ===== */
.footer-faq {
  max-width: 900px;
  margin: 32px auto 24px;
  padding: 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-faq h2 {
  font-size: 18px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-faq .faq-item {
  margin-bottom: 12px;
  padding: 0;
  background: none;
}

.footer-faq .faq-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.footer-faq .faq-item p {
  font-size: 14px;
  opacity: 0.8;
}
