:root {
    --primary-color: #2196f3;
    --primary-gradient: linear-gradient(135deg, #2196f3 0%, #1769aa 100%);
    --secondary-color: #1769aa;
    --background-dark: #181c24;
    --background-card: #232a36;
    --text-main: #e3e8ef;
    --text-secondary: #b0b8c1;
    --border-color: #2a3442;
    --accent: #2196f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--background-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(24, 28, 36, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
}

.login-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-glow {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 2px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: block;
}

.nav-glow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 60vw;
    height: 100%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(33,150,243,0.18) 0%, rgba(33,150,243,0.09) 60%, transparent 100%);
    filter: blur(6px);
    opacity: 0.9;
    border-radius: 50%;
    pointer-events: none;
}

.nav-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20vw;
    width: 12vw;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #fff 60%, #fff 100%, transparent 100%);
    filter: blur(12px) brightness(3.5);
    opacity: 1;
    border-radius: 8px;
    animation: nav-glow-move 5s linear infinite;
    pointer-events: none;
}

@keyframes nav-glow-move {
    0% { left: -20vw; }
    100% { left: 100vw; }
}

@keyframes nav-glow-fade {
    0% { opacity: 0.7; }
    100% { opacity: 0.45; }
}

@media (max-width: 768px) {
    .nav-glow {
        height: 1.5px;
    }
    .nav-glow::before {
        width: 90vw;
    }
    .nav-glow::after {
        width: 24vw;
    }
}

