/* ============================================
   User Dashboard & Common Styles
   Shared between user pages and homepage
   ============================================ */

/* CSS Variables */
:root {
            --tp-common-white: #ffffff;
            --tp-common-black: #141414;
            --tp-common-black-2: #232323;
            --tp-common-black-7: #0E0F11;
            --tp-common-black-8: #1a1b1e;
            --tp-common-black-9: #16302f;
            --tp-common-black-10: #21212D;
            --tp-common-cream: #f9f4e8;
            --tp-common-cream-3: #ffffe6;
            --tp-common-yellow: #ffc446;
            --tp-common-yellow-green: #E9FF48;
            --tp-common-green-light: #D0FF71;
            --tp-common-green-regular: #C1ED00;
            --tp-common-pink-light: #FDE1DA;
            --tp-common-paste: #43D4A0;
            --tp-common-red: #FF4851;
            --tp-common-red-2: #FF481F;
            --tp-common-red-3: #FF5722;
            --tp-common-blue: #7463FF;
            --tp-grey-1: #f8f8f8;
            --tp-grey-2: #f1f1f1;
            --tp-grey-3: #F8F8FB;
            --tp-grey-4: #F6F8EF;
            --tp-text-body: #2e2d2d;
            --tp-theme-green: #A0FF27;
            --tp-theme-pink: #EC6FD5;
            --tp-theme-yellow: #FFB701;
            --tp-border-1: #EAEBED;
            --tp-border-2: #e7e7e7;
            --tp-ff-body: 'Inter', sans-serif;
            --tp-ff-heading: 'Inter', sans-serif;
            --tp-ff-poppins: 'Poppins', sans-serif;
            --tp-ff-clash-medium: 'ClashDisplay-Medium', serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--tp-ff-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--tp-text-body);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--tp-ff-heading);
            font-weight: 600;
            line-height: 1.2;
            color: var(--tp-common-black);
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        a:hover {
            color: inherit;
        }
		
		.body-bg1{
			background-color:#f8fafc;
		}

        /* Header Styles */
        .tp-header-area {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 10px 0;
            transition: all 0.3s ease-in-out;
        }

        .tp-header-area.header-sticky {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .tp-header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .tp-header-left {
            display: flex;
            align-items: center;
        }

        .tp-header-right {
            display: flex;
            align-items: center;
            margin-left: auto;
        }

        .tp-header-logo a {
            font-size: 28px;
            font-weight: 700;
            color: var(--tp-common-white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-sticky .tp-header-logo a {
            color: var(--tp-common-black);
        }
		
		.header-sticky li.header-btn {
			padding-top: 3px !Important;
        }

        .tp-header-logo a i {
            color: var(--tp-theme-green);
        }

        .tp-header-menu {
            display: flex;
            align-items: center;
        }

        .tp-header-menu nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 20px;
        }

        .tp-header-menu nav ul li a {
            color: var(--tp-common-white);
            font-weight: 600;
            font-size: 16px;
            padding: 10px 0;
            display: block;
            position: relative;
        }

        .header-sticky .tp-header-menu nav ul li a {
            color: var(--tp-common-black);
        }
		
		.tp-header-menu nav ul li a.header-login:hover::after, .tp-header-menu nav ul li a.header-register:hover::after {
            background: none;
			display:none;
        }

        .tp-header-menu nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--tp-theme-green);
            transition: width 0.3s ease;
        }

        .tp-header-menu nav ul li a:hover::after {
            width: 100%;
        }

        .tp-header-menu nav ul li a.header-login,
        .tp-header-menu nav ul li a.header-register {
            padding: 8px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
        }
		
		.tp-header-menu nav ul header-btn {
            margin: 0px 2px;
			padding-top: 3px;
        }

        .tp-header-menu nav ul li a.header-login {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .tp-header-menu nav ul li a.header-login:hover {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
        }
		
		

        .header-sticky .tp-header-menu nav ul li a.header-login {
            border-color: rgba(0,0,0,0.2);
            color: var(--tp-common-black);
        }

        .header-sticky .tp-header-menu nav ul li a.header-login:hover {
            background: var(--tp-theme-green);
            border-color: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
        }

        .tp-header-menu nav ul li a.header-register {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
            margin-left: 5px;
        }

        .tp-header-menu nav ul li a.header-register:hover {
            background: var(--tp-common-green-regular);
        }

        .tp-header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Toggle button - only visible on mobile/tablet */
        .tp-header-bar {
            display: none;
        }

        .tp-header-bar button {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--tp-theme-green);
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .tp-header-bar button:hover {
            transform: scale(1.05);
        }

        .tp-header-bar button span {
            width: 24px;
            height: 2px;
            background: var(--tp-text-on-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
		
		.analysis
			{
    background-color: #4d2aff;
    color: white;
    padding: 2px 10px;
    font-size: 0.7rem;
    border-radius: 5px;
}
		
		.analysis:hover
			{
    background-color: #ededed;
}
		

        .tp-header-bar button span:nth-child(2) {
            width: 18px;
        }

        /* Offcanvas Menu - Slide from Right */
        .tp-offcanvas-area {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .tp-offcanvas-area.opened {
            visibility: visible;
            opacity: 1;
        }

        .body-overlay {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 99;
            width: 100%;
            height: 100%;
            visibility: hidden;
            opacity: 0;
            transition: all 0.45s ease-in-out;
            background: rgba(24, 24, 24, 0.6);
        }

        .body-overlay.opened {
            opacity: 1;
            visibility: visible;
        }

        .tp-offcanvas-wrapper {
            position: fixed;
            top: 0;
            right: 0;
            width: 450px;
            max-width: 90%;
            height: 100vh;
            z-index: 999;
            padding: 40px;
            overflow-y: scroll;
            transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            background: #FFF;
            transform: translateX(calc(100% + 80px));
        }

        .tp-offcanvas-area.opened .tp-offcanvas-wrapper {
            transform: translateX(0);
        }

        .tp-offcanvas-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .tp-offcanvas-logo a {
            font-size: 24px;
            font-weight: 700;
            color: var(--tp-common-black);
        }

        .tp-offcanvas-close-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.1);
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .tp-offcanvas-close-btn:hover {
            transform: rotate(90deg);
            background: var(--tp-common-black);
            color: white;
        }

        .tp-offcanvas-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tp-offcanvas-menu ul li {
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .tp-offcanvas-menu ul li a {
            padding: 15px 0;
            display: block;
            font-size: 18px;
            font-weight: 500;
            color: var(--tp-common-black);
            transition: all 0.3s ease;
        }

        .tp-offcanvas-menu ul li a:hover {
            color: var(--tp-common-red-3);
            padding-left: 10px;
        }

        .tp-offcanvas-contact {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .tp-offcanvas-contact h4 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .tp-offcanvas-contact ul {
            list-style: none;
            padding: 0;
        }

        .tp-offcanvas-contact ul li {
            padding: 8px 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tp-offcanvas-contact ul li i {
            color: var(--tp-theme-green);
        }

        .tp-offcanvas-social {
            margin-top: 30px;
        }

        .tp-offcanvas-social ul {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tp-offcanvas-lang {
            margin-top: 20px;
        }
        .tp-offcanvas-lang label {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            display: block;
            margin-bottom: 8px;
        }
        .tp-offcanvas-lang select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            background: white;
            cursor: pointer;
        }
        .tp-offcanvas-social ul li a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tp-common-black);
            padding: 0;
            transition: all 0.3s ease;
        }

        .tp-offcanvas-social ul li a:hover {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
            border-color: var(--tp-theme-green);
            padding: 0;
        }

/* Language Selector */
.lang-selector { position: relative; padding-top: 10px;}
.lang-btn { 
     display: flex;
            align-items: center;
            gap: 8px;
            padding: 2px 7px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            color: var(--tp-common-white);
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); }
.lang-btn i { font-size: 11px; transition: transform 0.3s ease; }
.lang-btn.active i { transform: rotate(180deg); }
.header-sticky .lang-btn { color: var(--tp-common-black); border-color: rgba(0,0,0,0.2); }
.lang-dropdown { 
    position: absolute; 
            top: 100%; 
            right: 0; 
            background: white; 
            border-radius: 14px; 
            box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05); 
            min-width: 180px; 
            display: none; 
            z-index: 1000;
            margin-top: 10px;
            padding: 8px 0;
            animation: dropdownFade 0.2s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.lang-dropdown.show { display: block; }
.lang-dropdown a { 
    display: flex; 
            align-items: center; 
            gap: 12px; 
            padding: 8px 18px !important; 
            color: #333333 !important; 
            font-weight: 500;
            font-size: 13px !important;
            line-height: 1.4;
            transition: all 0.2s ease;
}
.lang-dropdown a:hover { 
    background: linear-gradient(90deg, rgba(160, 255, 39, 0.15) 0%, transparent 100%);
}
.lang-dropdown a img { width: 20px; height: 12px; border-radius: 3px; object-fit: cover; margin-right: 5px; }
.lang-dropdown a span { font-size: 12px; }

/* User Account Dropdown */
.user-account { position: relative; padding-top: 2px;}
.user-account-btn { display: flex; align-items: center; gap: 10px; padding: 8px 15px; background: var(--tp-theme-green); border-radius: 10px; cursor: pointer; transition: all 0.3s ease; }
.user-account-btn:hover { box-shadow: 0 4px 15px rgba(160, 255, 39, 0.4); }
.user-account-btn .avatar { width: 25px; height: 25px; border-radius: 50%; background: var(--tp-common-black); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.user-account-btn span { font-weight: 600; color: var(--tp-text-on-primary); font-size: 14px; }
.user-account-btn i { font-size: 11px; color: var(--tp-text-on-primary); transition: transform 0.3s ease; }
.user-account-btn.active i { transform: rotate(180deg); }

.user-dropdown { 
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: white; 
    border-radius: 16px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05); 
    min-width: 240px; 
    display: none; 
    z-index: 1000; 
    margin-top: 12px;
    padding: 8px 0;
    animation: dropdownFade 0.2s ease;
}
.user-dropdown.show { display: block; }
.user-dropdown-header { padding: 15px 20px 10px; border-bottom: 1px solid #eee; margin-bottom: 8px; }
.user-dropdown-header h4 { font-size: 14px; margin: 0; color: var(--tp-common-black); font-weight: 600; }
.user-dropdown-header p { font-size: 12px; color: #888; margin: 0; }
.user-dropdown a { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 8px 20px !important; 
    color: #333333 !important; 
    font-weight: 500;
    font-size: 13px !important;
    line-height: 1.4;
    transition: all 0.2s ease;
}
.user-dropdown a:hover { 
    background: linear-gradient(90deg, rgba(160, 255, 39, 0.15) 0%, transparent 100%);
    color: #333333;
}
.user-dropdown a i { 
    width: 20px; 
    color: #666;
    font-size: 15px;
    transition: color 0.2s ease;
}
.user-dropdown a:hover i { color: var(--tp-theme-green); }
.user-dropdown .logout { 
    border-top: 1px solid #eee; 
    margin-top: 8px;
    padding-top: 10px;
    color: var(--tp-common-red); 
    font-size: 14px;
}
.user-dropdown .logout:hover { 
    background: linear-gradient(90deg, rgba(255, 72, 81, 0.1) 0%, transparent 100%);
    color: var(--tp-common-red);
}
.user-dropdown .logout i { color: var(--tp-common-red); }

/* Hero Section */
        .tp-hero-area {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 50%, #16302f 100%);
            overflow: hidden;
        }

        .tp-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .tp-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }

        .tp-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 120px 20px 80px;
        }

        .tp-hero-subtitle {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            color: var(--tp-theme-green);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .tp-hero-title {
            font-size: 72px;
            font-weight: 700;
            line-height: 1.1;
            color: var(--tp-common-white);
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .tp-hero-title span {
            color: var(--tp-theme-green);
        }

        .tp-hero-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .tp-hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
		
		
		/* Buttons */
        .tp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .tp-btn-primary {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
        }

        .tp-btn-primary:hover {
            background: var(--tp-common-green-regular);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(160, 255, 39, 0.3);
        }

        .tp-btn-secondary {
            background: transparent;
            color: var(--tp-common-white);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .tp-btn-secondary:hover {
            background: var(--tp-common-white);
            color: var(--tp-common-black);
            border-color: var(--tp-common-white);
        }

        .tp-btn-outline {
            background: transparent;
            color: var(--tp-common-white);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            padding: 12px 28px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.4;
        }

        .tp-btn-outline:hover {
            background: var(--tp-common-white);
            color: var(--tp-common-black);
            border-color: var(--tp-common-white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .tp-btn-outline-primary {
            background: #fff;
            color: var(--tp-theme-green);
            border: 1px solid var(--tp-theme-green) !Important;
            border-radius: 50px;
            padding: 12px 28px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.4;
        }

        .tp-btn-outline-primary:hover {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
            border-color: var(--tp-theme-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(160, 255, 39, 0.25);
        }

        .tp-btn-outline-primary.active {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
            border-color: var(--tp-theme-green);
        }

        /* Section Styles */
        .tp-section {
            padding: 120px 0;
			background: var(--tp-grey-3);
        }

        .tp-section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }

        .tp-section-subtitle {
            font-size: 16px;
            color: #666;
            text-align: center;
			font-weight: 600;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
			display:block;
        }
		
		.result-badge{
			color:#fff !Important;
		}


         /* Stats Bar */
        .tp-stats-bar { background: var(--tp-common-black); padding: 40px 0; }
        .tp-stats-bar .row { text-align: center; }
        .stat-box h3 { font-size: 42px; font-weight: 700; color: var(--tp-theme-green); margin-bottom: 5px; }
        .stat-box p { color: rgba(255,255,255,0.6); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

        /* Date Filter */
        .tp-date-filter { background: white; padding: 25px; border-radius: 16px; margin-bottom: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .tp-date-filter .row { align-items: center; }
        .date-label { font-weight: 600; color: var(--tp-common-black); }
        .date-input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 10px; font-size: 14px; }
        .date-btn { width: 100%; padding: 12px 25px; background: var(--tp-theme-green); color: var(--tp-text-on-primary); border: none; border-radius: 10px; font-weight: 600; cursor: pointer; }
        .date-btn:hover { background: var(--tp-common-green-regular); }

        /* Result Card */
        .result-card { background: white; border-radius: 16px; padding: 25px; margin-bottom: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; }
        .result-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
        .result-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
        .result-league { display: flex; align-items: center; gap: 10px; }
        .result-league i { font-size: 16px; }
        .result-league span { font-size: 13px; color: #666; font-weight: 500; }
        .result-status { padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
        .result-status.won { background: #D4EDDA; color: #155724; }
        .result-status.lost { background: #F8D7DA; color: #721C24; }
        .result-teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding: 15px; background: var(--tp-grey-3); border-radius: 12px; }
        .result-team { font-weight: 600; font-size: 16px; color: var(--tp-common-black); flex: 1; }
        .result-team.text-end { text-align: right; }
        .result-score { font-size: 24px; font-weight: 700; color: var(--tp-common-black); padding: 0 20px; }
        .result-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #eee; flex-wrap: wrap; gap: 10px; }
        .result-type { padding: 5px 12px; background: var(--tp-grey-3); border-radius: 20px; font-size: 12px; font-weight: 600; }
        .result-odds { font-weight: 700; font-size: 18px; color: var(--tp-theme-green); }
        .result-date { font-size: 13px; color: #999; }

        /* Month Group */
        .month-group { margin-bottom: 40px; }
        .month-title { font-size: 24px; font-weight: 700; color: var(--tp-common-black); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--tp-theme-green); display: inline-block; }
        .month-stats { display: flex; gap: 20px; margin-bottom: 20px; }
        .month-stat { padding: 8px 15px; border-radius: 8px; font-size: 13px; font-weight: 600; }
        .month-stat.wins { background: #D4EDDA; color: #155724; }
        .month-stat.losses { background: #F8D7DA; color: #721C24; }
        .month-stat.profit { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

        /* Pagination */
        .tp-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .tp-pagination a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: white; color: var(--tp-common-black); font-weight: 600; border: 1px solid #eee; transition: all 0.3s ease; }
        .tp-pagination a:hover, .tp-pagination a.active { background: var(--tp-theme-green); border-color: var(--tp-theme-green); color: var(--tp-text-on-primary); }
		
		
        /* Latest Predictions */
        .tp-predictions-section {
            background: var(--tp-grey-3);
        }

        .prediction-card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .prediction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-color: var(--tp-theme-green);
        }

        .prediction-league {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .prediction-league img {
            width: 24px;
            height: 24px;
        }

        .prediction-league span {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .prediction-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .prediction-team {
            font-weight: 600;
            font-size: 16px;
            color: var(--tp-common-black);
            flex: 1;
        }

        .prediction-team.text-end {
            text-align: right;
        }

        .prediction-vs {
            color: #999;
            font-size: 14px;
            padding: 0 15px;
        }

        .prediction-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .prediction-type {
            padding: 5px 12px;
            background: var(--tp-grey-3);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--tp-common-black-10);
        }

        .prediction-odds {
            font-weight: 700;
            font-size: 18px;
            color: var(--tp-common-green-regular);
        }

        .prediction-time {
            font-size: 13px;
            color: #999;
        }

        /* Latest Wins */
        .tp-wins-section {
            background: linear-gradient(135deg, #16302f 0%, #0E0F11 100%);
        }

        .tp-wins-section .tp-section-title {
            color: white;
        }

        .tp-wins-section .tp-section-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .win-card {
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
			margin-bottom: 30px;
        }

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

        .win-badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
            border-radius: 30px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .win-teams {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .win-prediction {
            color: var(--tp-theme-green);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .win-odds {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        /* Prediction Types */
        .tp-types-section {
            background: white;
        }

        .plan-group {
            margin-bottom: 40px;
        }

        .plan-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .plan-badge.free {
            background: var(--tp-common-green-light);
            color: var(--tp-text-on-primary);
        }

        .plan-badge.premium {
            background: var(--tp-common-yellow-green);
            color: var(--tp-text-on-primary);
        }

        .type-card {
            background: var(--tp-grey-3);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
			margin-bottom:30px;
        }

        .type-card:hover {
            background: var(--tp-common-black);
            color: white;
        }

        .type-card:hover h5,
        .type-card:hover p {
            color: white;
        }

        .type-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--tp-theme-green);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--tp-text-on-primary);
        }

        .type-card h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .type-card p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* Plans Section */
        .tp-plans-section {
            background: var(--tp-grey-3);
        }

        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
			margin-bottom:30px;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            border-color: var(--tp-theme-green);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .plan-card.featured {
            background: var(--tp-common-black);
            color: white;
        }

        .plan-card.featured h3,
        .plan-card.featured .plan-price,
        .plan-card.featured li {
            color: white;
        }

        .plan-card.featured li i {
            color: var(--tp-theme-green);
        }

        .plan-card.featured .plan-btn {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
        }

        .plan-badge-featured {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--tp-common-yellow-green);
            color: var(--tp-text-on-primary);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--tp-grey-3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--tp-common-black);
        }

        .plan-card.featured .plan-icon {
            background: rgba(255,255,255,0.1);
        }

        .plan-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .plan-price {
            font-size: 48px;
            font-weight: 700;
            color: var(--tp-common-black);
            margin-bottom: 5px;
        }

        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: #666;
        }

        .plan-card.featured .plan-price span {
            color: rgba(255,255,255,0.6);
        }

        .plan-duration {
            color: #666;
            font-size: 14px;
            margin-bottom: 25px;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            text-align: left;
        }

        .plan-features li {
            padding: 10px 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .plan-features li i {
            color: var(--tp-theme-green);
            font-size: 14px;
        }

        .plan-btn {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            background: var(--tp-grey-3);
            color: var(--tp-common-black);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .plan-btn:hover {
            background: var(--tp-common-black);
            color: white;
        }

        /* Why Choose Us */
        .tp-why-section {
            background: white;
        }

        .feature-card {
            padding: 40px 30px;
            text-align: center;
            border-radius: 20px;
            transition: all 0.3s ease;
            height: 100%;
			background: var(--tp-grey-3);
        }

        .feature-card:hover {
            background: ;
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--tp-theme-green) 0%, var(--tp-common-green-regular) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--tp-text-on-primary);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #666;
            margin: 0;
            line-height: 1.7;
        }

        /* Testimonials */
        .tp-testimonials-section {
            background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 100%);
        }

        .tp-testimonials-section .tp-section-title {
            color: white;
        }

        .tp-testimonials-section .tp-section-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid rgba(255,255,255,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

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

        .testimonial-quote {
            font-size: 40px;
            color: var(--tp-theme-green);
            margin-bottom: 20px;
            line-height: 1;
        }

        .testimonial-text {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--tp-theme-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--tp-text-on-primary);
        }

        .testimonial-info h5 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .testimonial-info span {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        /* About Section */
        .tp-about-section {
            background: white;
        }

        .about-content h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .about-content p {
            color: #555;
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
			justify-content: center;
        }

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

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--tp-common-black);
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--tp-theme-green);
            border-radius: 20px;
            z-index: -1;
        }

        /* Bookmakers Section */
        .tp-bookmakers-section {
            background: var(--tp-grey-3);
        }

        .bookmaker-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .bookmaker-card:hover {
            transform: translateY(-8px);
            border-color: var(--tp-theme-green);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .bookmaker-header {
            background: var(--tp-common-black);
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .bookmaker-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .bookmaker-logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            background: white;
            padding: 8px;
            border-radius: 8px;
        }

        .bookmaker-logo span {
            color: white;
            font-weight: 600;
            font-size: 18px;
        }

        .bookmaker-bonus {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
        }

        .bookmaker-body {
            padding: 25px;
        }

        .bookmaker-offer {
            font-size: 15px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .bookmaker-code {
            display: inline-block;
            background: var(--tp-grey-3);
            padding: 10px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .bookmaker-code span {
            font-weight: 600;
            color: var(--tp-common-black);
        }

        .bookmaker-btn {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
			display: block;
            background: var(--tp-common-black);
            color: white;
			text-align: center;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bookmaker-btn:hover {
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
        }

        /* Telegram Section */
        .tp-telegram-section {
            background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
            text-align: center;
        }

        .tp-telegram-section .tp-section-title {
            color: white;
        }

        .tp-telegram-section .tp-section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .telegram-icon {
            width: 120px;
            height: 120px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 50px;
            color: white;
        }

        .telegram-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: white;
            color: #0088cc;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .telegram-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* FAQ Section */
        .tp-faq-section {
            background: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--tp-grey-3);
        }

        .accordion-button {
            background: var(--tp-grey-3);
            padding: 20px 25px;
            font-weight: 600;
            font-size: 17px;
            color: var(--tp-common-black);
            border: none;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: var(--tp-common-black);
            color: white;
        }

        .accordion-button::after {
            content: '\002B';
            font-size: 20px;
            font-weight: 700;
            color: var(--tp-common-black);
            background: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\2212';
            background: var(--tp-theme-green);
            color: var(--tp-text-on-primary);
        }

        .accordion-body {
            background: var(--tp-grey-3);
            padding: 20px 25px 20px;
            color: #555;
            line-height: 1.7;
        }

        .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
            background: var(--tp-common-black);
            color: rgba(255,255,255,0.7);
        }
		
		
/* ============================================
   User Dashboard Specific Styles
   ============================================ */

/* Page Header */
.tp-page-header { padding: 150px 0 60px; background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 50%, #16302f 100%); position: relative; }
.tp-page-header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.tp-page-header-content { position: relative; z-index: 2; }
.tp-page-title { font-size: 42px; font-weight: 700; color: var(--tp-common-white); margin-bottom: 10px; text-align:center;}
.tp-page-title span { color: var(--tp-theme-green); }

/* Dashboard Layout */
.dashboard-section { padding: 80px 0 50px; }
.dashboard-sidebar { background: white; border-radius: 16px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.sidebar-close-btn {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--tp-grey-3);
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.sidebar-close-btn:hover {
    background: var(--tp-common-red);
    color: white;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

.sidebar-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--tp-theme-green);
    color: var(--tp-common-black);
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sidebar-mobile-toggle:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .sidebar-close-btn {
        display: flex;
    }
    .sidebar-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 100;
        border-radius: 0;
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }
    .dashboard-sidebar.mobile-open {
        transform: translateX(0);
    }
}
.sidebar-user { text-align: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #eee; }
.sidebar-user .avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--tp-theme-green); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 28px; font-weight: 700; color: var(--tp-text-on-primary); }
.sidebar-user h4 { margin-bottom: 5px; }
.sidebar-user .plan-badge { display: inline-block; padding: 5px 15px; background: var(--tp-theme-green); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--tp-text-on-primary); }
.sidebar-menu { list-style: none; padding: 0; margin: 0; }
.sidebar-menu li { margin-bottom: 5px; }
.sidebar-menu a { display: flex; align-items: center; gap: 12px; padding: 14px 15px; border-radius: 10px; color: #555; font-weight: 500; transition: all 0.3s ease; }
.sidebar-menu a:hover, .sidebar-menu a.active { background: var(--tp-grey-3); color: var(--tp-common-black); }
.sidebar-menu a.active { border-left: 3px solid var(--tp-theme-green); }
.sidebar-menu a i { width: 20px; color: #666; }

.dashboard-content h3 { font-size: 22px; margin-bottom: 25px; }

.welcome-banner {
    background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
}

.welcome-banner h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.welcome-banner p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Stats Cards */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: white; border-radius: 16px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); text-align: center; }
.stat-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 20px; }
.stat-icon.green { background: rgba(160, 255, 39, 0.2); color: #7ab800; }
.stat-icon.blue { background: rgba(116, 99, 255, 0.2); color: #7463FF; }
.stat-icon.red { background: rgba(255, 72, 81, 0.2); color: var(--tp-common-red); }
.stat-icon.yellow { background: rgba(255, 183, 1, 0.2); color: #cc9200; }
.stat-card h3 { font-size: 28px; margin-bottom: 5px; }
.stat-card p { color: #666; font-size: 14px; margin: 0; }

/* Subscription Card */
.sub-card { background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 100%); border-radius: 16px; padding: 30px; color: white; margin-bottom: 30px; }
.sub-card .plan-badge { display: inline-block; padding: 6px 15px; background: var(--tp-theme-green); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--tp-text-on-primary); margin-bottom: 15px; }
.sub-card h3 { color: white; font-size: 28px; margin-bottom: 5px; }
.sub-card .price { font-size: 36px; font-weight: 700; color: var(--tp-theme-green); }
.sub-card .price span { font-size: 16px; color: rgba(255,255,255,0.6); }
.sub-card .expiry { margin: 15px 0; opacity: 0.7; }
.sub-card .features { margin: 20px 0; }
.sub-card .features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: rgba(255,255,255,0.8); }
.sub-card .features li i { color: var(--tp-theme-green); }
.sub-card .btn { display: inline-block; padding: 12px 30px; background: var(--tp-theme-green); color: var(--tp-text-on-primary); border-radius: 8px; font-weight: 600; }

/* Telegram Card */
.telegram-card { background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%); border-radius: 16px; padding: 30px; color: white; text-align: center; margin-bottom: 30px; }
.telegram-card .icon { width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 36px; }
.telegram-card h3 { color: white; margin-bottom: 10px; }
.telegram-card p { opacity: 0.9; margin-bottom: 20px; }
.telegram-card .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 35px; background: white; color: #0088cc; border-radius: 50px; font-weight: 700; }

/* Subscription Info Grid */
.subscription-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.subscription-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.subscription-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.subscription-card .sub-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.current-plan .sub-card-icon {
    background: linear-gradient(135deg, var(--tp-theme-green), var(--tp-common-green-regular));
    color: var(--tp-text-on-primary);
}

.subscription-status.active .sub-card-icon {
    background: rgba(67, 212, 160, 0.2);
    color: var(--tp-common-paste);
}

.subscription-status.inactive .sub-card-icon {
    background: rgba(255, 72, 81, 0.2);
    color: var(--tp-common-red);
}

.subscription-card .sub-card-content {
    flex: 1;
}

.subscription-card .sub-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.subscription-card .sub-card-content h3 {
    font-size: 22px;
    margin: 5px 0;
    padding: 0;
    border: none;
}

.subscription-card .sub-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--tp-theme-green);
}

.subscription-card .sub-expiry {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.subscription-status.active .sub-card-content h3 {
    color: var(--tp-common-paste);
}

.subscription-status.inactive .sub-card-content h3 {
    color: var(--tp-common-red);
}

.subscription-card .sub-card-action {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: var(--tp-grey-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-common-black);
    font-size: 16px;
    transition: all 0.3s ease;
}

.subscription-card .sub-card-action:hover {
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--tp-grey-3);
    border-radius: 10px;
}

.feature-item i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--tp-theme-green);
    color: var(--tp-common-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.feature-item span {
    font-size: 14px;
    color: var(--tp-common-black);
    font-weight: 500;
}

/* Subscription Details */
.subscription-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    background: var(--tp-grey-3);
    border-radius: 10px;
    min-width: 150px;
}

.detail-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-common-black);
}

.subscription-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.subscription-actions .btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.subscription-actions .btn:hover {
    background: var(--tp-common-green-regular);
    color: var(--tp-text-on-primary);
    transform: translateY(-2px);
}

.subscription-actions .btn-outline {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: var(--tp-common-black);
    border: 2px solid var(--tp-common-black);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscription-actions .btn-outline:hover {
    background: var(--tp-common-black);
    color: white;
}

/* Profile Form */
.profile-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--tp-common-black);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--tp-theme-green);
    box-shadow: 0 0 0 3px rgba(160, 255, 39, 0.15);
}

.form-group input:disabled {
    background: var(--tp-grey-3);
    color: #888;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #888;
}

.profile-form .btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--tp-theme-green);
    color: var(--tp-common-black);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-form .btn:hover {
    background: var(--tp-common-green-regular);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subscription-info-grid {
        grid-template-columns: 1fr;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Content Card */
.content-card { background: white; border-radius: 16px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 30px; overflow: hidden; }
.content-card h3 { font-size: 18px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; }

.plan-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.plan-section-header h3 {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 18px;
}

.btn-upgrade {
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
    border-radius: 20px;
	padding: 0px 10px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-upgrade:hover {
    background: var(--tp-common-green-regular);
    color: var(--tp-text-on-primary);
}

/* Table */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-responsive .data-table { min-width: 600px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 12px; font-weight: 600; color: #666; font-size: 14px; border-bottom: 2px solid #eee; }
.data-table td { padding: 12px; border-bottom: 1px solid #eee; font-size: 14px; }
.data-table tr:hover { background: var(--tp-grey-3); }
.status-badge { padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-badge.won { background: rgba(160, 255, 39, 0.2); color: #5a9900; }
.status-badge.lost { background: rgba(255, 72, 81, 0.2); color: var(--tp-common-red); }
.status-badge.pending { background: rgba(255, 183, 1, 0.2); color: #997a00; }
.status-badge.void { background: rgba(128, 128, 128, 0.2); color: #666; }

/* Progress */
.progress-item { margin-bottom: 20px; }
.progress-item label { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 500; font-size: 14px; }
.progress-bar-custom { height: 8px; background: #eee; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--tp-theme-green); border-radius: 10px; }

/* Footer */
		
        .tp-footer { background: var(--tp-common-black); padding: 40px 0 30px; color: rgba(255,255,255,0.6); text-align: center; }
        .tp-footer .footer-content { text-align: center; }
        .tp-footer .footer-social { margin-bottom: 25px; }
        .tp-footer .footer-social-buttons { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; gap: 15px; }
        .tp-footer .footer-social-buttons li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        .tp-footer .footer-social-buttons li a:hover {
            background: var(--tp-theme-green);
            color: var(--tp-common-black);
            transform: translateY(-3px);
        }
        .tp-footer .quicklinks { list-style: none; padding: 0; margin: 0 0 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
        .tp-footer .quicklinks li { padding: 0 10px; }
        .tp-footer .quicklinks li:not(:last-child) a::after {
            content: '|';
            position: absolute;
            right: -10px;
            color: rgba(255,255,255,0.3);
        }
        .tp-footer .quicklinks li a {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }
        .tp-footer .quicklinks li a:hover { color: var(--tp-theme-green); }
        .tp-footer .copyright { font-size: 14px; color: rgba(255,255,255,0.5); }


 .tp-footer .footer-disclaimer {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .tp-footer .footer-disclaimer p {
            margin: 0;
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255,255,255,0.7);
        }
		

/* ============================================
   Payment Pages Styles
   ============================================ */

.order-summary { margin-bottom: 10px; }
.summary-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; }
.summary-item:last-child { border-bottom: none; }
.summary-item span:first-child { color: #666; font-weight: 500; }
.summary-item .plan-name { font-weight: 600; color: var(--tp-common-black); }
.summary-item .price { font-weight: 600; color: var(--tp-common-black); }
.summary-item.total { margin-top: 15px; padding-top: 15px; border-top: 2px solid #eee; border-bottom: none; }
.summary-item.total span:first-child { font-weight: 700; font-size: 16px; color: var(--tp-common-black); }
.total-price { font-weight: 700; font-size: 20px; color: var(--tp-theme-green) !important; }

.payment-methods { display: flex; flex-direction: column; gap: 15px; margin-bottom: 10px; }
.payment-methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 10px; }
@media (max-width: 767px) { .payment-methods-grid { grid-template-columns: repeat(2, 1fr); } }
.payment-option { cursor: pointer; }
.payment-option input { display: none; }
.payment-option-card { cursor: pointer; }
.payment-option-card input { display: none; }
.payment-card { display: flex; align-items: center; gap: 15px; padding: 18px 20px; background: var(--tp-grey-3); border-radius: 12px; border: 2px solid transparent; transition: all 0.3s ease; }
.payment-option input:checked + .payment-card { border-color: var(--tp-theme-green); background: rgba(160, 255, 39, 0.1); }
.payment-option-card input:checked + .payment-card-box { border-color: var(--tp-theme-green); background: rgba(160, 255, 39, 0.1); }
.payment-card-box { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 15px; background: var(--tp-grey-3); border-radius: 12px; border: 2px solid transparent; transition: all 0.3s ease; text-align: center; }
.payment-card-box i { font-size: 28px; color: #333; }
.payment-card-box i.fa-cc-visa { color: #1a1f71; }
.payment-card-box i.fa-paypal { color: #003087; }
.payment-card-box i.fa-stripe { color: #635bff; }
.payment-card-box i.fa-bitcoin { color: #f7931a; }
.payment-card-box i.fa-ethereum { color: #627eea; }
.payment-card-box i.fa-university { color: #4caf50; }
.payment-card-box i.fa-whatsapp { color: #25d366; }
.payment-card-box i.fa-apple { color: #000; }
.payment-card-box i.fa-google-pay { color: #4285f4; }
.payment-card-box span { font-weight: 600; font-size: 13px; color: var(--tp-common-black); }
.payment-card i { font-size: 28px; color: #333; }
.payment-card i.fa-cc-visa { color: #1a1f71; }
.payment-card i.fa-paypal { color: #003087; }
.payment-card span { font-weight: 600; color: var(--tp-common-black); flex: 1; }
.payment-card small { color: #888; font-size: 13px; }

.payment-form .form-group { margin-bottom: 20px; }
.payment-form label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: var(--tp-common-black); }
.payment-form input[type="text"] { width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 10px; font-size: 15px; transition: all 0.3s ease; background: white; }
.payment-form input[type="text"]:focus { outline: none; border-color: var(--tp-theme-green); box-shadow: 0 0 0 3px rgba(160, 255, 39, 0.15); }
.payment-form .checkbox-group { display: flex; align-items: center; gap: 10px; }
.payment-form .checkbox-group input { width: 18px; height: 18px; accent-color: var(--tp-theme-green); }
.payment-form .checkbox-group label { margin-bottom: 0; font-weight: 500; color: #555; }
.btn-submit { width: 100%; padding: 18px; background: var(--tp-theme-green); color: var(--tp-text-on-primary); border: none; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { background: var(--tp-common-green-regular); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(160, 255, 39, 0.3); }

.success-icon, .cancelled-icon { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; animation: scaleIn 0.5s ease; }
.success-icon { background: linear-gradient(135deg, #00c853, #69f0ae); }
.cancelled-icon { background: linear-gradient(135deg, #ff5252, #ff8a80); }
@keyframes scaleIn { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
.success-icon i, .cancelled-icon i { font-size: 50px; color: white; }

.success-card, .cancelled-card { text-align: center; padding: 40px; }
.success-card h2, .cancelled-card h2 { font-size: 28px; margin-bottom: 15px; }
.success-card p, .cancelled-card p { color: #666; margin-bottom: 30px; }

.order-details, .cancelled-details { background: #f8f8f8; border-radius: 12px; padding: 25px; text-align: left; margin-bottom: 30px; }
.cancelled-details { background: #fff5f5; border: 1px solid #ffcdd2; }
.order-details h4, .cancelled-details h4 { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.cancelled-details h4 { color: #c62828; }
.cancelled-details p { margin-bottom: 15px; font-size: 14px; color: #555; }
.order-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
.order-row:last-child { border-bottom: none; }
.order-row.total { font-weight: 700; font-size: 18px; margin-top: 10px; border-bottom: none; }

.btn-group { display: flex; gap: 0px; justify-content: center; flex-wrap: wrap; }
.btn-group .btn { padding: 14px 30px; border-radius: 10px; font-weight: 600; display: inline-block; transition: all 0.3s ease; }
.btn-group .btn-primary { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }
.btn-group .btn-primary:hover { background: var(--tp-common-green-regular); transform: translateY(-2px); }
.btn-group .btn-outline { border: 2px solid #ddd; color: #333; }
.btn-group .btn-outline:hover { border-color: var(--tp-common-black); background: var(--tp-common-black); color: white; }

.help-section { margin-top: 30px; padding-top: 30px; border-top: 1px solid #eee; }
.help-section h4 { margin-bottom: 15px; }
.help-options { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.help-option { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: #f5f5f5; border-radius: 8px; color: #333; font-size: 14px; text-decoration: none; transition: all 0.3s ease; }
.help-option:hover { background: var(--tp-common-black); color: white; }
.help-option i { color: var(--tp-theme-green); }
.help-option:hover i { color: var(--tp-theme-green); }

.pending-icon { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #ff9800, #ffb74d); display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; animation: scaleIn 0.5s ease, pulse 2s infinite; }
.pending-icon i { font-size: 50px; color: white; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.pending-card { text-align: center; padding: 40px; }
.pending-card h2 { font-size: 28px; margin-bottom: 15px; }
.pending-card p { color: #666; margin-bottom: 30px; }

.pending-details { background: #fff8e1; border: 1px solid #ffecb3; border-radius: 12px; padding: 25px; text-align: left; margin-bottom: 30px; }
.pending-details h4 { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.status-row span:last-child { font-weight: 600; color: #f57c00; }
.status-pending { display: inline-flex; align-items: center; gap: 8px; }

.pending-note { display: flex; align-items: flex-start; gap: 12px; padding: 15px 20px; background: #e3f2fd; border-radius: 10px; text-align: left; margin-bottom: 25px; }
.pending-note i { color: #1976d2; font-size: 20px; margin-top: 2px; }
.pending-note p { margin: 0; font-size: 14px; color: #555; }

.manual-payment-info { margin-bottom: 25px; }
.payment-step { display: flex; gap: 20px; margin-bottom: 25px; }
.step-number { flex-shrink: 0; width: 40px; height: 40px; background: var(--tp-theme-green); color: var(--tp-text-on-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.step-content { flex: 1; }
.step-content h4 { font-size: 16px; margin-bottom: 10px; }
.step-content p { color: #555; font-size: 14px; margin-bottom: 15px; }

.crypto-address { display: flex; align-items: center; gap: 10px; background: #f5f5f5; padding: 12px 15px; border-radius: 8px; margin-bottom: 15px; }
.crypto-address code { flex: 1; font-size: 13px; word-break: break-all; color: var(--tp-common-black); }
.copy-btn { padding: 8px 12px; background: var(--tp-common-black); color: white; border: none; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; }
.copy-btn:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

.qr-hint { font-size: 13px; color: #888; margin-bottom: 10px; }
.qr-placeholder { width: 120px; height: 120px; background: white; border: 2px dashed #ddd; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.qr-placeholder i { font-size: 50px; color: #ccc; }

.processing-time { list-style: none; padding: 0; margin: 0; }
.processing-time li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 14px; color: #555; }
.processing-time li:last-child { border-bottom: none; }
.processing-time li i { color: var(--tp-theme-green); }

.payment-note { display: flex; align-items: flex-start; gap: 12px; padding: 15px 20px; background: #fff3e0; border: 1px solid #ffcc02; border-radius: 10px; text-align: left; margin-bottom: 25px; }
.payment-note i { color: #f57c00; font-size: 20px; margin-top: 2px; }
.payment-note p { margin: 0; font-size: 14px; color: #555; }

.bank-details { display: grid; gap: 15px; }
.bank-info-item { display: flex; justify-content: space-between; align-items: center; padding: 15px; background: #f8f8f8; border-radius: 10px; }
.bank-info-item .info-label { font-weight: 500; color: #666; font-size: 14px; }
.bank-info-item .info-value { font-weight: 600; color: var(--tp-common-black); display: flex; align-items: center; gap: 10px; }
.bank-info-item .info-value code { font-size: 14px; background: white; padding: 5px 10px; border-radius: 5px; border: 1px solid #ddd; }
.bank-info-item .info-value.highlight code { background: var(--tp-theme-green); border-color: var(--tp-theme-green); }

.upload-section { margin-bottom: 20px; }
.upload-area { border: 2px dashed #ddd; border-radius: 12px; padding: 40px 20px; text-align: center; margin-bottom: 20px; transition: all 0.3s ease; }
.upload-area:hover { border-color: var(--tp-theme-green); background: rgba(160, 255, 39, 0.05); }
.upload-area i { font-size: 48px; color: #ccc; margin-bottom: 15px; }
.upload-area p { color: #555; margin-bottom: 10px; }
.upload-area span { color: #999; font-size: 13px; }
.upload-area .upload-btn { display: inline-block; margin: 10px 0 15px; padding: 10px 25px; background: var(--tp-common-black); color: white; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.upload-area .upload-btn:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }
.upload-area small { display: block; color: #999; font-size: 12px; }

.processing-info { display: grid; gap: 20px; }
.processing-item { display: flex; gap: 15px; align-items: flex-start; }
.processing-item i { width: 40px; height: 40px; background: rgba(160, 255, 39, 0.2); color: var(--tp-theme-green); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.processing-item h4 { font-size: 15px; margin-bottom: 5px; }
.processing-item p { margin: 0; font-size: 13px; color: #666; }

.blog-section { padding: 60px 0; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 30px; transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.blog-image { position: relative; overflow: hidden; }
.image-placeholder { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.image-placeholder.small { height: 200px; }
.image-placeholder.large { height: 400px; }
.image-placeholder i { font-size: 60px; color: rgba(255,255,255,0.5); }
.image-placeholder.small i { font-size: 40px; }
.image-placeholder.large i { font-size: 80px; }
.blog-category-tag { position: absolute; top: 15px; left: 15px; background: var(--tp-theme-green); color: var(--tp-text-on-primary); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.blog-content { padding: 20px; }
.blog-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 13px; color: #888; }
.blog-content h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-content h3 a { color: var(--tp-common-black); }
.blog-content h3 a:hover { color: var(--tp-theme-green); }
.blog-content p { font-size: 14px; color: #666; margin-bottom: 15px; line-height: 1.6; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #eee; }
.blog-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 35px; height: 35px; border-radius: 50%; background: var(--tp-theme-green); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: var(--tp-text-on-primary); }
.author-avatar.sm { width: 30px; height: 30px; font-size: 11px; }
.blog-author span { font-size: 13px; color: #555; font-weight: 500; }
.read-more { font-size: 13px; font-weight: 600; color: var(--tp-common-black); }
.read-more:hover { color: var(--tp-theme-green); }

.featured-blog { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.featured-image { height: 100%; min-height: 350px; }
.featured-image .image-placeholder { height: 100%; border-radius: 0; }
.featured-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.featured-content .blog-meta { margin-bottom: 15px; }
.featured-content h2 { font-size: 28px; margin-bottom: 15px; line-height: 1.3; }
.featured-content h2 a { color: var(--tp-common-black); }
.featured-content h2 a:hover { color: var(--tp-theme-green); }
.featured-content p { font-size: 15px; color: #666; margin-bottom: 20px; line-height: 1.7; }

.blog-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.blog-pagination a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: white; color: var(--tp-common-black); font-weight: 600; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.blog-pagination a:hover, .blog-pagination a.active { background: var(--tp-theme-green); }

.blog-sidebar .sidebar-widget { background: white; border-radius: 16px; padding: 25px; margin-bottom: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.blog-sidebar .sidebar-widget h4 { font-size: 18px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--tp-theme-green); }
.search-box { display: flex; gap: 10px; }
.search-box input { flex: 1; padding: 12px 15px; border: 1px solid #ddd; border-radius: 10px; font-size: 14px; }
.search-box button { padding: 12px 18px; background: var(--tp-theme-green); border: none; border-radius: 10px; cursor: pointer; }
.search-box button:hover { background: var(--tp-common-green-regular); }

.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
.category-list li:last-child { border-bottom: none; }
.category-list a { display: flex; justify-content: space-between; color: var(--tp-common-black); font-weight: 500; }
.category-list a:hover { color: var(--tp-theme-green); }
.category-list span { color: #888; font-size: 13px; }

.popular-posts { display: flex; flex-direction: column; gap: 15px; }
.popular-post { display: flex; gap: 15px; align-items: center; }
.post-thumb { width: 30px; height: 30px; background: var(--tp-theme-green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--tp-text-on-primary); }
.post-info h5 { font-size: 14px; margin-bottom: 3px; }
.post-info h5 a { color: var(--tp-common-black); }
.post-info h5 a:hover { color: var(--tp-theme-green); }
.post-info span { font-size: 12px; color: #888; }

.sidebar-widget.newsletter p { font-size: 14px; color: #666; margin-bottom: 15px; }
.sidebar-widget.newsletter input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 10px; margin-bottom: 12px; }
.sidebar-widget.newsletter .btn-submit { width: 100%; }

.blog-post { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }
.blog-post .post-image { height: 450px; }
.blog-post .post-image .image-placeholder { height: 100%; border-radius: 0; }
.blog-post .post-content { padding: 40px; }
.blog-post .post-meta { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.blog-post .blog-category { background: var(--tp-theme-green); color: var(--tp-text-on-primary); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.blog-post .blog-date, .blog-post .blog-views { color: #888; font-size: 14px; }
.blog-post h1 { font-size: 32px; margin-bottom: 25px; line-height: 1.3; }
.post-author { display: flex; align-items: center; gap: 15px; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 30px; }
.post-author .author-info { flex: 1; }
.post-author .author-info .name { display: block; font-weight: 600; color: var(--tp-common-black); }
.post-author .author-info .role { font-size: 13px; color: #888; }
.share-buttons { display: flex; gap: 10px; }
.share-buttons a { width: 35px; height: 35px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #555; transition: all 0.3s ease; }
.share-buttons a:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

.post-body { font-size: 16px; line-height: 1.8; color: #444; }
.post-body h3 { font-size: 22px; margin: 30px 0 15px; color: var(--tp-common-black); }
.post-body p { margin-bottom: 20px; }
.post-body strong { color: var(--tp-common-black); }

.post-quote { background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 100%); border-radius: 12px; padding: 30px; margin: 30px 0; color: white; position: relative; }
.post-quote i { position: absolute; top: 20px; left: 25px; font-size: 30px; color: var(--tp-theme-green); opacity: 0.5; }
.post-quote p { font-size: 18px; font-style: italic; margin-bottom: 15px; color: rgba(255,255,255,0.9); }
.post-quote cite { color: var(--tp-theme-green); font-size: 14px; }

.prediction-box { background: rgba(160, 255, 39, 0.15); border: 2px solid var(--tp-theme-green); border-radius: 12px; padding: 25px; margin: 30px 0; }
.prediction-box h4 { font-size: 14px; color: #666; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.prediction-team { display: flex; justify-content: space-between; align-items: center; }
.prediction-team .team { font-size: 24px; font-weight: 700; color: var(--tp-common-black); }
.prediction-team .odds { font-size: 24px; font-weight: 700; color: var(--tp-theme-green); }

.post-tags { padding-top: 25px; border-top: 1px solid #eee; margin-top: 30px; }
.post-tags span { font-weight: 600; color: #666; margin-right: 10px; }
.post-tags a { display: inline-block; padding: 5px 12px; background: #f5f5f5; border-radius: 20px; font-size: 13px; color: #555; margin: 5px 5px 5px 0; transition: all 0.3s ease; }
.post-tags a:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

.comments-section { margin-top: 50px; padding-top: 40px; border-top: 1px solid #eee; }
.comments-section h3 { margin-bottom: 30px; }
.comment { display: flex; gap: 15px; margin-bottom: 25px; }
.comment-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--tp-theme-green); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--tp-text-on-primary); flex-shrink: 0; }
.comment-content { flex: 1; }
.comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.comment-header .name { font-weight: 600; color: var(--tp-common-black); }
.comment-header .date { font-size: 13px; color: #888; }
.comment-content p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 10px; }
.comment-content .reply { font-size: 13px; font-weight: 600; color: var(--tp-theme-green); }

.comment-form { margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }
.comment-form h4 { margin-bottom: 20px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 10px; margin-bottom: 15px; font-size: 14px; }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .btn-submit { width: auto; padding: 14px 30px; }

/* Predictions Page */
.date-tabs { display: flex; justify-content: center; gap: 15px; }
.date-tab { display: flex; align-items: center; gap: 8px; padding: 12px 25px; background: white; border-radius: 50px; color: var(--tp-common-black); font-weight: 600; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.date-tab:hover { background: var(--tp-theme-green); transform: translateY(-2px); }
.date-tab.active { background: var(--tp-theme-green); }
.date-tab .tab-date { font-size: 12px; color: #888; font-weight: 400; }
.date-tab.active .tab-date { color: var(--tp-common-black); }
.date-tab .tab-day { font-size: 14px; }

.predictions-filters { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.filter-group { display: flex; align-items: center; gap: 10px; }
.filter-group label { font-weight: 600; font-size: 14px; color: #555; }
.filter-group select { padding: 10px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; background: white; cursor: pointer; }

.match-count { text-align: center; margin-bottom: 25px; color: #666; }
.match-count strong { color: var(--tp-common-black); }

.predictions-day { display: none; }
.predictions-day.active { display: block; }

.predictions-list { display: flex; flex-direction: column; gap: 20px; }

.prediction-card { background: white; border-radius: 16px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.prediction-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.prediction-card.premium { border: 2px solid var(--tp-theme-yellow); }
.prediction-card.result { opacity: 0.9; }

.prediction-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.league-info { display: flex; align-items: center; gap: 10px; }
.league-icon { font-size: 20px; }
.league-name { font-weight: 500; font-size: 12px; color: #555; }
.match-time { font-size: 14px; color: #888; font-weight: 500; }
.match-result { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.match-result.won { color: var(--tp-common-paste); }
.match-result.lost { color: var(--tp-common-red); }
.match-result .result-label { font-size: 10px; padding: 3px 8px; border-radius: 10px; }
.match-result.won .result-label { background: rgba(67, 212, 160, 0.2); }
.match-result.lost .result-label { background: rgba(255, 72, 81, 0.2); }

.match-teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding: 0 20px; }
.team { flex: 1; text-align: center; }
.teams { padding: 24px 0px;
    text-align: center;padding: 24px 0px;
    text-align: center; }
.team-name { font-size: 20px; font-weight: 700; color: var(--tp-common-black); }
.team.home { text-align: left; }
.team.away { text-align: right; }
.match-vs { font-size: 14px; color: #999; font-weight: 600; padding: 0 20px; }
.match-score { font-size: 24px; font-weight: 700; color: var(--tp-common-black); padding: 0 20px; }

.prediction-details { display: flex; justify-content: space-between; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 20px; }
.prediction-type, .prediction-odds { text-align: center; }
.type-label, .odds-label { display: block; font-size: 12px; color: #888; margin-bottom: 5px; }
.type-value { font-size: 18px; font-weight: 700; color: var(--tp-common-black); }
.odds-value { font-size: 20px; font-weight: 700; color: var(--tp-theme-green); }
.odds-value.won { color: var(--tp-common-paste); }
.odds-value.lost { color: var(--tp-common-red); }

.prediction-footer { display: flex; justify-content: space-between; align-items: center; }
.plan-badge { padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.plan-badge.premium { background: var(--tp-theme-yellow); color: var(--tp-text-on-primary); }
.plan-badge.monthly { background: var(--tp-common-blue); color: white; }
.plan-badge.free { background: var(--tp-common-green-light); color: var(--tp-text-on-primary); }

.view-btn { padding: 10px 20px; background: var(--tp-common-black); color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.view-btn:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

/* Modern Predictions V2 */
.stats-bar { display: flex; justify-content: center; gap: 40px; background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 100%); padding: 25px 40px; border-radius: 16px; }
.stats-bar .stat-item { text-align: center; }
.stats-bar .stat-number { display: block; font-size: 32px; font-weight: 700; color: var(--tp-theme-green); }
.stats-bar .stat-number.success { color: var(--tp-common-paste); }
.stats-bar .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }

.predictions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
@media (max-width: 1200px) { .predictions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .predictions-grid { grid-template-columns: 1fr; } }

.pred-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; position: relative; }
.pred-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.pred-card-vip { border: 2px solid var(--tp-theme-yellow); }
.pred-card-vip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--tp-theme-yellow), var(--tp-theme-yellow-green)); }
.pred-card-monthly { border: 2px solid var(--tp-common-blue); }
.pred-card-monthly::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--tp-common-blue), #9b87f5); }
.pred-card-free { border: 2px solid var(--tp-common-green-regular); }
.pred-card-free::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--tp-common-green-regular), #90ee90); }

.pred-card-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: #f8f8f8; }
.league-badge { display: flex; align-items: center; gap: 8px; }
.league-badge .flag { font-size: 20px; }
.league-badge .name { font-size: 13px; font-weight: 600; color: var(--tp-common-black); }
.match-status { font-size: 13px; font-weight: 600; color: #888; padding: 4px 10px; background: white; border-radius: 20px; }
.match-status.live { background: var(--tp-common-red); color: white; animation: pulse 2s infinite; }
.match-status.result { font-weight: 700; color: var(--tp-common-black); background: transparent; }

.pred-card-match { display: flex; align-items: center; justify-content: space-between; padding: 25px 20px; }
.team-box { text-align: center; flex: 1; }
.team-logo { width: 50px; height: 50px; background: #f0f0f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 24px; }
.team-name { font-size: 14px; font-weight: 700; color: var(--tp-common-black); }
.match-center { flex-shrink: 0; padding: 0 15px; }
.match-center .score { font-size: 24px; font-weight: 700; color: var(--tp-common-black); }
.match-center .match-time { font-size: 12px; color: var(--tp-common-red); font-weight: 600; }
.match-center .vs { font-size: 14px; font-weight: 600; color: #999; }

.pred-card-tip { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%); margin: 0 15px; border-radius: 12px; }
.tip-content { display: flex; flex-direction: column; gap: 4px; }
.tip-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.tip-value { font-size: 18px; font-weight: 700; color: var(--tp-common-black); }
.tip-odds { text-align: right; }
.tip-odds .odds-label { display: block; font-size: 10px; color: #888; }
.tip-odds .odds-value { font-size: 22px; font-weight: 700; color: var(--tp-theme-green); }
.tip-odds.won .odds-value { color: var(--tp-common-paste); }
.tip-odds.lost .odds-value { color: var(--tp-common-red); }

.pred-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-top: 1px solid #eee; margin-top: 15px; }
.plan-tag { padding: 6px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.plan-tag.vip { background: var(--tp-theme-yellow); color: var(--tp-text-on-primary); }
.plan-tag.monthly { background: var(--tp-common-blue); color: white; }
.plan-tag.free { background: var(--tp-common-green-light); color: var(--tp-text-on-primary); }

.btn-tip { padding: 8px 16px; background: var(--tp-common-black); color: white; border: none; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-tip:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

.result-card { opacity: 0.95; }
.result-badge { display: inline-flex; FLOAT: right; align-items: center; gap: 5px; padding: 6px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.result-badge.won { background: rgba(67, 212, 160, 0.2); color: var(--tp-common-paste); }
.result-badge.lost { background: rgba(255, 72, 81, 0.2); color: var(--tp-common-red); }
.profit-badge { font-size: 14px; font-weight: 700; }
.profit-badge.won { color: var(--tp-common-paste); }
.profit-badge.lost { color: var(--tp-common-red); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* Predictions V3 Modern */
.tp-header-v3 { background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 50%, #16302f 100%) !important; }

.predictions-v3-section { padding: 40px 0 60px; background: #f5f6fa; min-height: 60vh; }

/* Modern Tab Navigation */
.tab-nav-container { margin-bottom: 30px; }
.tab-nav-wrapper { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.tab-nav-btn { display: flex; align-items: center; gap: 12px; padding: 15px 25px; background: white; border: none; border-radius: 16px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.tab-nav-btn::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: all 0.3s ease; }
.tab-nav-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.tab-nav-btn.active { background: linear-gradient(135deg, var(--tp-common-black) 0%, #2a2a2a 100%); }
.tab-nav-btn.active::before { background: var(--tp-theme-green); }
.tab-nav-btn.active .tab-icon { color: var(--tp-theme-green); }
.tab-nav-btn.active .tab-title { color: white; }
.tab-nav-btn.active .tab-date { color: rgba(255,255,255,0.6); }
.tab-nav-btn.active .tab-count { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

.tab-icon { font-size: 20px; color: #888; transition: all 0.3s ease; }
.tab-text { display: flex; flex-direction: column; align-items: flex-start; }
.tab-title { font-size: 14px; font-weight: 600; color: var(--tp-common-black); }
.tab-date { font-size: 12px; color: #888; }
.tab-count { margin-left: 8px; padding: 4px 10px; background: #f0f0f0; border-radius: 20px; font-size: 12px; font-weight: 600; color: #666; }

/* Filter Bar */
.filter-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; padding: 20px 25px; background: white; border-radius: 16px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.filter-league { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { padding: 8px 16px; background: #f5f5f5; border: none; border-radius: 25px; font-size: 13px; font-weight: 500; color: #555; cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }
.filter-actions { display: flex; gap: 10px; }
.filter-select { padding: 10px 15px; border: 1px solid #eee; border-radius: 10px; font-size: 13px; background: white; cursor: pointer; }

/* Tab Content */
.tab-pane { display: none; animation: fadeIn 0.4s ease; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.predictions-modern { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
@media (max-width: 1200px) { .predictions-modern { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { 
    .predictions-modern { grid-template-columns: 1fr; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-league { justify-content: center; }
    .filter-actions { justify-content: center; }
}

/* Modern Card */
.modern-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s ease; position: relative; }
.modern-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.card-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.modern-card.vip .card-accent { background: linear-gradient(90deg, #FFD700, #FFA500); }
.modern-card.monthly .card-accent { background: linear-gradient(90deg, #7463FF, #9b87f5); }
.modern-card.free .card-accent { background: linear-gradient(90deg, #A0FF27, #7CFC00); }
.modern-card.premium .card-accent { background: linear-gradient(90deg, #ff6b6b, #ee5a24); }
.modern-card.result.won { border: 2px solid var(--tp-common-paste); }
.modern-card.result.lost { border: 2px solid var(--tp-common-red); }

.card-header-modern { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px 0; }
.league-tag { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #555; }
.league-tag .flag { font-size: 18px; }
.card-meta { display: flex; align-items: center; gap: 10px; }
.card-meta .time { font-size: 12px; color: #888; }
.live-badge { padding: 4px 10px; background: var(--tp-common-red); color: white; border-radius: 20px; font-size: 11px; font-weight: 600; animation: pulse 2s infinite; }
.result-score { font-size: 18px; font-weight: 700; }
.result-score.won { color: var(--tp-common-paste); }
.result-score.lost { color: var(--tp-common-red); }

.card-body-modern { padding: 20px; }
.teams-container { display: flex; align-items: center; justify-content: space-between; }
.team-item { flex: 1; text-align: center; }
.team-emblem { width: 55px; height: 55px; background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 26px; }
.team-info .name { display: block; font-size: 15px; font-weight: 700; color: var(--tp-common-black); }
.team-info .form { display: block; font-size: 10px; color: #888; letter-spacing: 1px; margin-top: 4px; }
.vs-badge { padding: 8px 15px; background: #f5f5f5; border-radius: 25px; font-size: 12px; font-weight: 700; color: #888; }
.score-display { text-align: center; font-size: 28px; font-weight: 700; color: var(--tp-common-black); margin-top: 15px; }

.prediction-row { display: flex; justify-content: space-between; align-items: center; margin: 0 20px; padding: 15px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-radius: 14px; }
.prediction-item { display: flex; flex-direction: column; gap: 4px; }
.prediction-item .label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.prediction-item .value { font-size: 17px; font-weight: 700; color: var(--tp-common-black); }
.odds-badge { padding: 8px 16px; background: var(--tp-theme-green); border-radius: 25px; font-size: 18px; font-weight: 700; color: var(--tp-text-on-primary); }
.odds-badge.won { background: rgba(67, 212, 160, 0.2); color: var(--tp-common-paste); }
.odds-badge.lost { background: rgba(255, 72, 81, 0.2); color: var(--tp-common-red); }

.card-footer-modern { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-top: 1px solid #f5f5f5; }
.plan-badge { padding: 7px 14px; border-radius: 25px; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.plan-badge.vip { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
.plan-badge.monthly { background: linear-gradient(135deg, #7463FF, #9b87f5); color: white; }
.plan-badge.free { background: linear-gradient(135deg, #A0FF27, #7CFC00); color: #000; }

.analysis-btn { padding: 10px 18px; background: var(--tp-common-black); color: white; border: none; border-radius: 10px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 6px; }
.analysis-btn:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); }

.result-label { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.result-label.won { color: var(--tp-common-paste); }
.result-label.lost { color: var(--tp-common-red); }
.profit { font-size: 16px; font-weight: 700; }
.profit.won { color: var(--tp-common-paste); }
.profit.lost { color: var(--tp-common-red); }

/* Load More */
.load-more { text-align: center; margin-top: 40px; }
.load-more-btn { padding: 15px 40px; background: white; color: var(--tp-common-black); border: 2px solid var(--tp-common-black); border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.load-more-btn:hover { background: var(--tp-common-black); color: white; }
.load-more-btn i { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Combo Predictions V4 */
.combo-section { padding: 60px 0; }
.combo-section.alt-bg { background: linear-gradient(135deg, #0E0F11 0%, #1a1b1e 100%); }
.combo-section.alt-bg .section-header p { color: rgba(255,255,255,0.6); }
.combo-section.alt-bg .section-title h2 { color: white; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-title { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 10px; }
.section-title h2 { font-size: 32px; margin: 0; }
.section-header p { color: #666; font-size: 16px; }

.badge-vip, .badge-daily, .badge-btts, .badge-special { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 25px; font-size: 13px; font-weight: 700; }
.badge-vip { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
.badge-daily { background: linear-gradient(135deg, #00d4ff, #0099cc); color: white; }
.badge-btts { background: linear-gradient(135deg, #A0FF27, #7CFC00); color: #000; }
.badge-special { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; }

/* Section 1: VIP Combo Tickets */
.combo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 991px) { .combo-grid { grid-template-columns: 1fr; } }

.combo-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.combo-card.premium { border: 2px solid #FFD700; }
.combo-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.combo-badge { display: flex; gap: 10px; }
.combo-badge .type { color: white; font-weight: 700; font-size: 16px; }
.combo-badge .legs { background: rgba(255,255,255,0.2); color: white; padding: 4px 12px; border-radius: 20px; font-size: 12px; }
.combo-odds { text-align: right; }
.combo-odds .label { display: block; font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.combo-odds .value { font-size: 28px; font-weight: 700; color: #FFD700; }

.combo-matches { padding: 20px 25px; }
.combo-match { padding: 15px 0; border-bottom: 1px solid #eee; }
.combo-match:last-child { border-bottom: none; }
.combo-match .league { display: block; font-size: 12px; color: #888; margin-bottom: 6px; }
.combo-match .teams { display: block; font-size: 15px; font-weight: 600; color: var(--tp-common-black); margin-bottom: 4px; }
.combo-match .pick { font-size: 13px; color: var(--tp-theme-green); font-weight: 600; }
.combo-match .pick span { color: #888; font-weight: 400; }

.combo-footer { padding: 20px 25px; background: #f8f9fa; }
.stake-return { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.input-group { display: flex; align-items: center; gap: 10px; }
.input-group label { font-size: 13px; color: #666; }
.input-group input { width: 70px; padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; text-align: center; }
.potential-return span { font-size: 13px; color: #666; }
.potential-return strong { font-size: 20px; color: var(--tp-common-paste); margin-left: 5px; }
.btn-combo { width: 100%; padding: 14px; background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; border: none; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-combo:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4); }

/* Section 2: Daily Doubles */
.doubles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1200px) { .doubles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .doubles-grid { grid-template-columns: 1fr; } }

.double-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.double-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.double-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: linear-gradient(135deg, #0E0F11 0%, #2a2a2a 100%); }
.league-flag { font-size: 24px; }
.double-odds { font-size: 24px; font-weight: 700; color: #00d4ff; }

.double-matches { padding: 20px; }
.double-match { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #eee; }
.double-match:last-child { border-bottom: none; }
.double-match .time { font-size: 12px; color: #888; min-width: 40px; }
.double-match .team { flex: 1; font-size: 14px; font-weight: 600; color: var(--tp-common-black); }
.double-match .pick { font-size: 12px; color: var(--tp-theme-green); font-weight: 600; }

.double-footer { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: #f8f9fa; }
.stake-box { font-size: 13px; color: #666; }
.stake-box strong { color: var(--tp-common-paste); font-size: 16px; }
.btn-double { padding: 10px 20px; background: #0E0F11; color: white; border: none; border-radius: 25px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-double:hover { background: var(--tp-theme-green); color: #000; }

/* Section 3: BTTS Combos */
.btts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
@media (max-width: 991px) { .btts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .btts-grid { grid-template-columns: 1fr; } }

.btts-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.btts-header { display: flex; align-items: center; gap: 12px; padding: 20px; background: linear-gradient(135deg, #A0FF27, #7CFC00); }
.btts-icon { width: 40px; height: 40px; background: rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btts-title { flex: 1; font-size: 15px; font-weight: 700; color: #000; }
.btts-odds { font-size: 24px; font-weight: 700; color: #000; }

.btts-matches { padding: 20px; }
.btts-match { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #eee; }
.btts-match:last-child { border-bottom: none; }
.btts-match .flag { font-size: 18px; }
.btts-match .match { flex: 1; font-size: 14px; color: var(--tp-common-black); }
.btts-match .status { font-size: 14px; font-weight: 600; color: #666; }
.btts-plus { text-align: center; color: #ccc; font-size: 12px; }

.btts-footer { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: #f8f9fa; }
.btts-footer .profit { font-size: 13px; color: #666; }
.btn-btts { padding: 10px 20px; background: #A0FF27; color: #000; border: none; border-radius: 25px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-btts:hover { background: #7CFC00; }

/* Section 4: Special Combos */
.special-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
@media (max-width: 1200px) { .special-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .special-grid { grid-template-columns: 1fr; } }

.special-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.special-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.special-header { padding: 25px 20px; background: linear-gradient(135deg, #ff6b6b, #ee5a24); text-align: center; position: relative; }
.special-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 24px; color: white; }
.special-header h3 { font-size: 16px; color: white; margin-bottom: 8px; }
.special-odds { font-size: 28px; font-weight: 700; color: white; }

.special-matches { padding: 20px; }
.special-match { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #eee; }
.special-match:last-child { border-bottom: none; }
.special-match .flag { font-size: 16px; }
.special-match .teams { flex: 1; font-size: 13px; color: var(--tp-common-black); }
.special-match .odd { font-size: 13px; font-weight: 600; color: var(--tp-theme-green); }

.special-footer { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: #f8f9fa; }
.special-stake { font-size: 13px; color: #666; }
.btn-special { padding: 10px 20px; background: #ff6b6b; color: white; border: none; border-radius: 25px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-special:hover { background: #ee5a24; }

/* Grouped Predictions V5 */
.grouped-section { padding: 50px 0; }
.grouped-section .container { max-width: 1000px; }

.grouped-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); margin-bottom: 30px; }
.grouped-card.result-card { border: 2px solid var(--tp-common-paste); }

.grouped-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.group-info { display: flex; align-items: center; gap: 15px; }
.group-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.group-badge.vip { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
.group-badge.monthly { background: linear-gradient(135deg, #7463FF, #9b87f5); color: white; }
.group-badge.free { background: linear-gradient(135deg, #A0FF27, #7CFC00); color: #000; }
.group-badge.special { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; }
.group-badge.won { background: var(--tp-common-paste); color: white; }
.group-title { color: white; font-size: 16px; font-weight: 600; }
.group-meta { color: rgba(255,255,255,0.7); font-size: 13px; }
.match-count { display: flex; align-items: center; gap: 6px; }

.grouped-matches { padding: 15px 25px; }
.match-row { display: grid; grid-template-columns: 60px 140px 1fr 120px 80px 90px; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid #f0f0f0; }
.match-row:last-child { border-bottom: none; }
.match-row.result { background: #f8f9fa; margin: 0 -25px; padding: 15px 25px; }
.match-time { font-size: 13px; font-weight: 600; color: #666; }
.match-league { font-size: 12px; color: #888; white-space: nowrap; }
.match-teams { font-size: 14px; font-weight: 600; color: var(--tp-common-black); }
.match-pick { font-size: 13px; font-weight: 600; color: var(--tp-theme-green); }
.match-odds { font-size: 15px; font-weight: 700; color: var(--tp-common-black); text-align: center; }
.match-odds.won { color: var(--tp-common-paste); }

.match-result { font-size: 14px; font-weight: 700; color: var(--tp-common-paste); }

.match-prob { display: flex; align-items: center; gap: 8px; }
.prob-bar { flex: 1; height: 6px; background: #e9ecef; border-radius: 10px; overflow: hidden; }
.prob-fill { height: 100%; background: var(--tp-theme-green); border-radius: 10px; }
.prob-text { font-size: 12px; font-weight: 600; color: #666; min-width: 30px; }

.grouped-footer { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: #f8f9fa; border-top: 2px solid #eee; }
.total-odds { display: flex; flex-direction: column; }
.total-odds .label { font-size: 12px; color: #888; text-transform: uppercase; }
.total-odds .value { font-size: 28px; font-weight: 700; color: var(--tp-common-black); }
.total-odds .value.won { color: var(--tp-common-paste); }

.btn-grouped { padding: 12px 30px; background: linear-gradient(135deg, var(--tp-common-black) 0%, #333 100%); color: white; border: none; border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-grouped:hover { background: var(--tp-theme-green); color: var(--tp-text-on-primary); transform: translateY(-2px); }

.profit-badge { padding: 10px 20px; background: var(--tp-common-paste); color: white; border-radius: 25px; font-size: 16px; font-weight: 700; }

@media (max-width: 768px) {
    .match-row { grid-template-columns: 50px 1fr 80px; gap: 10px; }
    .match-league, .match-prob { display: none; }
    .grouped-footer { flex-direction: column; gap: 15px; text-align: center; }
}


/* Responsive */
@media (max-width: 1200px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) {
    .tp-header-menu {
                display: none;
            }

            .tp-header-bar {
                display: flex;
            }

            .tp-header-right {
                gap: 15px;
            }

            .tp-hero-title {
                font-size: 48px;
            }

            .tp-section-title {
                font-size: 36px;
            }

            .about-stats {
                gap: 25px;
            }

            .stat-number {
                font-size: 36px;
            }
    .user-account { display: none; }
    .dashboard-sidebar { 
        display: block; 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 300px; 
        height: 100vh; 
        z-index: 9999; 
        border-radius: 0; 
        padding: 80px 25px 25px;
        transform: translateX(-100%); 
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    .dashboard-sidebar.mobile-open { transform: translateX(0); }
    .dashboard-section { padding: 80px 0 50px; }
}

.mobile-sidebar-toggle { display: none; }
.sidebar-close-btn { display: none; }
@media (max-width: 991px) {
    .mobile-sidebar-toggle { 
        display: flex; 
        align-items: center;
        justify-content: center;
        width: 50px; 
        height: 50px; 
        border-radius: 12px; 
        background: var(--tp-theme-green); 
        border: none; 
        cursor: pointer; 
        font-size: 20px; 
        color: var(--tp-common-black);
    }
    .sidebar-close-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background: transparent;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #666;
    }
    .mobile-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }
    .mobile-sidebar-overlay.show { display: block; }
}
@media (max-width: 767px) {
    .tp-header-wrapper { padding: 0 5px; }
    .tp-page-header { padding: 150px 0 60px; }
    .tp-page-title { font-size: 32px; }
    .stats-grid { grid-template-columns: 1fr; }
	
	.tp-hero-title {
                font-size: 36px;
            }

            .tp-hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tp-btn {
                width: 100%;
                justify-content: center;
            }

            .about-content h2 {
                font-size: 32px;
            }

            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
}

/* Prediction Types Grid */
.prediction-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.prediction-type-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--tp-grey-3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.prediction-type-card:hover {
    transform: translateY(-2px);
    border-color: var(--tp-common-paste);
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.prediction-type-card.locked {
    opacity: 0.7;
}

.prediction-type-card.locked:hover {
    border-color: var(--tp-common-red);
}

.prediction-type-card .type-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tp-common-paste);
    border-radius: 12px;
    font-size: 20px;
    color: var(--tp-common-black);
	margin-bottom: 0px;
}

.prediction-type-card.locked .type-icon {
    background: #ddd;
    color: #999;
}

.prediction-type-card .type-info {
    flex: 1;
    min-width: 0;
}

.prediction-type-card .type-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-common-black);
    margin-bottom: 0px;
}

.prediction-type-card .type-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0px;
    line-height: 1.4;
}

.prediction-type-card .type-count {
    font-size: 12px;
    color: var(--tp-common-paste);
    font-weight: 500;
}

.prediction-type-card.locked .type-count {
    color: var(--tp-common-red);
}

.prediction-type-card .lock-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tp-common-red);
    border-radius: 50%;
    color: white;
    font-size: 12px;
}

@media (max-width: 576px) {
    .prediction-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Cards Grid */
/* Dashboard Choose a Plan Section */
.content-card.plans-section .plans-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.content-card.plans-section .plans-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.content-card.plans-section .plans-header h3 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    border: none;
}

.content-card.plans-section .plans-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #888;
}

.content-card.plans-section .plan-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.content-card.plans-section .plan-card + .plan-card {
    margin-top: 14px;
}

.content-card.plans-section .plan-card:hover {
    border-color: #ddd;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.content-card.plans-section .plan-card.featured {
    border-color: var(--tp-theme-green);
    box-shadow: 0 0 0 1px var(--tp-theme-green), 0 4px 20px rgba(160,255,39,0.12);
}

.content-card.plans-section .plan-card-badge {
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
    text-align: center;
    padding: 5px 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: -20px -24px 16px;
}

.content-card.plans-section .plan-card-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}

.content-card.plans-section .plan-price {
        display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 30px 0px;
    flex-wrap: wrap;
}

.content-card.plans-section .plan-price-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--tp-theme-green);
    line-height: 1;
}

.content-card.plans-section .plan-price-duration {
    font-size: 14px;
    color: #999;
}

.content-card.plans-section .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-card.plans-section .plan-features li {
    padding: 5px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.content-card.plans-section .plan-features li i {
    color: var(--tp-theme-green);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.content-card.plans-section .plan-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--tp-common-black);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.content-card.plans-section .plan-btn:hover {
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
    text-decoration: none;
}

.content-card.plans-section .plan-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.content-card.plans-section .plan-btn:hover i {
    transform: translateX(4px);
}

.content-card.plans-section .plan-card.featured .plan-btn {
    background: var(--tp-theme-green);
    color: var(--tp-text-on-primary);
}

.content-card.plans-section .plan-card.featured .plan-btn:hover {
    background: var(--tp-common-green-regular);
}

@media (max-width: 767px) {
    .content-card.plans-section .plan-card .text-md-end {
        text-align: center;
    }
    .content-card.plans-section .plan-btn {
        width: 100%;
        justify-content: center;
    }
}

 /* Responsive */
        
        @media (max-width: 767px) {
            .result-teams { flex-direction: column; gap: 10px; }
            .result-team.text-end { text-align: center; }
            .result-score { text-align: center; }
        }

.m-150{
	margin:150px 0px 50px;
}

/* Mobile text sizing */
@media (max-width: 767px) {
    body { font-size: 14px; }
    p, .text-muted, .card-text { font-size: 14px; }
    .btn, button, input, select, textarea { font-size: 13px; }
    input::placeholder, textarea::placeholder { font-size: 13px; }
    .btn-group .btn, .price-toggle .btn { font-size: 12px; }
    .tp-hero-title { font-size: 36px; letter-spacing: -1px; }
    .tp-hero-subtitle { font-size: 12px; }
    .tp-hero-desc { font-size: 15px; }
    .tp-section-title { font-size: 28px; }
    .tp-section-subtitle { font-size: 14px; }
    .tp-page-title { font-size: 28px; }
    .plan-price-display { font-size: 32px; }
    .plan-card h4 { font-size: 20px; }
    .stat-box h3 { font-size: 28px; }
    .about-content h2 { font-size: 28px; }
    .about-stats { gap: 20px; }
    .stat-number { font-size: 32px; }
    .welcome-banner h2 { font-size: 22px; }
    .price-toggle .btn-group .btn { font-size: 12px; padding: 8px 12px; }
    .feature-card h4 { font-size: 18px; }
    .feature-card p { font-size: 14px; }
    .testimonial-text { font-size: 14px; }
}

@media (max-width: 576px) {
    body { font-size: 13px; }
    p, .text-muted, .card-text { font-size: 13px; }
    .btn, button, input, select, textarea { font-size: 12px; }
    input::placeholder, textarea::placeholder { font-size: 12px; }
    .btn-group .btn, .price-toggle .btn { font-size: 11px; }
    .tp-hero-title { font-size: 28px; }
    .tp-hero-content { padding: 100px 15px 60px; }
    .tp-btn { padding: 12px 24px; font-size: 13px; }
    .tp-section { padding: 60px 0; }
    .tp-section-title { font-size: 24px; }
    .tp-page-title { font-size: 24px; }
    .plan-price-display { font-size: 28px; }
    .plan-card { padding: 25px 20px; }
    .price-toggle .btn-group .btn { font-size: 11px; padding: 6px 10px; }
}


        .btn-outline-primary {
            color: var(--tp-theme-green) !important;
            border-color: var(--tp-theme-green) !important;
        }
        .btn-outline-primary:hover {
            background: var(--tp-theme-green) !important;
            color: var(--tp-text-on-primary) !important;
            border-color: var(--tp-theme-green) !important;
        }
        .btn-check:checked + .btn-outline-primary,
        .btn-outline-primary.active,
        .btn-outline-primary:active {
            background: var(--tp-theme-green) !important;
            color: var(--tp-text-on-primary) !important;
            border-color: var(--tp-theme-green) !important;
        }
        .btn-check:focus + .btn-outline-primary,
        .btn-outline-primary:focus {
            box-shadow: 0 0 0 0.25rem rgba(160, 255, 39, 0.5) !important;
        }
        .plans-section {
            padding: 80px 0;
            background: var(--tp-grey-3);
        }
        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .plan-card:hover {
            transform: translateY(-10px);
            border-color: var(--tp-theme-green);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .plan-card.featured {
            background: var(--tp-common-black);
            color: white;
        }
        .plan-card.featured h4,
        .plan-card.featured .plan-price-display,
        .plan-card.featured li {
            color: white;
        }
        .plan-card.featured li i {
            color: var(--tp-theme-green);
        }
        .plan-card.featured .btn-outline-primary {
            border-color: var(--tp-theme-green) !important;
            color: var(--tp-theme-green);
        }
		
		.plan-card.featured label {
            color: white !important;
        }
		
		.plan-card label {
            color: var(--tp-common-black) !important;
        }
		
		
		
        .plan-card.featured .btn-check:checked + .btn-outline-primary {
            background: var(--tp-theme-green) !important;
            color: var(--tp-text-on-primary);
        }
		
		.selected-duration{
			font-weight:bold;
		}
		.plan-card.featured .selected-duration {
            color: white !important;
        }
		
        .plan-price-display {
            font-size: 48px;
            font-weight: 700;
            color: var(--tp-common-black);
        }
        .plan-card.featured .plan-price-display {
            color: white;
        }
        .plan-price-display span {
            font-size: 16px;
            font-weight: 400;
            color: #666;
        }
        .plan-card.featured .plan-price-display span {
            color: rgba(255,255,255,0.6);
        }
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--tp-common-yellow-green);
            color: var(--tp-common-black);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .current-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 2;
        }
        .price-toggle .btn-group {
            gap: 0;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid var(--tp-theme-green);
        }
		.price-toggle .btn-group .btn {
            padding: 8px 0px !important;
    font-size: 0.8rem;
        }
        .price-toggle .btn-group .btn-outline-primary {
            border: none !important;
            border-radius: 0 !important;
        }
        .price-toggle .btn-group .btn-outline-primary:not(:last-child) {
            border-right: 1px solid var(--tp-theme-green) !important;
        }
        .plan-current-info {
            background: white;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .plan-access-info {
            font-size: 13px;
            color: #888;
        }

/* ============================================
   Multiple Accumulator / Betting Slip Template
   ============================================ */
.betting-slip {
    background: #fff;
    overflow: hidden;
}

.betting-slip-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.betting-slip-item:hover {
    background: #f8f9fa;
}

.betting-slip-item.won {
    background: rgba(67, 212, 160, 0.08);
    border-left: 4px solid var(--tp-common-paste);
}

.betting-slip-item.lost {
    background: rgba(255, 72, 81, 0.08);
    border-left: 4px solid var(--tp-common-red);
}

.betting-slip-item.pending {
    background: rgba(243, 156, 18, 0.08);
    border-left: 4px solid #f39c12;
}

.betting-slip-item.void {
    background: rgba(127, 140, 141, 0.08);
    border-left: 4px solid #7f8c8d;
}

.prediction-badge {
    display: inline-block;
    background: var(--tp-common-black);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.score-badge {
    display: inline-block;
    background: #f0f0f0;
    color: var(--tp-common-black);
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.betting-slip-footer {
    background: linear-gradient(135deg, var(--tp-common-black) 0%, #2a2a2a 100%);
    color: #fff;
    padding: 15px 20px;
}

.betting-slip-footer .total-odds-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.betting-slip-footer .total-odds-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 8px;
}

/* Confidence Bar */
.conf-bar {
    display: inline-block;
    width: 40px;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    vertical-align: middle;
}

.conf-fill {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #ffc107 50%, #28a745 100%);
    transition: width 0.3s ease;
}

.conf-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6c757d;
    min-width: 28px;
    text-align: right;
}

@media (max-width: 767.98px) {
    .betting-slip-item {
        padding: 12px 14px;
    }
    .betting-slip-footer .total-odds-value {
        font-size: 1.2rem;
    }
    .betting-slip-item .prediction-badge {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

a.btn.tp-btn-outline-primary {
    background: white;
    color: #222222;
    border: 1px solid #ededed !Important;
}