
    .spearfishing-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .spearfishing-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e9ecef;
    }

    .spearfishing-header h2 {
        color: #2c3e50;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .leaderboard {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin: 20px 0;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .leaderboard th {
        background: #2196F3;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        font-size: 16px;
    }

    .leaderboard td {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
        font-size: 15px;
    }

    .leaderboard tr:hover {
        background: #f8f9fa;
    }

    .rank-1 {
        background: #fff8e1;
    }

    .rank-2 {
        background: #f5f5f5;
    }

    .rank-3 {
        background: #fff3e0;
    }

    .rank-number {
        font-size: 18px;
        font-weight: bold;
        color: #2196F3;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #e3f2fd;
    }

    .rank-1 .rank-number {
        background: #ffd700;
        color: #000;
    }

    .rank-2 .rank-number {
        background: #c0c0c0;
        color: #000;
    }

    .rank-3 .rank-number {
        background: #cd7f32;
        color: #fff;
    }

    .catch-photo {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .catch-photo:hover {
        transform: scale(1.1);
    }

    .photo-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.9);
        z-index: 1000;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }

    .photo-modal img {
        max-width: 90%;
        max-height: 90vh;
        border-radius: 8px;
    }

    .angler-name {
        color: #2196F3;
        text-decoration: none;
        font-weight: 500;
    }

    .angler-name:hover {
        text-decoration: underline;
    }

    .submission-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #2c3e50;
    }

    .form-group input[type='text'],
    .form-group input[type='number'],
    .form-group input[type='file'],
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 2px solid #e9ecef;
        border-radius: 6px;
        font-size: 15px;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: #2196F3;
        outline: none;
    }

    .button.button-primary {
        background: #2196F3;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        transition: background 0.3s ease;
    }

    .button.button-primary:hover {
        background: #1976D2;
    }

    .preview-image {
        max-width: 300px;
        height: auto;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }