/* Глобальные переменные */
:root {
    --bg-dark: #0d1117;
    --accent-blue: #2383E2;
    --accent-hover: #1a6bb8;
    --accent-glow: rgba(35, 131, 226, 0.4);
    --text-light: #f0f6fc;
    --text-secondary: #8b949e;
    --glass-bg: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --gradient-blue: linear-gradient(135deg, #2383E2, #1a6bb8);
    --gradient-sunset: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 100%);
    --gradient-ocean: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

/* Глобальные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Фоновые эффекты */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0a1929 0%, #0d1117 100%);
    z-index: -3;
}

.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

.layer-1 {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="none" width="200" height="200"/><path fill="%232383E2" d="M60,30 Q80,10 100,30 T140,30 Q160,10 180,30 V170 Q160,190 140,170 T100,170 Q80,190 60,170 Z" opacity="0.1"/></svg>');
    background-size: 600px;
    animation: float 25s infinite linear;
}

.layer-2 {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="50" fill="%232383E2" opacity="0.05"/></svg>');
    background-size: 400px;
    animation: floatReverse 30s infinite linear;
    z-index: -1;
}

@keyframes float {
    0% { background-position: 0 0; }
    100% { background-position: 800px 800px; }
}

@keyframes floatReverse {
    0% { background-position: 0 0; }
    100% { background-position: -800px -800px; }
}

/* Навигация */
.glass-nav {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-blue);
}

.nav-link.active::after {
    width: 100%;
}

.discord-btn {
    background: var(--gradient-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* Основной контент */
.main-content {
    margin-top: 80px;
    padding: 4rem 5%;
    position: relative;
}

/* Стеклянные карточки */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(35, 131, 226, 0.3);
}

/* Герой секция */
.hero-section {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    position: relative;
}

.server-tag {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.server-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.2), rgba(245, 158, 11, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1560508171-17f7a61e1d4a?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

/* Кнопки */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-5px);
}

.cta-button:hover::before {
    left: 100%;
}

.glow {
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Секции */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(35, 131, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .icon-bg {
    background: rgba(35, 131, 226, 0.2);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.world-showcase {
    padding: 6rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-card {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 350px;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.showcase-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Стили для страницы карты */
.map-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.map-section {
    padding: 3rem;
    margin-bottom: 4rem;
}

.map-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.map-actions {
    display: flex;
    gap: 1rem;
}

.map-stats-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(35, 131, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-container {
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.map-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(13, 17, 23, 0.8);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.world-selector {
    display: flex;
    gap: 0.5rem;
}

.world-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.world-btn.active {
    background: var(--accent-blue);
    color: white;
}

.zoom-controls {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.3rem;
}

.zoom-btn {
    background: none;
    border: none;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.zoom-level {
    padding: 0 0.8rem;
    font-size: 0.9rem;
}

.map-legend {
    background: rgba(13, 17, 23, 0.8);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    max-width: 200px;
}

.map-legend h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.player {
    background: #2383E2;
}

.legend-color.spawn {
    background: #2ecc71;
}

.legend-color.village {
    background: #e67e22;
}

.live-map {
    width: 100%;
    height: 100%;
    border: none;
}

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

.map-tip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
}

.tip-icon {
    font-size: 1.8rem;
    min-width: 50px;
}

.tip-text {
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Футер */
.glass-footer {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tagline {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
}

.link-group a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .map-overlay {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .map-legend {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .server-info {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .map-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .map-container {
        height: 60vh;
    }
    
    .map-controls {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card {
        height: 250px;
    }
    
    .map-container {
        height: 50vh;
    }
    
    .server-stats {
        grid-template-columns: 1fr;
    }
}

/* Полноэкранный режим */
:fullscreen .map-container {
    border-radius: 0;
    height: 100vh;
    border: none;
}

:fullscreen .map-section {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
    height: 100vh;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(35, 131, 226, 0.4); }
    50% { box-shadow: 0 0 30px rgba(35, 131, 226, 0.6); }
    100% { box-shadow: 0 0 20px rgba(35, 131, 226, 0.4); }
}

/* Страница входа */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: radial-gradient(circle at center, #0d2b3d 0%, #0d1117 100%);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(35, 131, 226, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(35, 131, 226, 0.1) 0%, transparent 25%);
    z-index: 0;
}

.auth-container {
    background: rgba(22, 27, 34, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    padding: 3.5rem;
    width: 100%;
    max-width: 480px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(35, 131, 226, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    position: relative;
}

.auth-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.error-message {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 107, 107, 0.2);
    animation: pulse 2s infinite;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    letter-spacing: 0.5px;
}

.input-container {
    position: relative;
}

.clean-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.clean-input:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.clean-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.password-toggle {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.5rem;
    font-size: 0.95rem;
}

.remember {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-blue);
    cursor: pointer;
}

.forgot {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.forgot:hover {
    text-decoration: underline;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.glow {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 0 25px var(--accent-glow);
}

.cta-button.discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.4);
}

.cta-button.discord:hover {
    background: #4752c4;
}

.full-width {
    width: 100%;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.divider span {
    padding: 0 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.auth-footer a {
    color: var(--accent-blue);
    text-decoration: none;
    margin-left: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Адаптивность для страницы входа */
@media (max-width: 768px) {
    .auth-container {
        padding: 2.5rem 1.8rem;
    }
    
    .auth-header h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .auth-section {
        padding: 1.5rem;
    }
    
    .auth-container {
        padding: 2rem 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.7rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem;
    }
}