/* Custom CSS for Link Earn Platform */

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
}

/* Front Page Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #f4f6f9;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-section input::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Dashboard Styles */
.sidebar {
    min-height: 100vh;
    background-color: #2c3136;
    color: #fff;
}

.sidebar .nav-link {
    color: #a0a5aa;
    padding: 12px 20px;
    border-left: 3px solid transparent;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    color: #fff;
    background-color: #22262a;
    border-left-color: #0d6efd;
}

.sidebar .nav-link i {
    width: 24px;
}

.topbar {
    background-color: #4a148c;
    color: white;
}

.stat-card {
    border: none;
    border-radius: 8px;
    color: white;
}
.stat-card-yellow { background-color: #ffc107; }
.stat-card-blue { background-color: #0d6efd; }
.stat-card-green { background-color: #198754; }
.stat-card-red { background-color: #dc3545; }

/* Monetized Page Styles */
.monetized-body {
    background-color: #e9ecef;
}

.article-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
