/* Landing Page Specific Styles */
h2.small {
    font-size: 22px;
}
.landing-hero {
    text-align: center;
    padding: 30px 10px;
    margin-bottom: 40px;
}

.landing-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.landing-hero .subtitle {
    font-size: 24px;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.pricing-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.pricing-section h2 {
    margin-bottom: 40px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #39ff14;
    box-shadow: 0 8px 24px rgba(57,255,20,0.5);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #39ff14;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.pricing-card h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-shadow: none;
}

.pricing-card .price {
    font-size: 48px;
    color: #bc13fe;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: none;
}

.pricing-card .price span {
    font-size: 20px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-shadow: none;
}

.pricing-card ul li:before {
    content: "✓ ";
    color: #39ff14;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-card .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #bc13fe;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    height: auto;
}

.pricing-card .cta-btn:hover {
    background: #39ff14;
    color: #000;
}

.pricing-card.featured .cta-btn {
    background: #39ff14;
    color: #000;
}

.pricing-card.featured .cta-btn:hover {
    background: #bc13fe;
    color: #fff;
}

/* Login/Register Form Section */
.auth-section {
    max-width: 500px;
    margin: 0 auto 60px;
    padding: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.auth-section h2 {
    color: #333;
    text-shadow: none;
    margin-bottom: 30px;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: #ddd;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.auth-tab.active {
    background: #bc13fe;
    color: #fff;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    text-shadow: none;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: "Mako", serif;
}

.form-group input:focus {
    outline: none;
    border-color: #bc13fe;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #bc13fe;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #39ff14;
    color: #000;
}

.features-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #333;
    text-shadow: none;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    text-shadow: none;
    font-size: 16px;
}

.members-area-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 4px 12px;
    background: #39ff14;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(57,255,20,0.4);
    transition: all 0.3s ease;
}

.members-area-btn:hover {
    background: #bc13fe;
    color: #fff;
    box-shadow: 0 6px 16px rgba(188,19,254,0.5);
    transform: translateY(-2px);
}
