/* Custom CSS for PROFITLINK - Affiliate Marketing Platform */

:root {
    --primary-lime: #ADFE1C;
    --primary-orange: #FF6B35;
    --facebook-blue: #1877F2;
    --dark-bg: #0a0b0f;
    --card-bg: rgba(26, 27, 35, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-muted: #8892b0;
    --success-color: #ADFE1C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(24, 119, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(173, 254, 28, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--facebook-blue) 0%, var(--primary-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 11, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--facebook-blue) !important;
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, var(--facebook-blue) 0%, var(--primary-lime) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    color: white;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--facebook-blue);
    color: var(--facebook-blue);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: linear-gradient(135deg, var(--facebook-blue) 0%, var(--primary-lime) 100%);
    border-color: var(--primary-lime);
    color: white;
    transform: translateY(-2px);
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(24, 119, 242, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(24, 119, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Floating animations */
.floating-facebook, .floating-coin, .floating-rocket {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-facebook {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    color: var(--facebook-blue);
}

.floating-coin {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    color: var(--primary-lime);
}

.floating-rocket {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
    color: var(--primary-orange);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced hero elements */
.hero-badge .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime)) !important;
}

.hero-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.animated-text {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(24, 119, 242, 0.5); }
    to { text-shadow: 0 0 30px rgba(24, 119, 242, 0.8); }
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--facebook-blue);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
}

.hero-stats .stat-mini {
    padding: 10px;
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-badges .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(24, 119, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

.enhanced-card {
    position: relative;
    overflow: hidden;
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(173, 254, 28, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.animated-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.glow-btn:hover {
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

/* Facebook Icon */
.facebook-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
}

/* Earning Calculator */
.earning-calculator .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* About Section */
.about-image-container {
    position: relative;
}

.mascot-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-features .feature-item i {
    font-size: 1.5rem;
    width: 40px;
}

/* Business Model & Benefits Section */
.bg-gradient-dark {
    background: linear-gradient(135deg, rgba(26, 27, 35, 0.9) 0%, rgba(15, 16, 20, 0.9) 100%);
}

.feature-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.feature-highlight .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

.bg-purple {
    background: linear-gradient(135deg, var(--primary-lime), #7ED321) !important;
}

/* How It Works Section */
.step-card {
    transition: all 0.3s ease;
    position: relative;
}

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

.step-number {
    position: relative;
    margin-bottom: 2rem;
}

.step-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--facebook-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.step-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.accordion-item {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: none !important;
    padding: 1.5rem !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(24, 119, 242, 0.1) !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231877F2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02) !important;
    padding: 1.5rem !important;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Enhanced Stats */
.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: rgba(0, 0, 0, 0.3);
}

.stat-card {
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer-section {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
    margin-top: 100px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime));
    color: white;
    transform: translateY(-2px);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--facebook-blue);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime));
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section .d-flex .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .enhanced-card {
        margin-top: 3rem;
    }
}

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

.glass-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Success/Error States */
.alert {
    border: none;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.alert-success {
    background: rgba(173, 254, 28, 0.1);
    color: var(--primary-lime);
    border-left: 4px solid var(--primary-lime);
}

.alert-danger {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-left: 4px solid var(--primary-orange);
}

/* Pricing Plans Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(26, 27, 35, 0.9) 0%, rgba(15, 16, 20, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(173, 254, 28, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(24, 119, 242, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.pricing-card {
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(173, 254, 28, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-lime);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-lime), #7ED321);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-lime);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features {
    padding: 2rem 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.pricing-feature i {
    color: var(--primary-lime);
    margin-right: 0.75rem;
    width: 16px;
}

.pricing-feature.unavailable {
    color: var(--text-muted);
}

.pricing-feature.unavailable i {
    color: #ff4757;
}

.pricing-footer {
    padding: 1.5rem;
    margin-top: auto;
}

.pricing-btn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.pricing-btn.btn-primary {
    background: linear-gradient(135deg, var(--facebook-blue), var(--primary-lime));
    color: white;
}

.pricing-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 254, 28, 0.4);
}

.pricing-btn.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-lime);
    color: var(--primary-lime);
}

.pricing-btn.btn-outline:hover {
    background: var(--primary-lime);
    color: var(--dark-bg);
}

.pricing-comparison {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    color: var(--primary-lime);
    font-weight: 600;
    background: rgba(173, 254, 28, 0.1);
}

.comparison-table td {
    color: white;
}

.comparison-table .check {
    color: var(--primary-lime);
}

.comparison-table .cross {
    color: #ff4757;
}



/* Modern Compact Pricing Plans Styles */

.pricing-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 320px;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(173, 254, 28, 0.2);
    border-color: rgba(173, 254, 28, 0.3);
}

