/* TraffX Homepage - Clean Modern Design */

/* Reset and Base */
.hero-modern,
.earnings-calculator,
.how-it-works,
.withdrawal-methods,
.testimonials,
.final-cta,
.features {
    width: 100%;
    clear: both;
}

/* Logo Styling */
.logo {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem !important;
    font-weight: bold;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-money {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.15;
}

.floating-money:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-money:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-money:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-icon {
    font-size: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.highlight {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Earnings Preview */
.earnings-preview {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.earning-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    min-width: 200px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.earning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.earning-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.earning-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.earning-label {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    margin: 3rem 0 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(255,215,0,0.4);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255,215,0,0.6);
}

.btn-icon {
    font-size: 1.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.95;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-icon {
    font-size: 1.3rem;
}

/* Earnings Calculator */
.earnings-calculator {
    padding: 5rem 0;
    background: #f7fafc;
}

.earnings-calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.calculator-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.input-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}

.calculator-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 1.1rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 900;
}

.calculator-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Withdrawal Methods */
.withdrawal-methods {
    padding: 5rem 0;
    background: #f8f9fa;
}

.withdrawal-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.withdrawal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.withdrawal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid #e2e8f0;
}

.withdrawal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.withdrawal-card.featured {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.withdrawal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.withdrawal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.withdrawal-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.withdrawal-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}

.withdrawal-card ul li {
    padding: 0.5rem 0;
    color: #666;
}

.withdrawal-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.withdrawal-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-rating {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-location {
    font-size: 0.9rem;
    color: #999;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(255,215,0,0.4);
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255,215,0,0.6);
}

.cta-benefits {
    margin-top: 2rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Footer */
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: white;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-modern {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .earnings-preview {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .earning-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 1.2rem 1.8rem;
        width: 100%;
    }
    
    .calculator-box {
        padding: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .withdrawal-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        gap: 0.8rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}


/* Monk Says - Daily Horoscopes Banner */
.monk-banner {
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    padding: 1.25rem 0;
    position: relative;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.monk-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
}

.monk-emoji {
    font-size: 2.5rem;
    animation: monkFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes monkFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(5deg); 
    }
}

.monk-text {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    line-height: 1.4;
}

.monk-text strong {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.monk-text span {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

.monk-btn {
    background: white;
    color: #8B4513;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.monk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #F5E6D3;
    border-color: white;
}

.monk-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .monk-banner {
        padding: 1rem 0;
    }
    
    .monk-content {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .monk-emoji {
        font-size: 2rem;
    }
    
    .monk-text strong {
        font-size: 1.1rem;
    }
    
    .monk-text span {
        font-size: 0.85rem;
    }
    
    .monk-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .monk-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .monk-emoji {
        font-size: 1.8rem;
    }
    
    .monk-text strong {
        font-size: 1rem;
    }
    
    .monk-text span {
        font-size: 0.8rem;
    }
    
    .monk-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.7rem 1.2rem;
    }
}
        font-size: 1rem;
    }
    
    
    
    
}


/* Blog News Ticker */
.news-ticker {
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    padding: 0.8rem 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-label {
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
    font-size: 0.95rem;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-items {
    display: flex;
    gap: 3rem;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-items:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.ticker-item:hover {
    color: #667eea;
}

.ticker-item::before {
    content: "•";
    margin-right: 1rem;
    color: #667eea;
}

.ticker-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.ticker-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Ticker */
@media (max-width: 768px) {
    .ticker-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ticker-label {
        width: 100%;
        text-align: center;
    }
    
    .ticker-cta {
        width: 100%;
        text-align: center;
    }
}


/* Daily Notifications Banner */
.notification-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.notification-icon {
    font-size: 2.5rem;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.notification-text {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.notification-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.notification-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}

.notification-btn {
    background: white;
    color: #10b981;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f0fdf4;
}

.notification-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.notification-close {
    position: absolute;
    top: -0.5rem;
    right: 0;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.notification-banner.hidden {
    display: none;
}

/* Notification Success State */
.notification-banner.success {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.notification-banner.success .notification-icon {
    animation: none;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .notification-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .notification-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}
