.contact-page {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #0f0a1e 0%, #0a0b0d 100%);
    z-index: 0;
    pointer-events: none;
}

.contact-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
}

.contact-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-logo-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.contact-custom-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(232, 160, 32, 0.2));
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(17, 19, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(22, 26, 34, 0.8);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    color: white;
}

.icon-discord {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

.icon-telegram {
    background: linear-gradient(135deg, #2196f3 0%, #673ab7 100%);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}

.icon-email {
    background: linear-gradient(135deg, #673ab7 0%, #3f51b5 100%);
    box-shadow: 0 0 20px rgba(103, 58, 183, 0.3);
}

.contact-info h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-info p .link-text {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-footer-msg {
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    .contact-logo-text {
        font-size: 2.5rem;
    }
    .contact-card {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    .contact-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
