/* YA4M monetization feature start - Monthly Allies page styles */

.allies-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding: 12rem 10% 6rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.allies-section {
    padding: 6rem 10%;
    min-height: auto;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

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

.tier-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.tier-featured {
    border: 0.3rem solid var(--yellow);
    transform: scale(1.05);
}

.tier-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.tier-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.tier-header h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: bold;
    color: var(--yellow);
}

.price-period {
    font-size: 1.8rem;
    color: #666;
}

.tier-body {
    padding: 2.5rem;
}

.tier-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    font-size: 1.6rem;
    color: #333;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.8rem;
}

.tier-footer {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
}

.btn-tier {
    background: var(--yellow);
    color: #333;
    border: 0.2rem solid var(--yellow);
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    width: 100%;
}

.btn-tier:hover {
    background: transparent;
    color: var(--yellow);
}

.btn-featured {
    background: #333;
    color: #fff;
    border-color: #333;
}

.btn-featured:hover {
    background: transparent;
    color: #333;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    list-style: none;
    transition: background 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: var(--yellow);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--yellow);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .allies-hero {
        padding: 10rem 5% 4rem;
    }
    
    .allies-section {
        padding: 4rem 5%;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-featured {
        transform: scale(1);
    }
    
    .tier-featured:hover {
        transform: translateY(-5px);
    }
    
    .benefits-list {
        padding: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

/* YA4M monetization feature end */