/* Главна секция */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(90deg, #232a36 0%, #181c24 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Визуална част */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: var(--background-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.08);
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-group {
    display: flex;
    gap: 0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
}

.online-indicator {
    color: #4dd0e1;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-bubble {
    background: #232a36;
    padding: 1rem;
    border-radius: 15px;
    max-width: 80%;
    color: var(--text-main);
}

.message-bubble.own {
    background: var(--primary-gradient);
    color: white;
    align-self: flex-end;
}

.message-bubble p {
    margin: 0;
    font-size: 0.875rem;
}

/* Функции */
.features {
    padding: 80px 0;
    background: var(--background-card);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #1a202a;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Liquid Glass Effect for Features */
.feature-card.glass {
  background: rgba(36, 44, 60, 0.45);
  border: 1.5px solid rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 24px;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
  position: relative;
}
.feature-card.glass:hover {
  box-shadow: 0 12px 32px 0 rgba(33,150,243,0.18), 0 2px 12px 0 rgba(0,0,0,0.13);
  border: 1.5px solid rgba(33,150,243,0.18);
  background: rgba(36, 44, 60, 0.60);
}

.glass-icon {
  background: linear-gradient(135deg, #5b7cff 0%, #2196f3 100%);
  box-shadow: 0 2px 12px 0 rgba(33,150,243,0.18);
  color: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  border: 2.5px solid rgba(255,255,255,0.13);
  position: relative;
  z-index: 1;
}

/* Статистики */
.stats {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #151922;
    color: var(--text-secondary);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 2vw 0 2vw;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-bottom-left p {
  margin: 0;
  color: #e3e8ef;
  font-size: 0.98rem;
}
.footer-bottom-right {
  display: flex;
  gap: 1em;
}
.footer-link {
  color: #e3e8ef;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #2196f3;
}

.footer-apg {
  color: #2196f3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-apg:hover {
  color: #1769aa;
}
.footer-apg:active {
  color: #1ecb6b;
}

/* About страница */
.about-hero {
    padding: 120px 0 80px;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.story {
    padding: 80px 0;
    background: var(--background-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: 4px solid var(--background-dark);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.timeline-content p {
    color: var(--text-secondary);
}

.values {
    padding: 80px 0;
    background: var(--background-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #1a202a;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(33, 150, 243, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: var(--background-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #1a202a;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Support страница */
.support-hero {
    padding: 120px 0 80px;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq {
    padding: 80px 0;
    background: var(--background-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: #1a202a;
}

.faq-question {
    padding: 1.5rem;
    background: var(--background-card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #232a36;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact {
    padding: 80px 0;
    background: var(--background-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: #1a202a;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(33, 150, 243, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--background-dark);
    color: var(--text-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Чат карта */
.chat-card {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 320px;
    max-width: 350px;
    background: #232a36;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(33,150,243,0.10);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.chat-avatars {
    display: flex;
    gap: 0.5rem;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: 2px solid #181c24;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}

.online-indicator {
    color: #4dd0e1;
    font-size: 1rem;
    font-weight: 600;
}

.chat-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
}

.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.chat-message.left {
    flex-direction: row;
    justify-content: flex-start;
}

.chat-message.right {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.chat-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: 2px solid #181c24;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}

.message-bubble {
    padding: 0.85rem 1.2rem;
    border-radius: 16px;
    font-size: 1.08rem;
    max-width: 200px;
    word-break: break-word;
    box-shadow: 0 2px 8px rgba(33,150,243,0.08);
    background: #232a36;
    color: var(--text-main);
    transition: background 0.2s;
}

.message-bubble.left {
    background: #232a36;
    color: var(--text-main);
    border-bottom-left-radius: 6px;
}

.message-bubble.right {
    background: var(--primary-gradient);
    color: #fff;
    border-bottom-right-radius: 6px;
}

.next-btn {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.08rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 0.8rem 0;
    transition: background 0.2s, color 0.2s;
}

.next-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.chat-emoji-row {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.7rem;
    justify-content: flex-start;
}
.emoji-btn {
    background: transparent;
    border: none;
    font-size: 1.35rem;
    cursor: pointer;
    transition: transform 0.1s;
    border-radius: 6px;
    padding: 0.15rem 0.3rem;
}
.emoji-btn:hover, .emoji-btn:focus {
    background: #181c24;
    transform: scale(1.2);
}

.chat-input-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}
.chat-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    background: #181c24;
    color: var(--text-main);
    font-size: 1.08rem;
    outline: none;
    transition: border-color 0.2s;
}
.chat-input:focus {
    border-color: var(--primary-color);
}
.send-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.send-btn:hover {
    background: var(--primary-color);
}

/* Responsive дизайн */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title,
    .support-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
    
    .about-title,
    .support-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
} 

/* === Uiverse.io Login Button === */
.button {
  --h-button: 42px;
  --w-button: 98px;
  --round: 0.7rem;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(33, 150, 243, 0.8) 0%,
      rgba(33, 150, 243, 0) 100%
    ),
    linear-gradient(0deg, #2196f3, #2196f3);
  border-radius: var(--round);
  border: none;
  outline: none;
  padding: 10px 18px;
  font-size: 15px;
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;
}
.button::before {
  --space: 1px;
  background: linear-gradient(
    177.95deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.button::after {
  --space: 2px;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(0, 234, 255, 0.8) 0%,
      rgba(0, 234, 255, 0) 100%
    ),
    linear-gradient(0deg, #2196f3, #2196f3);
}
.button:active {
  transform: scale(0.95);
}

.fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(
    100% 75% at 55%,
    rgba(0, 234, 255, 0.8) 0%,
    rgba(0, 234, 255, 0) 100%
  );
  box-shadow: 0 0 3px black;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: var(--round);
}
.fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #e8e8e8;
  pointer-events: none;
}
.button:hover .fold {
  margin-top: -1rem;
  margin-right: -1rem;
}

.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
}
@keyframes floating-points {
  0% {
    transform: translateY(0);
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: translateY(-55px);
    opacity: 0;
  }
}
.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}
.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}
.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(10) {
  left: 65%;
  opacity: 1;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}

.inner svg.icon {
  width: 17px;
  height: 17px;
  transition: fill 0.1s linear;
}

.button:focus svg.icon {
  fill: white;
}
.button:hover svg.icon {
  fill: transparent;
  animation:
    dasharray 1s linear forwards,
    filled 0.1s linear forwards 0.95s;
}
@keyframes dasharray {
  from {
    stroke-dasharray: 0 0 0 0;
  }
  to {
    stroke-dasharray: 68 68 0 0;
  }
}
@keyframes filled {
  to {
    fill: white;
  }
} 

.info-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 0 16px;
  position: relative;
}
.info-glass {
  background: rgba(36, 44, 60, 0.45);
  border: 1.5px solid rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 24px;
  padding: 2.2rem 2rem 2.2rem 2rem;
  position: relative;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}
.info-label {
  color: #a78bfa;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  font-style: italic;
}
.info-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.18;
}
.info-title .gradient-blue {
  background: linear-gradient(90deg, #2196f3 0%, #5b7cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.info-title .gradient-pink {
  background: linear-gradient(90deg, #e94090 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.info-title .gradient-orange {
  background: linear-gradient(90deg, #ff9800 0%, #ff5e62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.info-desc {
  color: #b0b8c1;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .info-sections {
    max-width: 100%;
  }
  .info-glass {
    padding: 1.5rem 1rem;
  }
  .info-title {
    font-size: 1.3rem;
  }
  .info-desc {
    font-size: 1rem;
  }
} 

.info-bg-blobs {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  max-width: 98vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}
.info-bg-blobs::before, .info-bg-blobs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: blob-move 12s ease-in-out infinite alternate;
}
.info-bg-blobs::before {
  width: 340px;
  height: 340px;
  left: 0;
  top: 10%;
  background: linear-gradient(135deg, #2196f3 0%, #a78bfa 100%);
  animation-delay: 0s;
}
.info-bg-blobs::after {
  width: 260px;
  height: 260px;
  right: 0;
  bottom: 5%;
  background: linear-gradient(135deg, #ff9800 0%, #e94090 100%);
  opacity: 0.32;
  animation-delay: 2s;
}
@keyframes blob-move {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.15) translateY(30px); }
}
.info-glass-big {
  background: rgba(36, 44, 60, 0.45);
  border: 1.5px solid rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 32px;
  padding: 2.5rem 2.2rem;
  position: relative;
  max-width: 900px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  z-index: 1;
}
.info-row {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  justify-content: space-between;
}
.info-block {
  padding: 0 0 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.info-divider {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 0%, #2196f3 20%, #a78bfa 80%, transparent 100%);
  border-radius: 2px;
  margin: 1.2rem 0;
  opacity: 0.7;
  box-shadow: 0 0 8px 2px #2196f344;
  animation: pulse-divider 1.6s infinite alternate;
}
@keyframes pulse-divider {
  0% { opacity: 0.7; box-shadow: 0 0 8px 2px #2196f344; }
  100% { opacity: 1; box-shadow: 0 0 16px 4px #a78bfa66; }
}
@media (max-width: 1100px) {
  .info-row {
    flex-direction: column;
    gap: 2.2rem;
  }
  .info-divider {
    width: 100%;
    min-width: 0;
    height: 2.5px;
    margin: 1.2rem 0;
    background: linear-gradient(90deg, transparent 0%, #2196f3 20%, #a78bfa 80%, transparent 100%);
    box-shadow: 0 0 8px 2px #2196f344;
  }
  .info-block {
    padding: 0;
    align-items: flex-start;
  }
} 

/* --- Нови абонаментни планове (светла тема) --- */
.plans-section {
  background: #fff;
  padding: 56px 0 64px 0;
  position: relative;
  z-index: 1;
}
.plans-header {
  text-align: center;
  margin-bottom: 36px;
}
.plans-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1769aa;
  margin: 0 auto 0.5em auto;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.plans-cards-wrapper {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.plan-card.new-plan {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #e3e8ef;
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.07), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  backdrop-filter: blur(0px) saturate(1.1);
  -webkit-backdrop-filter: blur(0px) saturate(1.1);
  border-radius: 24px;
  padding: 0;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
  margin-bottom: 0;
}
.plan-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.1rem 1.5rem 2.1rem 1.5rem;
  gap: 1.2rem;
}
.plan-card-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #232a36;
  margin-bottom: 0.2em;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.plan-card-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1769aa;
  margin-bottom: 0.5em;
}
.plan-card-price span {
  font-size: 1.1rem;
  color: #7a869a;
  font-weight: 400;
  margin-left: 0.2em;
}
.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
  color: #232a36;
  font-size: 1.08rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: flex-start;
}
.plan-card-features li {
  position: relative;
  padding-left: 1.5em;
}
.plan-card-features li::before {
  content: '';
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: linear-gradient(90deg, #2196f3 0%, #a78bfa 100%);
  position: absolute;
  left: 0;
  top: 0.45em;
}
/* --- Стил за премиум бутон Купи --- */
.plan-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.22);
  color: #1769aa;
  font-weight: 800;
  font-size: 1.15rem;
  border: 2px solid #2196f3;
  border-radius: 28px;
  padding: 1.05rem 2.8rem;
  box-shadow: 0 6px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.08) inset;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  background-clip: padding-box;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  transition: color 0.25s, box-shadow 0.25s, border 0.25s, background 0.25s;
}
.plan-card-btn i {
  font-size: 1.15em;
  color: inherit;
  transition: color 0.25s;
  margin-right: 0.7em;
}
.plan-card-btn::after {
  content: '';
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.12) 100%);
  opacity: 0.0;
  transform: skewX(-24deg);
  transition: opacity 0.2s;
  pointer-events: none;
}
.plan-card-btn:hover, .plan-card-btn:focus {
  color: #2196f3;
  box-shadow: 0 12px 36px 0 rgba(33,150,243,0.18), 0 2px 12px 0 rgba(0,0,0,0.13);
  border-color: #2196f3;
}
.plan-card-btn:hover::after, .plan-card-btn:focus::after {
  opacity: 0.7;
  animation: glass-shine 1.1s cubic-bezier(.4,.7,.5,1) 1;
}
@keyframes glass-shine {
  0% {
    left: -75%;
    opacity: 0.0;
  }
  10% {
    opacity: 0.7;
  }
  60% {
    left: 120%;
    opacity: 0.7;
  }
  100% {
    left: 120%;
    opacity: 0.0;
  }
}
@media (max-width: 600px) {
  .plan-card-btn {
    font-size: 1.02rem;
    padding: 0.7em 1.2em;
    border-radius: 18px;
    width: 100%;
  }
}
.plan-card-badge {
  background: linear-gradient(90deg, #2196f3 0%, #a78bfa 100%);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 0.18em 1.1em;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 #a89af733;
  position: static;
  margin-bottom: 0.7em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}
.plan-popular {
  border: 2.5px solid #a78bfa;
  box-shadow: 0 8px 32px 0 #a78bfa22, 0 1.5px 8px 0 rgba(0,0,0,0.06);
}
@media (max-width: 1100px) {
  .plans-cards-wrapper {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .plan-card.new-plan {
    min-width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .plans-cards-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .plan-card.new-plan {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}
@media (max-width: 600px) {
  .plans-section {
    padding: 32px 0 32px 0;
  }
  .plans-title {
    font-size: 1.3rem;
  }
  .plan-card-inner {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    gap: 0.7rem;
  }
  .plan-card-title {
    font-size: 1.25rem;
  }
  .plan-card-price {
    font-size: 1.3rem;
  }
  .plan-card-price span {
    font-size: 0.98rem;
  }
  .plan-card-features {
    font-size: 0.98rem;
    gap: 0.3em;
  }
  .plan-card-btn {
    font-size: 0.98rem;
    padding: 0.6em 1.3em;
    border-radius: 12px;
  }
  .plan-card-badge {
    font-size: 0.93rem;
    padding: 0.18em 0.8em;
    border-radius: 10px;
    margin-bottom: 0.5em;
  }
} 

.intro-section {
  background: #18191c;
  text-align: center;
  padding: 48px 0 32px 0;
  margin-bottom: 0;
}
.intro-badge {
  display: inline-block;
  background: #a89af7;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 0.5em 1.6em;
  margin-bottom: 28px;
  margin-top: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px 0 #a89af733;
}
.intro-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  margin-top: 0;
  line-height: 1.18;
}
.intro-subtitle {
  font-size: 1.45rem;
  color: #b0b8c1;
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
}
@media (max-width: 600px) {
  .intro-title {
    font-size: 1.45rem;
  }
  .intro-subtitle {
    font-size: 1.05rem;
  }
  .intro-badge {
    font-size: 0.98rem;
    padding: 0.45em 1.1em;
  }
} 

.info-intro {
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding-top: 32px;
  padding-bottom: 0;
}
@media (max-width: 600px) {
  .info-intro {
    padding-top: 18px;
  }
} 

.plans-header {
  width: 100%;
  text-align: center;
  margin-bottom: 38px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.plans-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1769aa;
  margin: 0 auto 0.5em auto;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
@media (max-width: 600px) {
  .plans-title {
    font-size: 1.3rem;
  }
  .plans-header {
    margin-bottom: 18px;
    margin-top: 18px;
  }
} 

.reviews-section {
  background: #181c24;
  padding: 64px 0 72px 0;
  text-align: center;
}
.reviews-header {
  margin-bottom: 38px;
}
.reviews-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.reviews-subtitle {
  color: #b0b8c1;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 0;
  font-weight: 400;
}
.reviews-cards {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.review-card {
  background: rgba(36,44,60,0.95);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}
.review-quote {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.7rem;
  line-height: 1;
}
.review-text {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: auto;
  font-size: 1.1rem;
}
.review-emoji {
  font-size: 2.1rem;
  display: inline-block;
}
.review-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.review-premium {
  background: linear-gradient(90deg, #a89af7 0%, #2196f3 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.18em 0.8em;
  border-radius: 10px;
  margin-left: 0.7em;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 #a89af733;
}
@media (max-width: 900px) {
  .reviews-cards {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
  }
  .review-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
} 

/* --- Discord Glass Section --- */
.discord-glass-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 64px 0;
  background: none;
  position: relative;
  z-index: 2;
}
.discord-glass-outline {
  position: relative;
  border-radius: 28px;
  padding: 0;
  background: none;
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  z-index: 2;
}
.discord-glass-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2.5px;
  background: linear-gradient(90deg, #2196f3, #a78bfa, #ff9800, #e94090, #2196f3 90%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  animation: border-glow-move 4s linear infinite;
}
.discord-glass-content {
  position: relative;
  z-index: 2;
  background: rgba(36, 44, 60, 0.45);
  border-radius: 24px;
  padding: 0.55rem 3.2rem 0.55rem 3.2rem;
  margin: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  gap: 2.6rem;
  max-width: 1100px;
  min-height: 56px;
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.discord-glass-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.3em 0.7em 0.3em 0.7em;
}
.discord-glass-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
  margin-top: 0;
  line-height: 1.18;
}
.discord-glass-desc {
  color: #b0b8c1;
  font-size: 0.98rem;
  font-weight: 400;
  margin: 0;
}
.discord-glass-buttons {
  display: flex;
  flex-direction: row;
  gap: 1.1em;
  align-items: center;
}
.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 0.7em 1.7em;
  border-radius: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  background: rgba(255,255,255,0.10);
  color: #fff;
  box-shadow: 0 2px 8px 0 #2196f344;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.discord-btn-main {
  background: linear-gradient(90deg, #5865f2 0%, #2196f3 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 #5865f244;
}
.discord-btn-main:hover {
  background: linear-gradient(90deg, #2196f3 0%, #5865f2 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 #2196f388;
}
.discord-btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid #5865f2;
}
.discord-btn-secondary:hover {
  background: #5865f2;
  color: #fff;
}
@media (max-width: 900px) {
  .discord-glass-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    align-items: stretch;
  }
  .discord-glass-buttons {
    justify-content: flex-start;
  }
  .discord-glass-title {
    font-size: 1.3rem;
  }
  .discord-glass-desc {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .discord-glass-section {
    padding: 0 0 24px 0;
    margin: 0;
    width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
  .discord-glass-outline {
    border-radius: 12px;
    margin: 0;
    width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .discord-glass-outline::before {
    border-radius: 12px;
  }
  .discord-glass-content {
    max-width: 100vw;
    width: 100vw;
    min-width: 0;
    padding: 0.7rem 0.1rem 0.7rem 0.1rem;
    margin: 0;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .discord-glass-text {
    padding: 0.2em 0.2em 0.2em 0.2em;
    align-items: center;
    text-align: center;
  }
  .discord-glass-buttons {
    flex-direction: row;
    gap: 0.6em;
    justify-content: center;
  }
  .discord-btn {
    font-size: 0.93rem;
    padding: 0.55em 1.1em;
    border-radius: 10px;
  }
  .discord-glass-title {
    font-size: 1rem;
  }
  .discord-glass-desc {
    font-size: 0.89rem;
  }
} 

/* Цветни петна (blobs) за фона на абонаментните планове */
.plans-bg-blobs {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  max-width: 98vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}
.plans-bg-blobs::before, .plans-bg-blobs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: blob-move 12s ease-in-out infinite alternate;
}
.plans-bg-blobs::before {
  width: 340px;
  height: 340px;
  left: 0;
  top: 10%;
  background: linear-gradient(135deg, #2196f3 0%, #a78bfa 100%);
  animation-delay: 0s;
}
.plans-bg-blobs::after {
  width: 260px;
  height: 260px;
  right: 0;
  bottom: 5%;
  background: linear-gradient(135deg, #ff9800 0%, #e94090 100%);
  opacity: 0.32;
  animation-delay: 2s;
}
@keyframes blob-move {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.15) translateY(30px); }
}
.plans-section {
  position: relative;
  z-index: 1;
} 