/* Plans Page Specific Styles */
.plans-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('./images/background.jpg') center/cover;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.plans-hero h1 {
    font-family: 'Minecraft', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #7289DA;
}

.plans-hero p {
    font-size: 1.2rem;
    color: #ffffff;
}

.pricing-container {
    padding: 1rem 1rem;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(114, 137, 218, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #7289DA;
    box-shadow: 0 10px 30px rgba(114, 137, 218, 0.15), 
                0 0 0 1px rgba(114, 137, 218, 0.1);
}

.pro {
    border-color: #7289DA;
    box-shadow: 0 0 25px rgba(114, 137, 218, 0.15);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(30, 30, 35, 0.8) 100%);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
    background: rgba(114, 137, 218, 0.15);
    color: #7289DA;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(114, 137, 218, 0.3);
    box-shadow: 0 0 10px rgba(114, 137, 218, 0.1);
    backdrop-filter: blur(5px);
}

.plan-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.plan-header h2 {
    font-family: 'Minecraft', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.price {
    color: #ffffff;
    display: flex;
    align-items: baseline;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 0.9rem;
    color: #99AAB5;
    margin-left: 0.25rem;
}

.plan-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-feature {
    color: #cccccc;
    font-size: 0.9rem;
}

.select-plan {
    width: auto;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #7289DA 0%, #5b6eae 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
    position: relative;
    overflow: hidden;
}

.select-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 137, 218, 0.5);
    background: linear-gradient(135deg, #5b6eae 0%, #7289DA 100%);
}

.select-plan:active {
    transform: translateY(0);
}

.plan-features-comparison {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
    text-align: center;
}

.plan-features-comparison h2 {
    font-family: 'Minecraft', sans-serif;
    color: #7289DA;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(20, 20, 20, 0.5);
    padding: 2rem;
    border-radius: 100px;
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114, 137, 218, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #7289DA;
}

.feature-item h3 {
    color: #7289DA;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-container {
        padding: 2rem 0.5rem;
    }

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .plans-hero {
        height: auto;
        padding: 3rem 1rem;
    }

    .plans-hero h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix for smaller phones */
@media (max-width: 380px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .amount {
        font-size: 2rem;
    }

    .plan-features li {
        font-size: 0.9rem;
    }
}

/* Active Navigation Link */
.nav-links a.active {
    color: #7289DA;
    border-bottom: 2px solid #7289DA;
    padding-bottom: 3px;
}