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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    width: 240px;
    background-color: #f5f5f5;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.sidebar {
    flex: 1;
}

.nav-section {
    margin-bottom: 30px;
}

.nav-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.nav-list {
    list-style: none;
}

.nav-list li {
    margin-bottom: 8px;
}

.nav-list a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    display: block;
    padding: 4px 0;
}

.nav-list a.active {
    color: #000;
    font-weight: 500;
}

.right-panel {
    flex: 1;
    margin-left: 240px;
    display: flex;
    flex-direction: column;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 40px;
    background-color: #f5f5f5;
}

.connect-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.content {
    flex: 1;
    padding: 40px 40px 40px 40px;
    max-width: 800px;
    overflow-y: auto;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.description {
    margin-bottom: 40px;
}

.description p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.earn-points {
    border-top: 3px solid #000;
    padding-top: 30px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #000;
}

.earn-points p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.activities-list {
    list-style: none;
    margin-left: 0;
}

.activities-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.activities-list li strong {
    color: #000;
    font-weight: 600;
}

.activities-list li strong a {
    color: #000;
    text-decoration: none;
}

.activities-list li strong a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

.pagination-controls {
    display: flex;
    gap: 20px;
}

.pagination-prev, .pagination-next {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.pagination-prev.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pagination-next a {
    color: #333;
    text-decoration: none;
}

.pagination-next:hover, .pagination-prev:hover:not(.disabled) {
    background-color: #f5f5f5;
}

.metrics {
    margin: 60px 0;
}

.metrics-container {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
}

.metric-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.metric-row:last-of-type {
    margin-bottom: 30px;
}

.metric-label {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.metric-dots {
    flex: 1;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #ccc 0px,
        #ccc 3px,
        transparent 3px,
        transparent 8px
    );
    margin: 0 15px;
}

.metric-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.metrics-date {
    font-size: 14px;
    color: #999;
    background-color: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 10px;
}

.footer {
    border-top: 1px solid #e0e0e0;
    padding: 40px 40px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: none;
    width: 100%;
}

.footer-left {
    width: 65%;
    margin-right: 40px;
}

.footer-left p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.footer-left a {
    color: #666;
    text-decoration: underline;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 8px 16px;
    width: 25%;
    justify-content: end;
    text-align: left;
}

.footer-right a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    padding: 4px 0;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
}

.footer-right a:nth-child(13),
.footer-right a:nth-child(14),
.footer-right a:nth-child(15),
.footer-right a:nth-child(16) {
    border-bottom: none;
}

.footer-right a:hover {
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .left-panel {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .right-panel {
        margin-left: 0;
    }
    
    .header-right {
        padding: 20px;
    }
    
    .content {
        padding: 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .container {
        flex-direction: column;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-left {
        margin-right: 0;
    }
    
    .footer-right {
        flex-direction: row;
        gap: 20px;
    }
}