.pricing-card-modern.featured {
    border: 2px solid #ADFE1C;
    transform: scale(1.05);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card-modern.ultimate {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(173, 254, 28, 0.05));
}

/* Ribbons */
.pricing-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #1877F2, #ADFE1C);
    color: white;
    padding: 5px 35px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-ribbon.featured-ribbon {
    background: linear-gradient(135deg, #ADFE1C, #7ED321);
    color: #000;
}

.pricing-ribbon.premium-ribbon {
    background: linear-gradient(135deg, #FF6B35, #FF4757);
}

.pricing-ribbon.ultimate-ribbon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

/* Header */
.pricing-header-modern {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(173, 254, 28, 0.1));
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1877F2, #ADFE1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
    /*box-shadow: 0 8px 20px rgba(173, 254, 28, 0.3);*/
}

.pricing-title-modern {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price-modern {
    font-size: 32px;
    font-weight: 800;
    color: #ADFE1C;
    /*text-shadow: 0 2px 10px rgba(173, 254, 28, 0.3);*/
}

/* Details */
.pricing-details {
    padding: 20px;
}

.pricing-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.detail-value {
    color: #ADFE1C;
    font-size: 16px;
    font-weight: 700;
}

/* Buttons */
.pricing-btn-modern {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1877F2, #ADFE1C);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    /*box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);*/
}

.pricing-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 254, 28, 0.4);
}

.pricing-btn-modern.featured-btn {
    background: linear-gradient(135deg, #ADFE1C, #7ED321);
    color: #000;
    font-weight: 700;
}

.pricing-btn-modern.ultimate-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card-modern.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card-modern.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-header-modern {
        padding: 25px 15px 15px;
    }
    
    .pricing-price-modern {
        font-size: 28px;
    }
    
    .pricing-details {
        padding: 15px;
    }
}

/* Animation Effects */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.pricing-card-modern:nth-child(even) {
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: 1s;
}

.pricing-card-modern:nth-child(odd) {
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Glow Effects */
.pricing-card-modern.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(173, 254, 28, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card-modern.featured:hover::before {
    opacity: 1;
}

.pricing-card-modern.ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card-modern.ultimate:hover::before {
    opacity: 1;
}




/* Modern Team Level Plan Styles */

.legend-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Levels Grid */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Level Cards */
.level-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(173, 254, 28, 0.15);
    border-color: rgba(173, 254, 28, 0.3);
}

/* Level Ribbons */
.level-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #1877F2, #ADFE1C);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bonus-ribbon {
    background: linear-gradient(135deg, #ADFE1C, #7ED321) !important;
    color: #000 !important;
}

.ultimate-ribbon {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
}

/* Level Percent */
.level-percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ADFE1C;
    text-align: center;
    margin: 1rem 0;
    /*text-shadow: 0 2px 10px rgba(173, 254, 28, 0.3);*/
}

.bonus-percent {
    color: #7ED321;
    animation: pulse 2s infinite;
}

.ultimate-percent {
    color: #FFD700;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

/* Level Rules */
.level-rules {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.rule-item i {
    color: #ADFE1C;
    width: 16px;
    text-align: center;
}

/* Special Level Styles */
.level-starter {
    border: 2px solid #ADFE1C;
    background: linear-gradient(135deg, rgba(173, 254, 28, 0.1), rgba(255, 255, 255, 0.05));
}

.level-bonus {
    border: 2px solid #7ED321;
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.1), rgba(255, 255, 255, 0.05));
}

.level-ultimate {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    position: relative;
}

.ultimate-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Summary Card */
.summary-card {
    background: linear-gradient(135deg, rgba(173, 254, 28, 0.1), rgba(24, 119, 242, 0.1));
    border: 1px solid rgba(173, 254, 28, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.unlock-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ADFE1C;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .legend-container {
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .level-percent {
        font-size: 2rem;
    }
    
    .unlock-stats {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .summary-card {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .level-card {
        padding: 1rem;
    }
    
    .level-ribbon {
        padding: 6px 16px;
        font-size: 0.7rem;
    }
    
    .level-percent {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }
    
    .rule-item {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

/* Animation Effects */
.level-card:nth-child(even) {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.level-card:nth-child(odd) {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(173, 254, 28, 0.1), transparent);
    transition: left 0.5s;
}

.level-card:hover::before {
    left: 100%;
}

/* Special Glow Effects */
.level-bonus::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7ED321, #ADFE1C, #7ED321);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-bonus:hover::after {
    opacity: 0.3;
}

.level-ultimate::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-ultimate:hover::after {
    opacity: 0.3;
}



.stat-card {
    padding: 2rem 0rem;
}



