/**
 * Connect Page Styles
 */

.page-connect {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.connect-header h1 {
    font-size: 3rem;
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.connect-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.9);
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.social-card.x-twitter:hover {
    border-color: #fff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.social-icon {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.social-card.youtube:hover .social-icon {
    color: #ff0000;
}

.social-card.x-twitter:hover .social-icon {
    color: #fff;
}

.social-card h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.social-handle {
    font-size: 1.1rem;
    color: rgba(255, 215, 0, 0.9);
    margin: 0 0 1rem;
    font-weight: 600;
}

.social-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.social-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-card.youtube:hover .social-cta {
    background: #ff0000;
}

.social-card.x-twitter:hover .social-cta {
    background: #000;
    border: 1px solid #fff;
}

.connect-footer {
    margin-top: 2rem;
}

.connect-footer p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 180, 0, 0.9) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .page-connect {
        padding: 2rem 1rem;
    }

    .connect-header h1 {
        font-size: 2.2rem;
    }

    .connect-subtitle {
        font-size: 1.2rem;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-card {
        padding: 2rem 1.5rem;
    }

    .social-icon svg {
        width: 48px;
        height: 48px;
    }

    .social-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .connect-header h1 {
        font-size: 1.8rem;
    }

    .social-card {
        padding: 1.5rem 1rem;
    }
}
