/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #022D3F;
    --secondary: #FFD700;
    --accent: #C86100;
    --success: #34C759;
    --danger: #FF3B30;
    --warning: #FF9500;
    --info: #007AFF;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --border: #DEE2E6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #f9fafb;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #b55700;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary);
    color: white;
}

.btn-secondary:hover {
    background-color: #011e2c;
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-success {
    background-color: var(--success);
    color: white;
}

.btn-danger {
    background-color: var(--danger);
    color: white;
}

.btn-warning {
    background-color: var(--warning);
    color: white;
}

.btn-info {
    background-color: var(--info);
    color: white;
}

.btn-telegram {
    background-color: #2AABEE;
    color: white;
}

.btn-telegram:hover {
    background-color: #1e8bc4;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    border: 1px solid transparent;
}

.alert-danger {
    background-color: #fde8e8;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-free {
    background-color: var(--light);
    color: var(--dark);
}

.badge-vip {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-vvip {
    background-color: rgba(200, 97, 0, 0.1);
    color: var(--accent);
    border: 1px solid rgba(200, 97, 0, 0.3);
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
}

.badge-won {
    background-color: #d4edda;
    color: #155724;
}

.badge-lost {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
}

.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 45, 63, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
}

.form-check-label {
    font-weight: 500;
}

/* Main Website Header */
.header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: var(--secondary);
}

/* Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a.active {
    color: var(--secondary);
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.telegram-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius);
}

.telegram-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-nav-logo img {
    height: 40px;
}

.close-nav {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: white;
    padding: 15px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin: 10px 0;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-cta {
    margin-top: 30px;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
}

.overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(2, 45, 63, 0.9), rgba(2, 45, 63, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Prediction Tabs */
.prediction-tabs-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 40px;
}

.prediction-tabs {
    display: flex;
    overflow-x: auto;
    background-color: var(--primary);
    padding: 0 10px;
}

.prediction-tabs::-webkit-scrollbar {
    height: 6px;
}

.prediction-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.prediction-tabs::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
}

.tab {
    padding: 18px 24px;
    color: white;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.tab.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Free Tips Section */
.free-tips {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 60px;
}

.tips-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.tips-title {
    font-size: 24px;
    color: var(--primary);
}

.date-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-date {
    font-weight: 600;
    color: var(--primary);
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-btn {
    background: none;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.date-btn:hover {
    background-color: var(--light-gray);
    border-color: var(--gray);
}

.tips-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    background-color: var(--primary);
    color: white;
    padding: 15px;
    border-radius: var(--radius) var(--radius) 0 0;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    padding: 18px 15px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.table-row:hover {
    background-color: rgba(0, 170, 196, 0.05);
}

.table-row:nth-child(even) {
    background-color: var(--light);
}

.no-tips {
    padding: 60px 20px;
    text-align: center;
    color: var(--gray);
    font-size: 18px;
}

/* Calendar Widget */
.calendar-widget {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.calendar-nav-btns {
    display: flex;
    gap: 10px;
}

.calendar-nav-btn {
    padding: 8px 15px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background-color: var(--border);
}

.calendar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--dark);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-nav:hover {
    background-color: var(--light-gray);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day:hover {
    background-color: var(--light-gray);
}

.calendar-day.selected {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 700;
}

.calendar-day.today {
    background-color: var(--primary);
    color: white;
}

.calendar-day.other-month {
    color: var(--border);
}

/* Join Section */
.join-section {
    background: linear-gradient(rgba(200, 97, 0, 0.9), rgba(200, 97, 0, 0.8));
    padding: 60px 0;
    text-align: center;
    color: white;
    margin: 60px 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.join-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Recent Winnings */
.recent-winnings {
    margin-bottom: 60px;
}

.winnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.winnings-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.winnings-table {
    width: 100%;
    min-width: 800px;
}

.winnings-table .table-header {
    grid-template-columns: 1fr 2fr 3fr 1.5fr 1fr;
}

.winnings-table .table-row {
    grid-template-columns: 1fr 2fr 3fr 1.5fr 1fr;
}

.team-names {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vs {
    font-weight: 700;
    color: var(--gray);
}

.prediction-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.score-badge {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--success);
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
}

.see-more {
    text-align: center;
    margin-top: 30px;
}

/* News Section */
.news-section {
    margin-bottom: 60px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: var(--accent);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.news-excerpt {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Info Section */
.info-section {
    background-color: white;
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.info-article {
    max-width: 900px;
    margin: 0 auto;
}

.info-article h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary);
}

.info-article p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-links-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.footer-links-column ul li {
    margin-bottom: 15px;
}

.footer-links-column a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links-column a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-social h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links-bottom a:hover {
    color: var(--secondary);
}

/* Subscription Gate */
.subscription-gate {
    background: linear-gradient(rgba(2, 45, 63, 0.95), rgba(2, 45, 63, 0.9));
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.subscription-gate h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.code-input {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto;
}

.code-input input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.code-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.access-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    margin-left: 10px;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-left: auto;
}

.user-status span {
    font-weight: 600;
}

/* Admin Dashboard Styles */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #1a1a2e;
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 1000;
}

.sidebar-header {
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.admin-logo i {
    font-size: 30px;
    color: var(--secondary);
}

.admin-logo-text {
    font-size: 20px;
    font-weight: 700;
}

.admin-logo-text span {
    color: var(--secondary);
}

.sidebar-user {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.user-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.user-role {
    font-size: 14px;
    opacity: 0.8;
}

.sidebar-menu {
    padding: 20px 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: var(--accent);
}

.nav-link i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 20px;
    transition: all 0.3s;
}

.top-nav {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.page-title p {
    color: #666;
    margin: 5px 0 0;
}

.logout-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #b55700;
    transform: translateY(-2px);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 5px solid var(--accent);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.stat-card.users .stat-icon {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
}

.stat-card.vip .stat-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.stat-card.vvip .stat-icon {
    background: rgba(200, 97, 0, 0.1);
    color: #C86100;
}

.stat-card.revenue .stat-icon {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
}

.stat-card.predictions .stat-icon {
    background: rgba(88, 86, 214, 0.1);
    color: #5856D6;
}

.stat-card.pending .stat-icon {
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.btn-add {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-add:hover {
    background: #b55700;
}

/* Tables */
.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.table {
    margin: 0;
}

.table thead {
    background: var(--primary);
    color: white;
}

.table th {
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table td {
    padding: 15px;
    vertical-align: middle;
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 500;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-bottom: 3px solid var(--accent);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 30px;
}

.modal-title {
    font-weight: 600;
    color: var(--primary);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
}

/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-link {
    color: var(--primary);
    border: 1px solid #e9ecef;
    margin: 0 5px;
    border-radius: 10px;
}

.page-link:hover {
    background-color: var(--light-gray);
    border-color: var(--border);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card .card-header {
    padding: 30px;
    color: white;
    text-align: center;
}

.pricing-card .card-body {
    padding: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .info-section {
        padding: 40px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        margin-left: -250px;
    }
    
    .sidebar.active {
        margin-left: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .free-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 34px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons, .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .tips-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .prediction-tabs {
        padding: 0 5px;
    }
    
    .tab {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .table-header, .table-row {
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .tab {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.toggle-sidebar {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media (max-width: 992px) {
    .toggle-sidebar {
        display: flex;
    }
}