        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #1a1a1a;
            color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: #242424;
            padding: 20px 0;
            border-bottom: 1px solid #333;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            background-color: #dc2626;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .logo-text h1 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .logo-text p {
            font-size: 12px;
            color: #888;
        }

        .header-stats {
            display: flex;
            gap: 30px;
            font-size: 14px;
            color: #aaa;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Top Performers Section */
        .top-performers {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 16px;
            color: #888;
        }

        .top-three {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 30px;
            margin-bottom: 80px;
        }

        .project-card {
            background-color: #242424;
            border-radius: 12px;
            /* overflow: hidden; */
            position: relative;
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-card.first {
            width: 380px;
        }

        .project-card.second,
        .project-card.third {
            width: 340px;
        }

        .rank-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            border: 4px solid #1a1a1a;
            z-index: 10;
        }

        .rank-badge.gold {
            background: linear-gradient(135deg, #ff6b6b, #dc2626);
        }

        .rank-badge.silver {
            background: linear-gradient(135deg, #4a5568, #2d3748);
        }

        .rank-badge.bronze {
            background: linear-gradient(135deg, #d97706, #92400e);
        }

        .project-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background-color: #333;
        }

        .project-info {
            padding: 20px;
        }

        .project-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .project-car {
            font-size: 14px;
            color: #888;
            margin-bottom: 15px;
        }

        .project-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            font-weight: 600;
        }

        .star-icon {
            color: #dc2626;
        }

        .votes {
            font-size: 13px;
            color: #888;
        }

        .hp-badge {
            display: inline-block;
            background-color: #dc2626;
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .star-rating {
            display: flex;
            gap: 4px;
        }

        .star {
            color: #444;
            font-size: 18px;
        }

        .star.filled {
            color: #fbbf24;
        }

        /* Full Rankings Section */
        .full-rankings {
            padding: 60px 0 100px;
        }

        .rankings-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ranking-item {
            background-color: #242424;
            border-radius: 12px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: background-color 0.3s ease;
        }

        .ranking-item:hover {
            background-color: #2a2a2a;
        }

        .rank-number {
            font-size: 20px;
            font-weight: 700;
            color: #666;
            min-width: 40px;
        }

        .ranking-image {
            width: 120px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 40px;
        }

        .ranking-details {
            flex: 1;
        }

        .ranking-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .ranking-car {
            font-size: 14px;
            color: #888;
            margin-bottom: 6px;
        }

        .ranking-author {
            font-size: 13px;
            color: #666;
            margin-bottom: 10px;
        }

        .tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tag {
            background-color: #333;
            color: #aaa;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .more-tag {
            cursor: pointer;
        }

        .ranking-rating {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        .rating-display {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .rating-value {
            font-size: 20px;
            font-weight: 700;
        }

        .vote-count {
            font-size: 13px;
            color: #888;
        }

        .vote-btn {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    margin-top: 14px;
    cursor: pointer;
    transition: background 0.3s;
}
.vote-btn:hover {
    background: #a11313;
}