.elementor-11 .elementor-element.elementor-element-97b0b50{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-716b9b5 *//* Base Styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0f172a;
}

.tips-page {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffff, #1e3a8a, #2563eb);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.tips-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 30%),
        repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
    pointer-events: none;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.02); }
    100% { transform: rotate(0deg) scale(1); }
}

.container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #c7d2fe, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    opacity: 0.8;
    position: relative;
    display: inline-block;
}

.hero p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: underlineSlide 3s ease-in-out infinite;
}

@keyframes underlineSlide {
    0%, 100% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
}

/* Stats Section with Glow */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
}

.hero-stats::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.stat {
    background: rgba(255,255,255,0.08);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.stat:hover::before {
    opacity: 1;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.3; }
}

.stat h2 {
    margin: 0;
    font-size: 28px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #fff, #93c5fd, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    font-size: 36px;
    font-weight: bold;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.tip-card {
    background: white;
    color: #111;
    padding: 25px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #2563eb, #7c3aed, #2563eb) border-box;
    border: 2px solid transparent;
    transform-style: preserve-3d;
    cursor: pointer;
}

.tip-card:nth-child(1) { animation-delay: 0.1s; }
.tip-card:nth-child(2) { animation-delay: 0.2s; }
.tip-card:nth-child(3) { animation-delay: 0.3s; }
.tip-card:nth-child(4) { animation-delay: 0.4s; }
.tip-card:nth-child(5) { animation-delay: 0.5s; }
.tip-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        -10px 10px 20px rgba(0,0,0,0.2),
        10px -10px 20px rgba(37,99,235,0.1);
}

.tip-card::after {
    content: '⚡ HOT TIP';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    color: #2563eb;
    opacity: 0;
    transition: opacity 0.3s;
}

.tip-card:hover::after {
    opacity: 1;
    animation: blink 1s infinite;
}

.tip-card h3 {
    margin-top: 10px;
}

.league {
    font-size: 14px;
    color: #666;
}

.prediction {
    font-weight: bold;
    margin: 10px 0;
    font-size: 18px;
    color: #2563eb;
    text-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
    animation: neonPulse 2s ease-in-out infinite;
}

.prediction::before {
    content: '⚽';
    margin-right: 8px;
    display: inline-block;
    animation: ballSpin 2s linear infinite;
}

@keyframes ballSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 5px rgba(37, 99, 235, 0.3); }
    50% { text-shadow: 0 0 20px rgba(37, 99, 235, 0.7); }
}

.odds {
    margin-bottom: 15px;
}

.tip-card button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2563eb;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.tip-card button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.tip-card button:hover::after {
    animation: ripple 1s ease-out;
}

.tip-card button:active {
    transform: scale(0.95);
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Badges */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: badgePop 0.5s ease-out, float 3s ease-in-out infinite;
}

.badge::before {
    content: '★';
    font-size: 14px;
    animation: starSpin 3s linear infinite;
}

.badge.blue { background: #2563eb; }
.badge.blue::before { content: '💎'; animation: none; }
.badge.green { background: #16a34a; }
.badge.green::before { content: '✓'; animation: none; }
.badge.purple { background: #7c3aed; }
.badge.purple::before { content: '⚡'; }

@keyframes badgePop {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Featured Card */
.tip-card[data-featured="true"] {
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0%, 100% { border-color: rgba(37, 99, 235, 0.5); }
    50% { border-color: rgba(124, 58, 237, 0.8); }
}

/* Combo Section */
.combo {
    margin-top: 70px;
}

.combo-box {
    background: white;
    color: #111;
    padding: 30px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.combo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.combo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.combo-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.combo-box li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.combo-box li:hover {
    background: linear-gradient(90deg, rgba(37,99,235,0.1), transparent);
    transform: translateX(5px);
}

.combo-box li::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: left 0.2s, opacity 0.2s;
    color: #2563eb;
}

.combo-box li:hover::before {
    left: -5px;
    opacity: 1;
}

.combo-odds {
    text-align: center;
}

.combo-odds span {
    font-size: 32px;
    font-weight: bold;
    color: #2563eb;
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

.combo-odds span::before,
.combo-odds span::after {
    content: '⚡';
    position: absolute;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s;
}

.combo-odds span::before {
    left: -20px;
    transform: rotate(-20deg);
}

.combo-odds span::after {
    right: -20px;
    transform: rotate(20deg);
}

.combo-odds:hover span::before,
.combo-odds:hover span::after {
    opacity: 1;
    animation: lightning 0.5s ease-out;
}

@keyframes lightning {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.2); }
    50% { transform: rotate(10deg) scale(1.2); }
    75% { transform: rotate(0deg) scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Analysis Section */
.analysis {
    margin-top: 70px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.analysis-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.analysis-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #2563eb);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.analysis-card:hover::before {
    transform: translateX(0);
}

.analysis-card h3 {
    position: relative;
    display: inline-block;
}

.analysis-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    animation: lineGrow 1.5s ease-out forwards;
}

@keyframes lineGrow {
    to { width: 100%; }
}

/* VIP Section */
.vip {
    margin-top: 80px;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    border-radius: 16px;
    animation: slideInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.vip::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

.vip::after {
    content: '🎉🎊✨';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    opacity: 0;
    animation: confetti 5s linear infinite;
    pointer-events: none;
}

.vip:hover::after {
    opacity: 0.3;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes confetti {
    0% { transform: translateY(-100%) rotate(0deg); }
    100% { transform: translateY(200%) rotate(360deg); }
}

.vip-btn {
    margin-top: 20px;
    padding: 14px 40px;
    border: none;
    background: white;
    color: #2563eb;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.vip-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(37, 99, 235, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.vip-btn:hover::after {
    animation: ripple 1s ease-out;
}

.vip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Particles */
.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.particle:nth-child(1) { 
    animation: floatParticle 8s linear infinite; 
    top: 10%; 
    left: 10%; 
}

.particle:nth-child(2) { 
    animation: floatParticle 12s linear infinite; 
    top: 30%; 
    left: 80%; 
}

.particle:nth-child(3) { 
    animation: floatParticle 10s linear infinite; 
    top: 70%; 
    left: 20%; 
}

@keyframes floatParticle {
    0% { 
        transform: translateY(0) translateX(0) rotate(0deg); 
        opacity: 0; 
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { 
        transform: translateY(-100px) translateX(20px) rotate(360deg); 
        opacity: 0; 
    }
}

/* Animated Scroll Indicator */
.tips-page::after {
    content: '↓ Scroll for more tips ↓';
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    animation: bounce 2s infinite;
    z-index: 100;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tips-page::after {
        display: none;
    }
    
    .tip-card {
        animation: none;
    }
    
    .stat:hover {
        transform: scale(1.02);
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}/* End custom CSS */