/* Fanpage Specific Styles */

/* Fan Hero Section */
.fan-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.fan-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-card:hover,
.showcase-card.active {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    transform: translateX(10px);
}

.showcase-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.showcase-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Fan Offers Section */
.fan-offers-section {
    background: #111;
    padding: 6rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.offer-card.featured {
    border: 2px solid #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-price {
    margin-bottom: 2rem;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.discounted-price {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 1rem;
}

.discount-percent {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    color: #ccc;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.offer-features i {
    color: #667eea;
    font-size: 1rem;
}

.offer-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.timer-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    text-align: center;
}

.time-value {
    display: block;
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 700;
}

.time-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Membership Section */
.membership-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 6rem 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.membership-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.membership-card.featured {
    border: 2px solid #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.05);
}

.membership-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.membership-header {
    margin-bottom: 2rem;
}

.tier-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.membership-card h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tier-price {
    color: #667eea;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.membership-header p {
    color: #ccc;
    font-size: 1rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.tier-features li {
    color: #ccc;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.tier-features i {
    color: #667eea;
    font-size: 1rem;
}

.tier-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Community Section */
.community-section {
    background: #111;
    padding: 6rem 0;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-stats span {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-stats i {
    color: #667eea;
}

.feature-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Exclusive Content Section */
.exclusive-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 6rem 0;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.exclusive-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.exclusive-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.exclusive-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.exclusive-item:hover .play-overlay {
    transform: scale(1.1);
    background: #fff;
}

.exclusive-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.exclusive-content {
    padding: 2rem;
}

.exclusive-content h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exclusive-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.exclusive-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.exclusive-meta span {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exclusive-meta i {
    color: #667eea;
}

.exclusive-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.exclusive-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Join Section */
.join-section {
    background: #111;
    padding: 6rem 0;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-info h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-info p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.join-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
}

.benefit-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.join-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fan-signup-form .form-group {
    margin-bottom: 1.5rem;
}

.fan-signup-form label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.fan-signup-form input,
.fan-signup-form select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fan-signup-form input:focus,
.fan-signup-form select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.tag-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #ccc;
    font-size: 0.9rem;
}

.tag-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.tag-label span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-label input[type="checkbox"]:checked + span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.offer-card,
.membership-card,
.feature-card,
.exclusive-item {
    animation: slideInUp 0.6s ease forwards;
}

.showcase-card {
    animation: fadeInScale 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fan-showcase {
        max-width: 100%;
    }
    
    .showcase-card {
        text-align: center;
    }
    
    .offers-grid,
    .membership-grid,
    .community-features,
    .exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .exclusive-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .interest-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .offer-card,
    .membership-card,
    .feature-card,
    .join-form {
        padding: 1.5rem;
    }
    
    .tier-price {
        font-size: 2rem;
    }
    
    .discounted-price {
        font-size: 1.5rem;
    }
    
    .join-info h2 {
        font-size: 2rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success States */
.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    color: #fff !important;
}

.success::before {
    content: '✓';
    margin-right: 0.5rem;
}
