/* Auth & Pricing Pages Extensions */

.auth-container, .pricing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.auth-card .logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    color: #333333;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,255,255,0.2);
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.divider::before { margin-right: 10px; }
.divider::after { margin-left: 10px; }

.auth-links {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-links a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: var(--neon-purple);
}

/* Pricing Styles */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, var(--text-main), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

.pricing-card {
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(76, 201, 240, 0.5);
}

.pricing-card.featured {
    border: 2px solid var(--neon-purple);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(181, 23, 158, 0.2);
    animation: premium-glow 3s infinite alternate;
}

@keyframes premium-glow {
    0% { box-shadow: 0 10px 40px rgba(181, 23, 158, 0.2); border-color: rgba(181, 23, 158, 0.5); }
    100% { box-shadow: 0 15px 50px rgba(76, 201, 240, 0.5); border-color: var(--neon-blue); }
}

.pricing-card.featured:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 15px 60px rgba(76, 201, 240, 0.6);
    animation: none;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-main);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex: 1;
}

.features-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
}

.features-list i.fa-check {
    color: var(--neon-blue);
    font-size: 1.2rem;
}

.features-list i.fa-xmark {
    color: var(--text-muted);
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}
